mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 09:51:21 -04:00
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: Jinrong Liang <cloudliang@tencent.com> Message-Id: <20220125095909.38122-7-cloudliang@tencent.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
committed by
Paolo Bonzini
parent
0758d6a7c3
commit
98242dcafe
@@ -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)
|
|||||||
|
|
||||||
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
|
||||||
|
|||||||
Reference in New Issue
Block a user