diff options
author | Suresh Siddha <suresh.b.siddha@intel.com> | 2009-05-22 12:17:45 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-22 13:10:54 -0700 |
commit | 0c752a93353d9b17dbe148312d732fbe06d235e1 (patch) | |
tree | 944b37d214dd478abc1c5d2b51573ec87be59c63 /arch/x86 | |
parent | bca23dba760d6705c013f89113c46570378fb626 (diff) | |
download | op-kernel-dev-0c752a93353d9b17dbe148312d732fbe06d235e1.zip op-kernel-dev-0c752a93353d9b17dbe148312d732fbe06d235e1.tar.gz |
x86: introduce noxsave boot parameter
Introduce "noxsave" boot parameter which will disable the cpu's xsave/xrstor
capabilities. Useful for debugging and working around xsave related issues.
[ Impact: make it possible to debug problems in the field ]
Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/cpu/common.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index c1caefc..77848d9 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c @@ -114,6 +114,13 @@ DEFINE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page) = { .gdt = { } }; EXPORT_PER_CPU_SYMBOL_GPL(gdt_page); +static int __init x86_xsave_setup(char *s) +{ + setup_clear_cpu_cap(X86_FEATURE_XSAVE); + return 1; +} +__setup("noxsave", x86_xsave_setup); + #ifdef CONFIG_X86_32 static int cachesize_override __cpuinitdata = -1; static int disable_x86_serial_nr __cpuinitdata = 1; |