diff options
author | Andre Przywara <andre.przywara@amd.com> | 2010-12-21 11:12:04 +0100 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-01-12 11:31:03 +0200 |
commit | 7ff76d58a9dc03a38b86d283abcaae2ac3c74fe3 (patch) | |
tree | f45fdc961458c760f4d8a64f4f5e9269ce82bc38 /arch/x86/include | |
parent | ddce97aac5405e0b2b8b2191cb65b5a48eb14145 (diff) | |
download | linux-7ff76d58a9dc03a38b86d283abcaae2ac3c74fe3.tar.gz linux-7ff76d58a9dc03a38b86d283abcaae2ac3c74fe3.tar.bz2 linux-7ff76d58a9dc03a38b86d283abcaae2ac3c74fe3.zip |
KVM: SVM: enhance MOV CR intercept handler
Newer SVM implementations provide the GPR number in the VMCB, so
that the emulation path is no longer necesarry to handle CR
register access intercepts. Implement the handling in svm.c and
use it when the info is provided.
Signed-off-by: Andre Przywara <andre.przywara@amd.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/svm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/svm.h b/arch/x86/include/asm/svm.h index f7087bf9caf0..f0ffb8184089 100644 --- a/arch/x86/include/asm/svm.h +++ b/arch/x86/include/asm/svm.h @@ -260,6 +260,8 @@ struct __attribute__ ((__packed__)) vmcb { #define SVM_EXITINFOSHIFT_TS_REASON_JMP 38 #define SVM_EXITINFOSHIFT_TS_HAS_ERROR_CODE 44 +#define SVM_EXITINFO_REG_MASK 0x0F + #define SVM_EXIT_READ_CR0 0x000 #define SVM_EXIT_READ_CR3 0x003 #define SVM_EXIT_READ_CR4 0x004 |