diff options
author | Mohammed Gamal | 2010-05-24 00:01:04 +0200 |
---|---|---|
committer | Avi Kivity | 2010-08-01 09:35:52 +0200 |
commit | c8174f7b35b3018c4c7b3237ed1c792e454fd5c3 (patch) | |
tree | a1157eee6d93f7a18af047f8a2d3529f64c617bb | |
parent | KVM: MMU: allow more page become unsync at getting sp time (diff) | |
download | kernel-qcow2-linux-c8174f7b35b3018c4c7b3237ed1c792e454fd5c3.tar.gz kernel-qcow2-linux-c8174f7b35b3018c4c7b3237ed1c792e454fd5c3.tar.xz kernel-qcow2-linux-c8174f7b35b3018c4c7b3237ed1c792e454fd5c3.zip |
KVM: VMX: Add constant for invalid guest state exit reason
For the sake of completeness, this patch adds a symbolic
constant for VMX exit reason 0x21 (invalid guest state).
Signed-off-by: Mohammed Gamal <m.gamal005@gmail.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r-- | arch/x86/include/asm/vmx.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/vmx.h b/arch/x86/include/asm/vmx.h index 9e6779f7cf2d..104cf86a7562 100644 --- a/arch/x86/include/asm/vmx.h +++ b/arch/x86/include/asm/vmx.h @@ -257,6 +257,7 @@ enum vmcs_field { #define EXIT_REASON_IO_INSTRUCTION 30 #define EXIT_REASON_MSR_READ 31 #define EXIT_REASON_MSR_WRITE 32 +#define EXIT_REASON_INVALID_STATE 33 #define EXIT_REASON_MWAIT_INSTRUCTION 36 #define EXIT_REASON_MONITOR_INSTRUCTION 39 #define EXIT_REASON_PAUSE_INSTRUCTION 40 |