]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
x86/smpboot: Remove STARTUP_SECONDARY parallel-6.2-rc8-part1
authorBrian Gerst <brgerst@gmail.com>
Fri, 24 Feb 2023 15:42:35 +0000 (10:42 -0500)
committerDavid Woodhouse <dwmw@amazon.co.uk>
Sat, 25 Feb 2023 07:59:57 +0000 (07:59 +0000)
All CPUs now use the same setup path.  Remove STARTUP_SECONDARY and
renumber the remaining flags.

Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: David Woodhouse <dwmw@amazon.co.uk>
arch/x86/include/asm/smp.h
arch/x86/kernel/head_64.S
arch/x86/kernel/smpboot.c

index b4b29e052b6ee669c0ece43119e5bd02e70c33ec..97a36d029b0e85d50e8b7039159bddb105ab4ebe 100644 (file)
@@ -202,8 +202,7 @@ extern unsigned int smpboot_control;
 #endif /* !__ASSEMBLY__ */
 
 /* Control bits for startup_64 */
-#define STARTUP_SECONDARY      0x80000000
-#define STARTUP_APICID_CPUID_0B        0x40000000
-#define STARTUP_APICID_CPUID_01        0x20000000
+#define STARTUP_APICID_CPUID_0B        0x80000000
+#define STARTUP_APICID_CPUID_01        0x40000000
 
 #endif /* _ASM_X86_SMP_H */
index 8bd29ab523dd6a5799d30d98b2766e960128a484..f629bf74217b211e3d1691828c6615970f2c0076 100644 (file)
@@ -240,9 +240,8 @@ SYM_INNER_LABEL(secondary_startup_64_no_verify, SYM_L_GLOBAL)
         * used to look up the CPU number.  For booting a single CPU, the
         * CPU number is encoded in smpboot_control.
         *
-        * Bit 31       STARTUP_SECONDARY flag (checked above)
-        * Bit 30       STARTUP_APICID_CPUID_0B flag (use CPUID 0x0b)
-        * Bit 29       STARTUP_APICID_CPUID_01 flag (use CPUID 0x01)
+        * Bit 31       STARTUP_APICID_CPUID_0B flag (use CPUID 0x0b)
+        * Bit 30       STARTUP_APICID_CPUID_01 flag (use CPUID 0x01)
         * Bit 0-24     CPU# if STARTUP_APICID_CPUID_xx flags are not set
         */
        movl    smpboot_control(%rip), %ecx
index 69ef0860feea61b6c49724e648ee157957378cb3..9d956571ecc1aeaddefceb23545864b7260c4669 100644 (file)
@@ -1140,7 +1140,7 @@ static int do_boot_cpu(int apicid, int cpu, struct task_struct *idle,
                early_gdt_descr.address = (unsigned long)get_cpu_gdt_rw(cpu);
                initial_stack  = idle->thread.sp;
        } else if (!do_parallel_bringup) {
-               smpboot_control = STARTUP_SECONDARY | cpu;
+               smpboot_control = cpu;
        }
 
        /* Enable the espfix hack for this CPU */
@@ -1580,7 +1580,7 @@ void __init native_smp_prepare_cpus(unsigned int max_cpus)
                 */
                if (eax) {
                        pr_debug("Using CPUID 0xb for parallel CPU startup\n");
-                       smpboot_control = STARTUP_SECONDARY | STARTUP_APICID_CPUID_0B;
+                       smpboot_control = STARTUP_APICID_CPUID_0B;
                } else {
                        pr_info("Disabling parallel bringup because CPUID 0xb looks untrustworthy\n");
                        do_parallel_bringup = false;
@@ -1588,7 +1588,7 @@ void __init native_smp_prepare_cpus(unsigned int max_cpus)
        } else if (do_parallel_bringup) {
                /* Without X2APIC, what's in CPUID 0x01 should suffice. */
                pr_debug("Using CPUID 0x1 for parallel CPU startup\n");
-               smpboot_control = STARTUP_SECONDARY | STARTUP_APICID_CPUID_01;
+               smpboot_control = STARTUP_APICID_CPUID_01;
        }
 
        if (do_parallel_bringup) {