OSDN Git Service

kvm: x86: fix a prototype warning
authorPeng Hao <peng.hao2@zte.com.cn>
Fri, 6 Apr 2018 21:47:32 +0000 (05:47 +0800)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 6 Apr 2018 16:20:31 +0000 (18:20 +0200)
Make the function static to avoid a

    warning: no previous prototype for ‘vmx_enable_tdp’

Signed-off-by: Peng Hao <peng.hao2@zte.com.cn>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/vmx.c

index 59d9151..ce639e0 100644 (file)
@@ -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,