]> Pileus Git - ~andy/linux/commitdiff
x86, cpu: Add a synthetic, always true, cpu feature
authorBorislav Petkov <bp@suse.de>
Sun, 9 Jun 2013 10:07:30 +0000 (12:07 +0200)
committerH. Peter Anvin <hpa@linux.intel.com>
Fri, 21 Jun 2013 00:06:07 +0000 (17:06 -0700)
This will be used in alternatives later as an always-replace flag.

Signed-off-by: Borislav Petkov <bp@suse.de>
Link: http://lkml.kernel.org/r/1370772454-6106-2-git-send-email-bp@alien8.de
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
arch/x86/include/asm/cpufeature.h
arch/x86/kernel/cpu/common.c

index e99ac27f95b2cbcf9c0c5458cce4a946b7917b5e..043d61e66efc10767c55c3f73e8761016e1ab459 100644 (file)
@@ -92,7 +92,7 @@
 #define X86_FEATURE_LFENCE_RDTSC (3*32+18) /* "" Lfence synchronizes RDTSC */
 #define X86_FEATURE_11AP       (3*32+19) /* "" Bad local APIC aka 11AP */
 #define X86_FEATURE_NOPL       (3*32+20) /* The NOPL (0F 1F) instructions */
-                                         /* 21 available, was AMD_C1E */
+#define X86_FEATURE_ALWAYS     (3*32+21) /* "" Always-present feature */
 #define X86_FEATURE_XTOPOLOGY  (3*32+22) /* cpu topology enum extensions */
 #define X86_FEATURE_TSC_RELIABLE (3*32+23) /* TSC is known to be reliable */
 #define X86_FEATURE_NONSTOP_TSC        (3*32+24) /* TSC does not stop in C states */
index d4dd99350e9d1ffe93601882f98bcd7411c241ab..d388ce1f3e1bdd33834ec368c027203ec6ecb4dc 100644 (file)
@@ -723,6 +723,8 @@ static void __init early_identify_cpu(struct cpuinfo_x86 *c)
 
        if (this_cpu->c_bsp_init)
                this_cpu->c_bsp_init(c);
+
+       setup_force_cpu_cap(X86_FEATURE_ALWAYS);
 }
 
 void __init early_cpu_init(void)