Commit 69196019 authored by Paul E. McKenney's avatar Paul E. McKenney

rcu: Add state name to show_rcu_gp_kthreads() output

This commit adds the name of the RCU grace-period state to
the show_rcu_gp_kthreads() output in order to ease debugging.
This commit also moves gp_state_getname() up in the code so that
show_rcu_gp_kthreads() can use it.
Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.ibm.com>
parent 791416c4
...@@ -499,6 +499,16 @@ void rcu_force_quiescent_state(void) ...@@ -499,6 +499,16 @@ void rcu_force_quiescent_state(void)
} }
EXPORT_SYMBOL_GPL(rcu_force_quiescent_state); EXPORT_SYMBOL_GPL(rcu_force_quiescent_state);
/*
* Convert a ->gp_state value to a character string.
*/
static const char *gp_state_getname(short gs)
{
if (gs < 0 || gs >= ARRAY_SIZE(gp_state_names))
return "???";
return gp_state_names[gs];
}
/* /*
* Show the state of the grace-period kthreads. * Show the state of the grace-period kthreads.
*/ */
...@@ -508,8 +518,9 @@ void show_rcu_gp_kthreads(void) ...@@ -508,8 +518,9 @@ void show_rcu_gp_kthreads(void)
struct rcu_data *rdp; struct rcu_data *rdp;
struct rcu_node *rnp; struct rcu_node *rnp;
pr_info("%s: wait state: %d ->state: %#lx\n", rcu_state.name, pr_info("%s: wait state: %s(%d) ->state: %#lx\n", rcu_state.name,
rcu_state.gp_state, rcu_state.gp_kthread->state); gp_state_getname(rcu_state.gp_state), rcu_state.gp_state,
rcu_state.gp_kthread->state);
rcu_for_each_node_breadth_first(rnp) { rcu_for_each_node_breadth_first(rnp) {
if (ULONG_CMP_GE(rcu_state.gp_seq, rnp->gp_seq_needed)) if (ULONG_CMP_GE(rcu_state.gp_seq, rnp->gp_seq_needed))
continue; continue;
...@@ -1142,16 +1153,6 @@ static void record_gp_stall_check_time(void) ...@@ -1142,16 +1153,6 @@ static void record_gp_stall_check_time(void)
rcu_state.n_force_qs_gpstart = READ_ONCE(rcu_state.n_force_qs); rcu_state.n_force_qs_gpstart = READ_ONCE(rcu_state.n_force_qs);
} }
/*
* Convert a ->gp_state value to a character string.
*/
static const char *gp_state_getname(short gs)
{
if (gs < 0 || gs >= ARRAY_SIZE(gp_state_names))
return "???";
return gp_state_names[gs];
}
/* /*
* Complain about starvation of grace-period kthread. * Complain about starvation of grace-period kthread.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment