aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/srcutree.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/srcutree.h')
-rw-r--r--include/linux/srcutree.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/srcutree.h b/include/linux/srcutree.h
index 9cfa4610113a..0ae91b3a7406 100644
--- a/include/linux/srcutree.h
+++ b/include/linux/srcutree.h
@@ -94,7 +94,6 @@ struct srcu_struct {
94 /* callback for the barrier */ 94 /* callback for the barrier */
95 /* operation. */ 95 /* operation. */
96 struct delayed_work work; 96 struct delayed_work work;
97 struct list_head srcu_boot_entry; /* Early-boot callbacks. */
98#ifdef CONFIG_DEBUG_LOCK_ALLOC 97#ifdef CONFIG_DEBUG_LOCK_ALLOC
99 struct lockdep_map dep_map; 98 struct lockdep_map dep_map;
100#endif /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */ 99#endif /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
@@ -110,7 +109,7 @@ struct srcu_struct {
110 .sda = &pcpu_name, \ 109 .sda = &pcpu_name, \
111 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \ 110 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
112 .srcu_gp_seq_needed = -1UL, \ 111 .srcu_gp_seq_needed = -1UL, \
113 .srcu_boot_entry = LIST_HEAD_INIT(name.srcu_boot_entry), \ 112 .work = __DELAYED_WORK_INITIALIZER(name.work, NULL, 0), \
114 __SRCU_DEP_MAP_INIT(name) \ 113 __SRCU_DEP_MAP_INIT(name) \
115} 114}
116 115