diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2018-07-03 17:22:34 -0700 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2018-08-30 16:03:09 -0700 |
commit | a2887cd85f38cf2fdbf42bad97e5c412d99ff5ca (patch) | |
tree | 44d44b21e2c7981aa80f915cea41537359a11311 /kernel/rcu/tree.c | |
parent | b8bb1f63cf9ac43fc3015449843fe1f81c1b31a6 (diff) | |
download | lwn-a2887cd85f38cf2fdbf42bad97e5c412d99ff5ca.tar.gz lwn-a2887cd85f38cf2fdbf42bad97e5c412d99ff5ca.zip |
rcu: Remove rsp parameter from rcu_print_detail_task_stall()
There now is only one rcu_state structure in a given build of the
Linux kernel, so there is no need to pass it as a parameter to RCU's
functions. This commit therefore removes the rsp parameter from
rcu_print_detail_task_stall().
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcu/tree.c')
-rw-r--r-- | kernel/rcu/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c index 0b274530e8a8..130ce5eebdfa 100644 --- a/kernel/rcu/tree.c +++ b/kernel/rcu/tree.c @@ -1360,7 +1360,7 @@ static void print_other_cpu_stall(unsigned long gp_seq) rcu_dump_cpu_stacks(); /* Complain about tasks blocking the grace period. */ - rcu_print_detail_task_stall(rsp); + rcu_print_detail_task_stall(); } else { if (rcu_seq_current(&rsp->gp_seq) != gp_seq) { pr_err("INFO: Stall ended before state dump start\n"); |