diff options
author | Avi Kivity <avi@qumranet.com> | 2008-03-24 12:15:14 -0400 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-04-27 05:00:37 -0400 |
commit | 4c9fc8ef501790732ed035585b491756b75ea4c6 (patch) | |
tree | 5d5fd13456178c756170a6dabbec99c52eeeb6be | |
parent | 268fe02ae058c0c5e84ad678d67e5d7b013e664f (diff) |
KVM: VMX: Add module option to disable flexpriority
Useful for debugging.
Signed-off-by: Avi Kivity <avi@qumranet.com>
-rw-r--r-- | arch/x86/kvm/vmx.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index fb0389d3a8d1..01559311df8c 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c | |||
@@ -39,6 +39,9 @@ module_param(bypass_guest_pf, bool, 0); | |||
39 | static int enable_vpid = 1; | 39 | static int enable_vpid = 1; |
40 | module_param(enable_vpid, bool, 0); | 40 | module_param(enable_vpid, bool, 0); |
41 | 41 | ||
42 | static int flexpriority_enabled = 1; | ||
43 | module_param(flexpriority_enabled, bool, 0); | ||
44 | |||
42 | struct vmcs { | 45 | struct vmcs { |
43 | u32 revision_id; | 46 | u32 revision_id; |
44 | u32 abort; | 47 | u32 abort; |
@@ -200,8 +203,9 @@ static inline int cpu_has_secondary_exec_ctrls(void) | |||
200 | 203 | ||
201 | static inline bool cpu_has_vmx_virtualize_apic_accesses(void) | 204 | static inline bool cpu_has_vmx_virtualize_apic_accesses(void) |
202 | { | 205 | { |
203 | return (vmcs_config.cpu_based_2nd_exec_ctrl & | 206 | return flexpriority_enabled |
204 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); | 207 | && (vmcs_config.cpu_based_2nd_exec_ctrl & |
208 | SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES); | ||
205 | } | 209 | } |
206 | 210 | ||
207 | static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm) | 211 | static inline int vm_need_virtualize_apic_accesses(struct kvm *kvm) |