Commit e90e51d5 authored by Paolo Bonzini's avatar Paolo Bonzini

KVM: VMX: clear vmx_x86_ops.sync_pir_to_irr if APICv is disabled

There is nothing to synchronize if APICv is disabled, since neither
other vCPUs nor assigned devices can set PIR.ON.
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent c9d61dcb
...@@ -7777,10 +7777,10 @@ static __init int hardware_setup(void) ...@@ -7777,10 +7777,10 @@ static __init int hardware_setup(void)
ple_window_shrink = 0; ple_window_shrink = 0;
} }
if (!cpu_has_vmx_apicv()) { if (!cpu_has_vmx_apicv())
enable_apicv = 0; enable_apicv = 0;
if (!enable_apicv)
vmx_x86_ops.sync_pir_to_irr = NULL; vmx_x86_ops.sync_pir_to_irr = NULL;
}
if (cpu_has_vmx_tsc_scaling()) { if (cpu_has_vmx_tsc_scaling()) {
kvm_has_tsc_control = true; kvm_has_tsc_control = true;
......
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