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.

sched/headers: Prepare for new header dependencies before moving code to <linux/sched/topology.h>

We are going to split <linux/sched/topology.h> out of <linux/sched.h>, which
will have to be picked up from other headers and a couple of .c files.

Create a trivial placeholder <linux/sched/topology.h> file that just
maps to <linux/sched.h> to make this patch obviously correct and
bisectable.

Include the new header in the files that are going to need it.

Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>

+17
+1
arch/arm/kernel/topology.c
··· 21 21 #include <linux/nodemask.h> 22 22 #include <linux/of.h> 23 23 #include <linux/sched.h> 24 + #include <linux/sched/topology.h> 24 25 #include <linux/slab.h> 25 26 #include <linux/string.h> 26 27
+1
arch/arm64/kernel/topology.c
··· 20 20 #include <linux/nodemask.h> 21 21 #include <linux/of.h> 22 22 #include <linux/sched.h> 23 + #include <linux/sched/topology.h> 23 24 #include <linux/slab.h> 24 25 #include <linux/string.h> 25 26 #include <linux/cpufreq.h>
+1
arch/powerpc/kernel/smp.c
··· 20 20 #include <linux/kernel.h> 21 21 #include <linux/export.h> 22 22 #include <linux/sched.h> 23 + #include <linux/sched/topology.h> 23 24 #include <linux/smp.h> 24 25 #include <linux/interrupt.h> 25 26 #include <linux/delay.h>
+1
arch/s390/kernel/topology.c
··· 13 13 #include <linux/export.h> 14 14 #include <linux/kernel.h> 15 15 #include <linux/sched.h> 16 + #include <linux/sched/topology.h> 16 17 #include <linux/delay.h> 17 18 #include <linux/init.h> 18 19 #include <linux/slab.h>
+1
arch/x86/kernel/smpboot.c
··· 45 45 #include <linux/smp.h> 46 46 #include <linux/export.h> 47 47 #include <linux/sched.h> 48 + #include <linux/sched/topology.h> 48 49 #include <linux/percpu.h> 49 50 #include <linux/bootmem.h> 50 51 #include <linux/err.h>
+1
block/blk-mq.c
··· 20 20 #include <linux/cpu.h> 21 21 #include <linux/cache.h> 22 22 #include <linux/sched/sysctl.h> 23 + #include <linux/sched/topology.h> 23 24 #include <linux/delay.h> 24 25 #include <linux/crash_dump.h> 25 26 #include <linux/prefetch.h>
+1
block/blk-softirq.c
··· 9 9 #include <linux/interrupt.h> 10 10 #include <linux/cpu.h> 11 11 #include <linux/sched.h> 12 + #include <linux/sched/topology.h> 12 13 13 14 #include "blk.h" 14 15
+1
include/linux/cpuset.h
··· 9 9 */ 10 10 11 11 #include <linux/sched.h> 12 + #include <linux/sched/topology.h> 12 13 #include <linux/cpumask.h> 13 14 #include <linux/nodemask.h> 14 15 #include <linux/mm.h>
+6
include/linux/sched/topology.h
··· 1 + #ifndef _LINUX_SCHED_TOPOLOGY_H 2 + #define _LINUX_SCHED_TOPOLOGY_H 3 + 4 + #include <linux/sched.h> 5 + 6 + #endif /* _LINUX_SCHED_TOPOLOGY_H */
+2
kernel/sched/fair.c
··· 21 21 */ 22 22 23 23 #include <linux/sched.h> 24 + #include <linux/sched/topology.h> 25 + 24 26 #include <linux/latencytop.h> 25 27 #include <linux/cpumask.h> 26 28 #include <linux/cpuidle.h>
+1
kernel/sched/sched.h
··· 1 1 2 2 #include <linux/sched.h> 3 3 #include <linux/sched/sysctl.h> 4 + #include <linux/sched/topology.h> 4 5 #include <linux/sched/rt.h> 5 6 #include <linux/u64_stats_sync.h> 6 7 #include <linux/sched/deadline.h>