diff options
author | Ingo Molnar <mingo@kernel.org> | 2017-02-06 12:57:33 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-03-03 03:45:22 +0300 |
commit | 56cd697366b6d6f67acb6c58ac7f3b185d11ef07 (patch) | |
tree | c0866c89f50b5c511d88ab356845b4eb534cda87 /kernel/cgroup/cgroup-v1.c | |
parent | cdc75e9f7b14f29efcf4b162a3c673733e96db79 (diff) | |
download | linux-56cd697366b6d6f67acb6c58ac7f3b185d11ef07.tar.xz |
sched/headers: Move the task_lock()/unlock() APIs to <linux/sched/task.h>
The task_lock()/task_unlock() APIs are not realated to core scheduling,
they are task lifetime APIs, i.e. they belong into <linux/sched/task.h>.
Move them.
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 'kernel/cgroup/cgroup-v1.c')
-rw-r--r-- | kernel/cgroup/cgroup-v1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/cgroup/cgroup-v1.c b/kernel/cgroup/cgroup-v1.c index 08d2cb605101..abc585858685 100644 --- a/kernel/cgroup/cgroup-v1.c +++ b/kernel/cgroup/cgroup-v1.c @@ -6,6 +6,7 @@ #include <linux/delay.h> #include <linux/mm.h> #include <linux/sched/signal.h> +#include <linux/sched/task.h> #include <linux/slab.h> #include <linux/vmalloc.h> #include <linux/delayacct.h> |