diff options
author | Chen Ni <nichen@iscas.ac.cn> | 2024-11-26 15:37:44 +0800 |
---|---|---|
committer | Sean Christopherson <seanjc@google.com> | 2025-01-08 12:04:43 -0800 |
commit | 3cd19f150ac62baef04c3b1808109dce566a485f (patch) | |
tree | 4347e1da95478d27612a30cc5b07a5f95ca8318a | |
parent | c76a923828059ac9999e4415dcbd9706ac9540a0 (diff) | |
download | linux-3cd19f150ac62baef04c3b1808109dce566a485f.tar.gz linux-3cd19f150ac62baef04c3b1808109dce566a485f.tar.bz2 linux-3cd19f150ac62baef04c3b1808109dce566a485f.zip |
KVM: selftests: Remove unneeded semicolon
Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
semantic patch at scripts/coccinelle/misc/semicolon.cocci.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link: https://lore.kernel.org/r/20241126073744.453434-1-nichen@iscas.ac.cn
Signed-off-by: Sean Christopherson <seanjc@google.com>
-rw-r--r-- | tools/testing/selftests/kvm/access_tracking_perf_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/access_tracking_perf_test.c b/tools/testing/selftests/kvm/access_tracking_perf_test.c index 3c7defd34f56..447e619cf856 100644 --- a/tools/testing/selftests/kvm/access_tracking_perf_test.c +++ b/tools/testing/selftests/kvm/access_tracking_perf_test.c @@ -239,7 +239,7 @@ static void vcpu_thread_main(struct memstress_vcpu_args *vcpu_args) case ITERATION_MARK_IDLE: mark_vcpu_memory_idle(vm, vcpu_args); break; - }; + } vcpu_last_completed_iteration[vcpu_idx] = current_iteration; } |