|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] x86/CPUID: also check leaf 7 max subleaf to be compatible
Just like is done for basic and extended major leaves.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
--- a/xen/lib/x86/policy.c
+++ b/xen/lib/x86/policy.c
@@ -18,6 +18,9 @@ int x86_cpu_policies_are_compatible(cons
if ( guest->cpuid->basic.max_leaf > host->cpuid->basic.max_leaf )
FAIL_CPUID(0, NA);
+ if ( guest->cpuid->feat.max_subleaf > host->cpuid->feat.max_subleaf )
+ FAIL_CPUID(7, 0);
+
if ( guest->cpuid->extd.max_leaf > host->cpuid->extd.max_leaf )
FAIL_CPUID(0x80000000, NA);
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |