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.h | |
parent | bec06785fe2c866ccf39cafa18935d88d77d559a (diff) |
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.h')
-rw-r--r-- | kernel/rcu/tree.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/rcu/tree.h b/kernel/rcu/tree.h index 01abd1c4e5da..b258fac73524 100644 --- a/kernel/rcu/tree.h +++ b/kernel/rcu/tree.h @@ -211,8 +211,6 @@ struct rcu_data { /* different grace periods. */ long qlen_last_fqs_check; /* qlen at last check for QS forcing */ - unsigned long n_cbs_invoked; /* count of RCU cbs invoked. */ - unsigned long n_nocbs_invoked; /* count of no-CBs RCU cbs invoked. */ unsigned long n_force_qs_snap; /* did other CPU force QS recently? */ long blimit; /* Upper limit on a processed batch */ |