From: Paolo Bonzini Date: Fri, 8 Jan 2021 10:54:44 +0000 (-0500) Subject: KVM: x86: __kvm_vcpu_halt can be static X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=872f36eb0b0f4f0e3a81ea1e51a6bdf58ccfdc6e;p=linux.git KVM: x86: __kvm_vcpu_halt can be static Signed-off-by: Paolo Bonzini --- diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 0287840b93e09..a480804ae27a3 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -7976,7 +7976,7 @@ void kvm_arch_exit(void) kmem_cache_destroy(x86_fpu_cache); } -int __kvm_vcpu_halt(struct kvm_vcpu *vcpu, int state, int reason) +static int __kvm_vcpu_halt(struct kvm_vcpu *vcpu, int state, int reason) { ++vcpu->stat.halt_exits; if (lapic_in_kernel(vcpu)) {