Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'core-urgent-2021-07-25' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull core fix from Thomas Gleixner:
"A single update for the boot code to prevent aggressive un-inlining
which causes a section mismatch"

* tag 'core-urgent-2021-07-25' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
smpboot: Mark idle_init() as __always_inlined to work around aggressive compiler un-inlining

+1 -1
+1 -1
kernel/smpboot.c
··· 47 47 * 48 48 * Creates the thread if it does not exist. 49 49 */ 50 - static inline void idle_init(unsigned int cpu) 50 + static inline void __always_inline idle_init(unsigned int cpu) 51 51 { 52 52 struct task_struct *tsk = per_cpu(idle_threads, cpu); 53 53