diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2010-05-05 16:04:44 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-08-01 10:35:38 +0300 |
commit | eec4b140c924b4c650e9a89e01d223266490e325 (patch) | |
tree | 9af6ed57f7a62da94ffdd4b29473d9cb093a93d7 /arch/x86/include/asm/msr-index.h | |
parent | 3f10c846f8f9e6a32bbfeefaf7dda7ff51c7da29 (diff) | |
download | talos-obmc-linux-eec4b140c924b4c650e9a89e01d223266490e325.tar.gz talos-obmc-linux-eec4b140c924b4c650e9a89e01d223266490e325.zip |
KVM: SVM: Allow EFER.LMSLE to be set with nested svm
This patch enables setting of efer bit 13 which is allowed
in all SVM capable processors. This is necessary for the
SLES11 version of Xen 4.0 to boot with nested svm.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/msr-index.h')
-rw-r--r-- | arch/x86/include/asm/msr-index.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/msr-index.h b/arch/x86/include/asm/msr-index.h index 8c7ae4318629..509a42187dc2 100644 --- a/arch/x86/include/asm/msr-index.h +++ b/arch/x86/include/asm/msr-index.h @@ -20,6 +20,7 @@ #define _EFER_LMA 10 /* Long mode active (read-only) */ #define _EFER_NX 11 /* No execute enable */ #define _EFER_SVME 12 /* Enable virtualization */ +#define _EFER_LMSLE 13 /* Long Mode Segment Limit Enable */ #define _EFER_FFXSR 14 /* Enable Fast FXSAVE/FXRSTOR */ #define EFER_SCE (1<<_EFER_SCE) @@ -27,6 +28,7 @@ #define EFER_LMA (1<<_EFER_LMA) #define EFER_NX (1<<_EFER_NX) #define EFER_SVME (1<<_EFER_SVME) +#define EFER_LMSLE (1<<_EFER_LMSLE) #define EFER_FFXSR (1<<_EFER_FFXSR) /* Intel MSRs. Some also available on other CPUs */ |