aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/srcutiny.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/srcutiny.h')
-rw-r--r--include/linux/srcutiny.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/srcutiny.h b/include/linux/srcutiny.h
index 2b5c0822e683..f41d2fb09f87 100644
--- a/include/linux/srcutiny.h
+++ b/include/linux/srcutiny.h
@@ -36,7 +36,6 @@ struct srcu_struct {
36 struct rcu_head *srcu_cb_head; /* Pending callbacks: Head. */ 36 struct rcu_head *srcu_cb_head; /* Pending callbacks: Head. */
37 struct rcu_head **srcu_cb_tail; /* Pending callbacks: Tail. */ 37 struct rcu_head **srcu_cb_tail; /* Pending callbacks: Tail. */
38 struct work_struct srcu_work; /* For driving grace periods. */ 38 struct work_struct srcu_work; /* For driving grace periods. */
39 struct list_head srcu_boot_entry; /* Early-boot callbacks. */
40#ifdef CONFIG_DEBUG_LOCK_ALLOC 39#ifdef CONFIG_DEBUG_LOCK_ALLOC
41 struct lockdep_map dep_map; 40 struct lockdep_map dep_map;
42#endif /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */ 41#endif /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
@@ -49,7 +48,6 @@ void srcu_drive_gp(struct work_struct *wp);
49 .srcu_wq = __SWAIT_QUEUE_HEAD_INITIALIZER(name.srcu_wq), \ 48 .srcu_wq = __SWAIT_QUEUE_HEAD_INITIALIZER(name.srcu_wq), \
50 .srcu_cb_tail = &name.srcu_cb_head, \ 49 .srcu_cb_tail = &name.srcu_cb_head, \
51 .srcu_work = __WORK_INITIALIZER(name.srcu_work, srcu_drive_gp), \ 50 .srcu_work = __WORK_INITIALIZER(name.srcu_work, srcu_drive_gp), \
52 .srcu_boot_entry = LIST_HEAD_INIT(name.srcu_boot_entry), \
53 __SRCU_DEP_MAP_INIT(name) \ 51 __SRCU_DEP_MAP_INIT(name) \
54} 52}
55 53