aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2010-12-06 11:53:38 -0500
committerAvi Kivity <avi@redhat.com>2011-01-12 04:30:46 -0500
commit443381a828910efa3d71ba4491d180f2d0bb4212 (patch)
treec8deb311dc30d9a88aba1b17581dbb46ba2c3023 /arch/x86/include/asm
parent38e5e92fe8c02a8766459d505423b855caf9af1f (diff)
KVM: VMX: add module parameter to avoid trapping HLT instructions (v5)
In certain use-cases, we want to allocate guests fixed time slices where idle guest cycles leave the machine idling. There are many approaches to achieve this but the most direct is to simply avoid trapping the HLT instruction which lets the guest directly execute the instruction putting the processor to sleep. Introduce this as a module-level option for kvm-vmx.ko since if you do this for one guest, you probably want to do it for all. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/include/asm')
-rw-r--r--arch/x86/include/asm/vmx.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/include/asm/vmx.h b/arch/x86/include/asm/vmx.h
index 42d959056f97..9642c2216f31 100644
--- a/arch/x86/include/asm/vmx.h
+++ b/arch/x86/include/asm/vmx.h
@@ -297,6 +297,12 @@ enum vmcs_field {
297#define GUEST_INTR_STATE_SMI 0x00000004 297#define GUEST_INTR_STATE_SMI 0x00000004
298#define GUEST_INTR_STATE_NMI 0x00000008 298#define GUEST_INTR_STATE_NMI 0x00000008
299 299
300/* GUEST_ACTIVITY_STATE flags */
301#define GUEST_ACTIVITY_ACTIVE 0
302#define GUEST_ACTIVITY_HLT 1
303#define GUEST_ACTIVITY_SHUTDOWN 2
304#define GUEST_ACTIVITY_WAIT_SIPI 3
305
300/* 306/*
301 * Exit Qualifications for MOV for Control Register Access 307 * Exit Qualifications for MOV for Control Register Access
302 */ 308 */