sched: move CPU field back into thread_info if THREAD_INFO_IN_TASK=y
authorArd Biesheuvel <ardb@kernel.org>
Tue, 14 Sep 2021 12:10:33 +0000 (14:10 +0200)
committerArd Biesheuvel <ardb@kernel.org>
Thu, 30 Sep 2021 14:13:10 +0000 (16:13 +0200)
THREAD_INFO_IN_TASK moved the CPU field out of thread_info, but this
causes some issues on architectures that define raw_smp_processor_id()
in terms of this field, due to the fact that #include'ing linux/sched.h
to get at struct task_struct is problematic in terms of circular
dependencies.

Given that thread_info and task_struct are the same data structure
anyway when THREAD_INFO_IN_TASK=y, let's move it back so that having
access to the type definition of struct thread_info is sufficient to
reference the CPU number of the current task.

Note that this requires THREAD_INFO_IN_TASK's definition of the
task_thread_info() helper to be updated, as task_cpu() takes a
pointer-to-const, whereas task_thread_info() (which is used to generate
lvalues as well), needs a non-const pointer. So make it a macro instead.

Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Michael Ellerman <mpe@ellerman.id.au>
arch/arm64/kernel/asm-offsets.c
arch/arm64/kernel/head.S
arch/powerpc/kernel/asm-offsets.c
arch/powerpc/kernel/smp.c
include/linux/sched.h
kernel/sched/sched.h

index cee9f3e9f9062c96cc5e48cd51cbcfbd298572c8..0bfc048221af5172a867c3505a3b718875f9b70a 100644 (file)
@@ -27,7 +27,6 @@
 int main(void)
 {
   DEFINE(TSK_ACTIVE_MM,                offsetof(struct task_struct, active_mm));
-  DEFINE(TSK_CPU,              offsetof(struct task_struct, cpu));
   BLANK();
   DEFINE(TSK_TI_CPU,           offsetof(struct task_struct, thread_info.cpu));
   DEFINE(TSK_TI_FLAGS,         offsetof(struct task_struct, thread_info.flags));
index 17962452e31de6a04d1c0d3cc924142478e1a4b3..6a98f1a38c29a14035be461293b52f2f1cf4b48f 100644 (file)
@@ -412,7 +412,7 @@ SYM_FUNC_END(__create_page_tables)
        scs_load \tsk
 
        adr_l   \tmp1, __per_cpu_offset
-       ldr     w\tmp2, [\tsk, #TSK_CPU]
+       ldr     w\tmp2, [\tsk, #TSK_TI_CPU]
        ldr     \tmp1, [\tmp1, \tmp2, lsl #3]
        set_this_cpu_offset \tmp1
        .endm
index e563d3222d695c3a5928ecc86bc8430de33fe878..e37e4546034e8b0cefcabea0a27ba842b2fc0cfb 100644 (file)
@@ -93,7 +93,7 @@ int main(void)
 #endif /* CONFIG_PPC64 */
        OFFSET(TASK_STACK, task_struct, stack);
 #ifdef CONFIG_SMP
-       OFFSET(TASK_CPU, task_struct, cpu);
+       OFFSET(TASK_CPU, task_struct, thread_info.cpu);
 #endif
 
 #ifdef CONFIG_LIVEPATCH
index 9cc7d3dbf4392f2b842eb96df38d7918bcc99768..512d875b45e0b17eef5f2005d3e5e2159e684025 100644 (file)
@@ -1223,7 +1223,7 @@ static void cpu_idle_thread_init(unsigned int cpu, struct task_struct *idle)
        paca_ptrs[cpu]->kstack = (unsigned long)task_stack_page(idle) +
                                 THREAD_SIZE - STACK_FRAME_OVERHEAD;
 #endif
-       idle->cpu = cpu;
+       task_thread_info(idle)->cpu = cpu;
        secondary_current = current_set[cpu] = idle;
 }
 
index 39039ce8ac4c1774a8c1aca1d0d7bc5eb6e7485f..8699594e3f99e5e01eff74ea112a4f11d6f718bc 100644 (file)
@@ -750,10 +750,6 @@ struct task_struct {
 #ifdef CONFIG_SMP
        int                             on_cpu;
        struct __call_single_node       wake_entry;
-#ifdef CONFIG_THREAD_INFO_IN_TASK
-       /* Current CPU: */
-       unsigned int                    cpu;
-#endif
        unsigned int                    wakee_flips;
        unsigned long                   wakee_flip_decay_ts;
        struct task_struct              *last_wakee;
@@ -1886,10 +1882,7 @@ extern struct thread_info init_thread_info;
 extern unsigned long init_stack[THREAD_SIZE / sizeof(unsigned long)];
 
 #ifdef CONFIG_THREAD_INFO_IN_TASK
-static inline struct thread_info *task_thread_info(struct task_struct *task)
-{
-       return &task->thread_info;
-}
+# define task_thread_info(task)        (&(task)->thread_info)
 #elif !defined(__HAVE_THREAD_FUNCTIONS)
 # define task_thread_info(task)        ((struct thread_info *)(task)->stack)
 #endif
@@ -2114,11 +2107,7 @@ static __always_inline bool need_resched(void)
 
 static inline unsigned int task_cpu(const struct task_struct *p)
 {
-#ifdef CONFIG_THREAD_INFO_IN_TASK
-       return READ_ONCE(p->cpu);
-#else
        return READ_ONCE(task_thread_info(p)->cpu);
-#endif
 }
 
 extern void set_task_cpu(struct task_struct *p, unsigned int cpu);
index 3d3e5793e11727a955fff8bc7678b921b7630ecb..79fcbad1145083f8779d9d3a82f84cf38471915f 100644 (file)
@@ -1926,11 +1926,7 @@ static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
         * per-task data have been completed by this moment.
         */
        smp_wmb();
-#ifdef CONFIG_THREAD_INFO_IN_TASK
-       WRITE_ONCE(p->cpu, cpu);
-#else
        WRITE_ONCE(task_thread_info(p)->cpu, cpu);
-#endif
        p->wake_cpu = cpu;
 #endif
 }