Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1735305 > unrolled thread

[PATCH v7 3/5] x86/cpuid: Make clearcpuid an early param

Started byAndi Kleen <andi@firstfloor.org>
First post2017-09-20 00:30 +0200
Last post2017-09-20 00:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v7 3/5] x86/cpuid: Make clearcpuid an early param Andi Kleen <andi@firstfloor.org> - 2017-09-20 00:30 +0200

#1735305 — [PATCH v7 3/5] x86/cpuid: Make clearcpuid an early param

FromAndi Kleen <andi@firstfloor.org>
Date2017-09-20 00:30 +0200
Subject[PATCH v7 3/5] x86/cpuid: Make clearcpuid an early param
Message-ID<urzbJ-2OV-19@gated-at.bofh.it>
From: Andi Kleen <ak@linux.intel.com>

Make clearcpuid= an early param, to make sure it is parsed
before the XSAVE initialization. This allows to modify
XSAVE state by clearing specific CPUID bits.

Signed-off-by: Andi Kleen <ak@linux.intel.com>
---
 arch/x86/kernel/cpu/common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c
index 92480f3948ad..3d8b86b6335d 100644
--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -1303,7 +1303,7 @@ static __init int setup_disablecpuid(char *arg)
 
 	return 1;
 }
-__setup("clearcpuid=", setup_disablecpuid);
+early_param("clearcpuid", setup_disablecpuid);
 
 #ifdef CONFIG_X86_64
 DEFINE_PER_CPU_FIRST(union irq_stack_union,
-- 
2.9.5

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web