|
@@ -64,7 +64,7 @@
|
|
|
static struct lock_class_key rcu_node_class[RCU_NUM_LVLS];
|
|
|
static struct lock_class_key rcu_fqs_class[RCU_NUM_LVLS];
|
|
|
|
|
|
-#define RCU_STATE_INITIALIZER(sname, cr) { \
|
|
|
+#define RCU_STATE_INITIALIZER(sname, sabbr, cr) { \
|
|
|
.level = { &sname##_state.node[0] }, \
|
|
|
.call = cr, \
|
|
|
.fqs_state = RCU_GP_IDLE, \
|
|
@@ -76,13 +76,14 @@ static struct lock_class_key rcu_fqs_class[RCU_NUM_LVLS];
|
|
|
.barrier_mutex = __MUTEX_INITIALIZER(sname##_state.barrier_mutex), \
|
|
|
.onoff_mutex = __MUTEX_INITIALIZER(sname##_state.onoff_mutex), \
|
|
|
.name = #sname, \
|
|
|
+ .abbr = sabbr, \
|
|
|
}
|
|
|
|
|
|
struct rcu_state rcu_sched_state =
|
|
|
- RCU_STATE_INITIALIZER(rcu_sched, call_rcu_sched);
|
|
|
+ RCU_STATE_INITIALIZER(rcu_sched, 's', call_rcu_sched);
|
|
|
DEFINE_PER_CPU(struct rcu_data, rcu_sched_data);
|
|
|
|
|
|
-struct rcu_state rcu_bh_state = RCU_STATE_INITIALIZER(rcu_bh, call_rcu_bh);
|
|
|
+struct rcu_state rcu_bh_state = RCU_STATE_INITIALIZER(rcu_bh, 'b', call_rcu_bh);
|
|
|
DEFINE_PER_CPU(struct rcu_data, rcu_bh_data);
|
|
|
|
|
|
static struct rcu_state *rcu_state;
|