Skip to content

Commit 2993002

Browse files
author
Ingo Molnar
committedMar 2, 2017
sched/headers: Prepare for new header dependencies before moving code to <linux/sched/task.h>
We are going to split <linux/sched/task.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/task.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 <[email protected]> Cc: Mike Galbraith <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: [email protected] Signed-off-by: Ingo Molnar <[email protected]>
1 parent ef8bd77 commit 2993002

File tree

95 files changed

+104
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+104
-1
lines changed
 

‎arch/alpha/kernel/process.c

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include <linux/module.h>
1313
#include <linux/sched.h>
1414
#include <linux/sched/debug.h>
15+
#include <linux/sched/task.h>
1516
#include <linux/kernel.h>
1617
#include <linux/mm.h>
1718
#include <linux/smp.h>

‎arch/arc/kernel/process.c

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
#include <linux/errno.h>
1212
#include <linux/module.h>
1313
#include <linux/sched.h>
14+
#include <linux/sched/task.h>
15+
1416
#include <linux/mm.h>
1517
#include <linux/fs.h>
1618
#include <linux/unistd.h>

0 commit comments

Comments
 (0)
Please sign in to comment.