diff options
author | 2017-01-24 09:03:05 +0000 | |
---|---|---|
committer | 2017-01-24 09:03:05 +0000 | |
commit | 12a1fcd073136a0697c9934f8762d2560e1484e2 (patch) | |
tree | a3fc020286aa5545e2f2398a120269a9350cc2e2 | |
parent | SVM: missing msr defintion for host save area physaddr (diff) | |
download | wireguard-openbsd-12a1fcd073136a0697c9934f8762d2560e1484e2.tar.xz wireguard-openbsd-12a1fcd073136a0697c9934f8762d2560e1484e2.zip |
SVM: matching i386 commit (missing host save area pa msr)
-rw-r--r-- | sys/arch/i386/include/specialreg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/include/specialreg.h b/sys/arch/i386/include/specialreg.h index 11c025c2adc..8d2f2141360 100644 --- a/sys/arch/i386/include/specialreg.h +++ b/sys/arch/i386/include/specialreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: specialreg.h,v 1.60 2017/01/19 23:17:19 mlarkin Exp $ */ +/* $OpenBSD: specialreg.h,v 1.61 2017/01/24 09:03:05 mlarkin Exp $ */ /* $NetBSD: specialreg.h,v 1.7 1994/10/27 04:16:26 cgd Exp $ */ /*- @@ -1044,6 +1044,7 @@ * SVM */ #define MSR_AMD_VM_CR 0xc0010114 +#define MSR_AMD_VM_HSAVE_PA 0xc0010117 #define CPUID_AMD_SVM_CAP 0x8000000A #define AMD_SVMDIS 0x10 #define AMD_SVM_NESTED_PAGING_CAP (1 << 0) |