Commit 98242dca authored by Jinrong Liang's avatar Jinrong Liang Committed by Paolo Bonzini

KVM: x86/svm: Remove unused "vcpu" of svm_check_exit_valid()

The "struct kvm_vcpu *vcpu" parameter of svm_check_exit_valid()
is not used, so remove it. No functional change intended.
Signed-off-by: default avatarJinrong Liang <cloudliang@tencent.com>
Message-Id: <20220125095909.38122-7-cloudliang@tencent.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 0758d6a7
...@@ -3134,7 +3134,7 @@ static void dump_vmcb(struct kvm_vcpu *vcpu) ...@@ -3134,7 +3134,7 @@ static void dump_vmcb(struct kvm_vcpu *vcpu)
"excp_to:", save->last_excp_to); "excp_to:", save->last_excp_to);
} }
static bool svm_check_exit_valid(struct kvm_vcpu *vcpu, u64 exit_code) static bool svm_check_exit_valid(u64 exit_code)
{ {
return (exit_code < ARRAY_SIZE(svm_exit_handlers) && return (exit_code < ARRAY_SIZE(svm_exit_handlers) &&
svm_exit_handlers[exit_code]); svm_exit_handlers[exit_code]);
...@@ -3154,7 +3154,7 @@ static int svm_handle_invalid_exit(struct kvm_vcpu *vcpu, u64 exit_code) ...@@ -3154,7 +3154,7 @@ static int svm_handle_invalid_exit(struct kvm_vcpu *vcpu, u64 exit_code)
int svm_invoke_exit_handler(struct kvm_vcpu *vcpu, u64 exit_code) int svm_invoke_exit_handler(struct kvm_vcpu *vcpu, u64 exit_code)
{ {
if (!svm_check_exit_valid(vcpu, exit_code)) if (!svm_check_exit_valid(exit_code))
return svm_handle_invalid_exit(vcpu, exit_code); return svm_handle_invalid_exit(vcpu, exit_code);
#ifdef CONFIG_RETPOLINE #ifdef CONFIG_RETPOLINE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment