From: Peng Hao Date: Fri, 6 Apr 2018 21:47:32 +0000 (+0800) Subject: kvm: x86: fix a prototype warning X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=e01bca2fc698d7f0626f0214001af523e18ad60b;p=openwrt%2Fstaging%2Fblogic.git kvm: x86: fix a prototype warning Make the function static to avoid a warning: no previous prototype for ‘vmx_enable_tdp’ Signed-off-by: Peng Hao Signed-off-by: Paolo Bonzini --- diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 59d91516a622..ce639e00fd0f 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -7223,7 +7223,7 @@ static void wakeup_handler(void) spin_unlock(&per_cpu(blocked_vcpu_on_cpu_lock, cpu)); } -void vmx_enable_tdp(void) +static void vmx_enable_tdp(void) { kvm_mmu_set_mask_ptes(VMX_EPT_READABLE_MASK, enable_ept_ad_bits ? VMX_EPT_ACCESS_BIT : 0ull,