aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rcu
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>2018-01-10 15:21:40 -0500
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>2018-02-20 19:10:27 -0500
commit62df63e048daf4e29373bbbaae3751e5af5d9502 (patch)
treeecb95b4ef4523d1292147acd11a9af6d13ac7a88 /kernel/rcu
parentbec06785fe2c866ccf39cafa18935d88d77d559a (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')
-rw-r--r--kernel/rcu/tree.c1
-rw-r--r--kernel/rcu/tree.h2
-rw-r--r--kernel/rcu/tree_plugin.h1
3 files changed, 0 insertions, 4 deletions
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
index 66c73a214cff..8e0711954bbf 100644
--- a/kernel/rcu/tree.c
+++ b/kernel/rcu/tree.c
@@ -2691,7 +2691,6 @@ static void rcu_do_batch(struct rcu_state *rsp, struct rcu_data *rdp)
2691 /* Update counts and requeue any remaining callbacks. */ 2691 /* Update counts and requeue any remaining callbacks. */
2692 rcu_segcblist_insert_done_cbs(&rdp->cblist, &rcl); 2692 rcu_segcblist_insert_done_cbs(&rdp->cblist, &rcl);
2693 smp_mb(); /* List handling before counting for rcu_barrier(). */ 2693 smp_mb(); /* List handling before counting for rcu_barrier(). */
2694 rdp->n_cbs_invoked += count;
2695 rcu_segcblist_insert_count(&rdp->cblist, &rcl); 2694 rcu_segcblist_insert_count(&rdp->cblist, &rcl);
2696 2695
2697 /* Reinstate batch limit if we have worked down the excess. */ 2696 /* Reinstate batch limit if we have worked down the excess. */
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 {
211 /* different grace periods. */ 211 /* different grace periods. */
212 long qlen_last_fqs_check; 212 long qlen_last_fqs_check;
213 /* qlen at last check for QS forcing */ 213 /* qlen at last check for QS forcing */
214 unsigned long n_cbs_invoked; /* count of RCU cbs invoked. */
215 unsigned long n_nocbs_invoked; /* count of no-CBs RCU cbs invoked. */
216 unsigned long n_force_qs_snap; 214 unsigned long n_force_qs_snap;
217 /* did other CPU force QS recently? */ 215 /* did other CPU force QS recently? */
218 long blimit; /* Upper limit on a processed batch */ 216 long blimit; /* Upper limit on a processed batch */
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)
2243 smp_mb__before_atomic(); /* _add after CB invocation. */ 2243 smp_mb__before_atomic(); /* _add after CB invocation. */
2244 atomic_long_add(-c, &rdp->nocb_q_count); 2244 atomic_long_add(-c, &rdp->nocb_q_count);
2245 atomic_long_add(-cl, &rdp->nocb_q_count_lazy); 2245 atomic_long_add(-cl, &rdp->nocb_q_count_lazy);
2246 rdp->n_nocbs_invoked += c;
2247 } 2246 }
2248 return 0; 2247 return 0;
2249} 2248}