aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mm_types_task.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2017-02-04 00:12:19 +0100
committerIngo Molnar <mingo@kernel.org>2017-03-02 08:42:37 +0100
commit2e58f173ab89b29a1373088b8727133dbf7322b0 (patch)
tree833f821b255970a0bd98c4394b2b1ed3a0adfaa3 /include/linux/mm_types_task.h
parentsched/headers: Prepare for the reduction of <linux/sched.h>'s signal API dependency (diff)
downloadlinux-dev-2e58f173ab89b29a1373088b8727133dbf7322b0.tar.xz
linux-dev-2e58f173ab89b29a1373088b8727133dbf7322b0.zip
mm/headers, sched/headers: Prepare to split <linux/mm_types_task.h> out of <linux/mm_types.h>
We are going to separate all the MM types that are embedded directly in 'struct task_struct' into the new <linux/mm_types_task.h> header. Create a new <linux/mm_types_task.h> that only contains some includes from mm_types.h itself. This should be trivially correct and easy to bisect to. (This patch does not materially move the types yet.) 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>
Diffstat (limited to 'include/linux/mm_types_task.h')
-rw-r--r--include/linux/mm_types_task.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/mm_types_task.h b/include/linux/mm_types_task.h
new file mode 100644
index 000000000000..2419d302f03c
--- /dev/null
+++ b/include/linux/mm_types_task.h
@@ -0,0 +1,10 @@
+#ifndef _LINUX_MM_TYPES_TASK_H
+#define _LINUX_MM_TYPES_TASK_H
+
+#include <linux/types.h>
+#include <linux/threads.h>
+#include <linux/atomic.h>
+
+#include <asm/page.h>
+
+#endif /* _LINUX_MM_TYPES_TASK_H */