aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/init_task.h2
-rw-r--r--include/linux/sched.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/init_task.h b/include/linux/init_task.h
index 79d4baee31b6..9e7f2e8fc66e 100644
--- a/include/linux/init_task.h
+++ b/include/linux/init_task.h
@@ -98,7 +98,7 @@ extern struct group_info init_groups;
98#define INIT_TASK_RCU_PREEMPT(tsk) \ 98#define INIT_TASK_RCU_PREEMPT(tsk) \
99 .rcu_read_lock_nesting = 0, \ 99 .rcu_read_lock_nesting = 0, \
100 .rcu_read_unlock_special = 0, \ 100 .rcu_read_unlock_special = 0, \
101 .rcu_blocked_cpu = -1, \ 101 .rcu_blocked_node = NULL, \
102 .rcu_node_entry = LIST_HEAD_INIT(tsk.rcu_node_entry), 102 .rcu_node_entry = LIST_HEAD_INIT(tsk.rcu_node_entry),
103#else 103#else
104#define INIT_TASK_RCU_PREEMPT(tsk) 104#define INIT_TASK_RCU_PREEMPT(tsk)
diff --git a/include/linux/sched.h b/include/linux/sched.h
index bfca26d63b13..3fe03151a8e6 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1208,7 +1208,7 @@ struct task_struct {
1208#ifdef CONFIG_TREE_PREEMPT_RCU 1208#ifdef CONFIG_TREE_PREEMPT_RCU
1209 int rcu_read_lock_nesting; 1209 int rcu_read_lock_nesting;
1210 char rcu_read_unlock_special; 1210 char rcu_read_unlock_special;
1211 int rcu_blocked_cpu; 1211 void *rcu_blocked_node;
1212 struct list_head rcu_node_entry; 1212 struct list_head rcu_node_entry;
1213#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */ 1213#endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
1214 1214
@@ -1735,7 +1735,7 @@ static inline void rcu_copy_process(struct task_struct *p)
1735{ 1735{
1736 p->rcu_read_lock_nesting = 0; 1736 p->rcu_read_lock_nesting = 0;
1737 p->rcu_read_unlock_special = 0; 1737 p->rcu_read_unlock_special = 0;
1738 p->rcu_blocked_cpu = -1; 1738 p->rcu_blocked_node = NULL;
1739 INIT_LIST_HEAD(&p->rcu_node_entry); 1739 INIT_LIST_HEAD(&p->rcu_node_entry);
1740} 1740}
1741 1741