diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/init_task.h | 1 | ||||
-rw-r--r-- | include/linux/sched.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 23fd8909b9e5..6851225f44a7 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
@@ -140,6 +140,7 @@ extern struct group_info init_groups; | |||
140 | .nr_cpus_allowed = NR_CPUS, \ | 140 | .nr_cpus_allowed = NR_CPUS, \ |
141 | }, \ | 141 | }, \ |
142 | .tasks = LIST_HEAD_INIT(tsk.tasks), \ | 142 | .tasks = LIST_HEAD_INIT(tsk.tasks), \ |
143 | .pushable_tasks = PLIST_NODE_INIT(tsk.pushable_tasks, MAX_PRIO), \ | ||
143 | .ptraced = LIST_HEAD_INIT(tsk.ptraced), \ | 144 | .ptraced = LIST_HEAD_INIT(tsk.ptraced), \ |
144 | .ptrace_entry = LIST_HEAD_INIT(tsk.ptrace_entry), \ | 145 | .ptrace_entry = LIST_HEAD_INIT(tsk.ptrace_entry), \ |
145 | .real_parent = &tsk, \ | 146 | .real_parent = &tsk, \ |
diff --git a/include/linux/sched.h b/include/linux/sched.h index 836a86c32a65..440cabb2d432 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -1179,6 +1179,7 @@ struct task_struct { | |||
1179 | #endif | 1179 | #endif |
1180 | 1180 | ||
1181 | struct list_head tasks; | 1181 | struct list_head tasks; |
1182 | struct plist_node pushable_tasks; | ||
1182 | 1183 | ||
1183 | struct mm_struct *mm, *active_mm; | 1184 | struct mm_struct *mm, *active_mm; |
1184 | 1185 | ||