diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2018-01-10 12:21:40 -0800 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2018-02-20 16:10:27 -0800 |
commit | 62df63e048daf4e29373bbbaae3751e5af5d9502 (patch) | |
tree | ecb95b4ef4523d1292147acd11a9af6d13ac7a88 /kernel/rcu/tree_plugin.h | |
parent | bec06785fe2c866ccf39cafa18935d88d77d559a (diff) | |
download | blackbird-op-linux-62df63e048daf4e29373bbbaae3751e5af5d9502.tar.gz blackbird-op-linux-62df63e048daf4e29373bbbaae3751e5af5d9502.zip |
rcu: Remove obsolete callback-invocation statistics for debugfs
The debugfs interface displayed statistics on RCU callback invocation but
this interface has since been removed. This commit therefore removes the
no-longer-used rcu_data structure's ->n_cbs_invoked and ->n_nocbs_invoked
fields along with their updates.
If this information proves necessary in the future, the corresponding
event traces will be added.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcu/tree_plugin.h')
-rw-r--r-- | kernel/rcu/tree_plugin.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h index 0d552985b905..1c2d58a85511 100644 --- a/kernel/rcu/tree_plugin.h +++ b/kernel/rcu/tree_plugin.h @@ -2243,7 +2243,6 @@ static int rcu_nocb_kthread(void *arg) smp_mb__before_atomic(); /* _add after CB invocation. */ atomic_long_add(-c, &rdp->nocb_q_count); atomic_long_add(-cl, &rdp->nocb_q_count_lazy); - rdp->n_nocbs_invoked += c; } return 0; } |