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

We are going to split <linux/sched/jobctl.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/jobctl.h> file that just
maps to <linux/sched.h> to make this patch obviously correct and
bisectable.

Include the new header in the file that is 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:
Ingo Molnar 2017-02-08 18:51:32 +01:00
parent 6a3827d750
commit 1e4bae6468
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,4 @@
#ifndef _LINUX_SCHED_JOBCTL_H
#define _LINUX_SCHED_JOBCTL_H
#endif /* _LINUX_SCHED_JOBCTL_H */

View File

@ -2,5 +2,6 @@
#define _LINUX_SCHED_SIGNAL_H
#include <linux/sched.h>
#include <linux/sched/jobctl.h>
#endif /* _LINUX_SCHED_SIGNAL_H */