diff options
| -rw-r--r-- | arch/x86/include/asm/xsave.h | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/xsave.c | 11 |
2 files changed, 10 insertions, 3 deletions
diff --git a/arch/x86/include/asm/xsave.h b/arch/x86/include/asm/xsave.h index 4d3b5d1fc028..d1b5f3a2fa20 100644 --- a/arch/x86/include/asm/xsave.h +++ b/arch/x86/include/asm/xsave.h | |||
| @@ -4,6 +4,8 @@ | |||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | #include <asm/processor.h> | 5 | #include <asm/processor.h> |
| 6 | 6 | ||
| 7 | #define XSTATE_CPUID 0x0000000d | ||
| 8 | |||
| 7 | #define XSTATE_FP 0x1 | 9 | #define XSTATE_FP 0x1 |
| 8 | #define XSTATE_SSE 0x2 | 10 | #define XSTATE_SSE 0x2 |
| 9 | #define XSTATE_YMM 0x4 | 11 | #define XSTATE_YMM 0x4 |
diff --git a/arch/x86/kernel/xsave.c b/arch/x86/kernel/xsave.c index 2322f586c051..5adb7fb408f0 100644 --- a/arch/x86/kernel/xsave.c +++ b/arch/x86/kernel/xsave.c | |||
| @@ -379,7 +379,7 @@ static void setup_xstate_features(void) | |||
| 379 | xstate_sizes = alloc_bootmem(xstate_features * sizeof(int)); | 379 | xstate_sizes = alloc_bootmem(xstate_features * sizeof(int)); |
| 380 | 380 | ||
| 381 | do { | 381 | do { |
| 382 | cpuid_count(0xd, leaf, &eax, &ebx, &ecx, &edx); | 382 | cpuid_count(XSTATE_CPUID, leaf, &eax, &ebx, &ecx, &edx); |
| 383 | 383 | ||
| 384 | if (eax == 0) | 384 | if (eax == 0) |
| 385 | break; | 385 | break; |
| @@ -425,7 +425,12 @@ static void __cpuinit xstate_enable_boot_cpu(void) | |||
| 425 | { | 425 | { |
| 426 | unsigned int eax, ebx, ecx, edx; | 426 | unsigned int eax, ebx, ecx, edx; |
| 427 | 427 | ||
| 428 | cpuid_count(0xd, 0, &eax, &ebx, &ecx, &edx); | 428 | if (boot_cpu_data.cpuid_level < XSTATE_CPUID) { |
| 429 | WARN(1, KERN_ERR "XSTATE_CPUID missing\n"); | ||
| 430 | return; | ||
| 431 | } | ||
| 432 | |||
| 433 | cpuid_count(XSTATE_CPUID, 0, &eax, &ebx, &ecx, &edx); | ||
| 429 | pcntxt_mask = eax + ((u64)edx << 32); | 434 | pcntxt_mask = eax + ((u64)edx << 32); |
| 430 | 435 | ||
| 431 | if ((pcntxt_mask & XSTATE_FPSSE) != XSTATE_FPSSE) { | 436 | if ((pcntxt_mask & XSTATE_FPSSE) != XSTATE_FPSSE) { |
| @@ -444,7 +449,7 @@ static void __cpuinit xstate_enable_boot_cpu(void) | |||
| 444 | /* | 449 | /* |
| 445 | * Recompute the context size for enabled features | 450 | * Recompute the context size for enabled features |
| 446 | */ | 451 | */ |
| 447 | cpuid_count(0xd, 0, &eax, &ebx, &ecx, &edx); | 452 | cpuid_count(XSTATE_CPUID, 0, &eax, &ebx, &ecx, &edx); |
| 448 | xstate_size = ebx; | 453 | xstate_size = ebx; |
| 449 | 454 | ||
| 450 | update_regset_xstate_info(xstate_size, pcntxt_mask); | 455 | update_regset_xstate_info(xstate_size, pcntxt_mask); |
