diff options
author | Ingo Molnar <mingo@kernel.org> | 2017-02-08 18:51:30 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-03-02 08:42:29 +0100 |
commit | 8703e8a465b1e9cadc3680b4b1248f5987e54518 (patch) | |
tree | 9129afca91ad3678c38eb310bd9936e5d1e78a03 /include/linux/sched/user.h | |
parent | 3f07c0144132e4f59d88055ac8ff3e691a5fa2b8 (diff) | |
download | linux-8703e8a465b1e9cadc3680b4b1248f5987e54518.tar.gz linux-8703e8a465b1e9cadc3680b4b1248f5987e54518.tar.bz2 linux-8703e8a465b1e9cadc3680b4b1248f5987e54518.zip |
sched/headers: Prepare for new header dependencies before moving code to <linux/sched/user.h>
We are going to split <linux/sched/user.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/user.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>
Diffstat (limited to 'include/linux/sched/user.h')
-rw-r--r-- | include/linux/sched/user.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/sched/user.h b/include/linux/sched/user.h new file mode 100644 index 000000000000..83238e5ddadd --- /dev/null +++ b/include/linux/sched/user.h @@ -0,0 +1,6 @@ +#ifndef _LINUX_SCHED_USER_H +#define _LINUX_SCHED_USER_H + +#include <linux/sched.h> + +#endif /* _LINUX_SCHED_USER_H */ |