diff options
| author | Ingo Molnar <mingo@kernel.org> | 2013-02-16 09:46:48 +0100 | 
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2013-02-19 08:06:01 +0100 | 
| commit | 77852fea6e2442a0e654a9292060489895de18c7 (patch) | |
| tree | 54b698af91b7b6296a1c7799d4bddb80667b6b98 /include/linux/init_task.h | |
| parent | cdc4e86b58a95005ef500916b4a8e91a0037a822 (diff) | |
| download | olio-linux-3.10-77852fea6e2442a0e654a9292060489895de18c7.tar.xz olio-linux-3.10-77852fea6e2442a0e654a9292060489895de18c7.zip  | |
sched/rt: Add <linux/sched/rt.h> header to <linux/init_task.h>
IA64 relied on it through sched.h inclusion:
  arch/ia64/kernel/init_task.c:38:11: error: 'MAX_PRIO' undeclared here (not in a function)
  arch/ia64/kernel/init_task.c:38:11: error: 'RR_TIMESLICE' undeclared here (not in a function)
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Cc: Clark Williams <williams@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/n/tip-xaan1twswggedMR0airtpjui@git.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include/linux/init_task.h')
| -rw-r--r-- | include/linux/init_task.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index cc898b871ce..5cd0f094992 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h @@ -12,6 +12,7 @@  #include <linux/securebits.h>  #include <linux/seqlock.h>  #include <net/net_namespace.h> +#include <linux/sched/rt.h>  #ifdef CONFIG_SMP  # define INIT_PUSHABLE_TASKS(tsk)					\  |