[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-4.0-testing] hvm: Extend the CPUID whitelist to include Intel's AES-NI intructions
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1274858798 -3600 # Node ID aa5ae409b1794108274e36c344f4e394e14184ee # Parent 0ba90243d8ef0714d5261762bf9c722226817b56 hvm: Extend the CPUID whitelist to include Intel's AES-NI intructions Signed-off-by: Tim Deegan <Tim.Deegan@xxxxxxxxxx> xen-unstable changeset: 21454:23291daa9da4 xen-unstable date: Wed May 26 08:02:33 2010 +0100 --- tools/libxc/xc_cpufeature.h | 1 + tools/libxc/xc_cpuid_x86.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff -r 0ba90243d8ef -r aa5ae409b179 tools/libxc/xc_cpufeature.h --- a/tools/libxc/xc_cpufeature.h Wed May 26 08:26:13 2010 +0100 +++ b/tools/libxc/xc_cpufeature.h Wed May 26 08:26:38 2010 +0100 @@ -83,6 +83,7 @@ #define X86_FEATURE_SSE4_1 (4*32+19) /* Streaming SIMD Extensions 4.1 */ #define X86_FEATURE_SSE4_2 (4*32+20) /* Streaming SIMD Extensions 4.2 */ #define X86_FEATURE_POPCNT (4*32+23) /* POPCNT instruction */ +#define X86_FEATURE_AES (4*32+25) /* AES acceleration instructions */ #define X86_FEATURE_XSAVE (4*32+26) /* XSAVE/XRSTOR/XSETBV/XGETBV */ #define X86_FEATURE_HYPERVISOR (4*32+31) /* Running under some hypervisor */ diff -r 0ba90243d8ef -r aa5ae409b179 tools/libxc/xc_cpuid_x86.c --- a/tools/libxc/xc_cpuid_x86.c Wed May 26 08:26:13 2010 +0100 +++ b/tools/libxc/xc_cpuid_x86.c Wed May 26 08:26:38 2010 +0100 @@ -190,7 +190,8 @@ static void xc_cpuid_hvm_policy( bitmaskof(X86_FEATURE_CX16) | bitmaskof(X86_FEATURE_SSE4_1) | bitmaskof(X86_FEATURE_SSE4_2) | - bitmaskof(X86_FEATURE_POPCNT)); + bitmaskof(X86_FEATURE_POPCNT) | + bitmaskof(X86_FEATURE_AES)); regs[2] |= bitmaskof(X86_FEATURE_HYPERVISOR); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |