mirror of https://gitee.com/openkylin/linux.git
sched/headers: Prepare for new header dependencies before moving code to <linux/sched/numa_balancing.h>
We are going to split <linux/sched/numa_balancing.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/numa_balancing.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>
This commit is contained in:
parent
010426079e
commit
6a3827d750
|
@ -35,6 +35,7 @@
|
|||
#include <linux/sched/mm.h>
|
||||
#include <linux/sched/coredump.h>
|
||||
#include <linux/sched/signal.h>
|
||||
#include <linux/sched/numa_balancing.h>
|
||||
#include <linux/pagemap.h>
|
||||
#include <linux/perf_event.h>
|
||||
#include <linux/highmem.h>
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
#include <linux/string.h>
|
||||
#include <linux/mman.h>
|
||||
#include <linux/sched/mm.h>
|
||||
#include <linux/sched/numa_balancing.h>
|
||||
#include <linux/proc_fs.h>
|
||||
#include <linux/ioport.h>
|
||||
#include <linux/uaccess.h>
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
#ifndef _LINUX_SCHED_NUMA_BALANCING_H
|
||||
#define _LINUX_SCHED_NUMA_BALANCING_H
|
||||
|
||||
#include <linux/sched.h>
|
||||
|
||||
#endif /* _LINUX_SCHED_NUMA_BALANCING_H */
|
|
@ -4,7 +4,7 @@
|
|||
#if !defined(_TRACE_SCHED_H) || defined(TRACE_HEADER_MULTI_READ)
|
||||
#define _TRACE_SCHED_H
|
||||
|
||||
#include <linux/sched.h>
|
||||
#include <linux/sched/numa_balancing.h>
|
||||
#include <linux/tracepoint.h>
|
||||
#include <linux/binfmts.h>
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
#include <linux/sched/mm.h>
|
||||
#include <linux/sched/coredump.h>
|
||||
#include <linux/sched/user.h>
|
||||
#include <linux/sched/numa_balancing.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/unistd.h>
|
||||
#include <linux/module.h>
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#include <linux/sched/clock.h>
|
||||
#include <linux/sched/wake_q.h>
|
||||
#include <linux/sched/signal.h>
|
||||
#include <linux/sched/numa_balancing.h>
|
||||
#include <linux/sched/mm.h>
|
||||
#include <linux/sched/cpufreq.h>
|
||||
#include <linux/u64_stats_sync.h>
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include <linux/mm.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/sched/coredump.h>
|
||||
#include <linux/sched/numa_balancing.h>
|
||||
#include <linux/highmem.h>
|
||||
#include <linux/hugetlb.h>
|
||||
#include <linux/mmu_notifier.h>
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
#include <linux/mm.h>
|
||||
#include <linux/sched/mm.h>
|
||||
#include <linux/sched/coredump.h>
|
||||
#include <linux/sched/numa_balancing.h>
|
||||
#include <linux/hugetlb.h>
|
||||
#include <linux/mman.h>
|
||||
#include <linux/swap.h>
|
||||
|
|
|
@ -74,6 +74,7 @@
|
|||
#include <linux/kernel.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/sched/mm.h>
|
||||
#include <linux/sched/numa_balancing.h>
|
||||
#include <linux/nodemask.h>
|
||||
#include <linux/cpuset.h>
|
||||
#include <linux/slab.h>
|
||||
|
|
Loading…
Reference in New Issue