rcu: Print per-CPU callback counts for forward-progress failures
authorPaul E. McKenney <paulmck@linux.ibm.com>
Wed, 3 Oct 2018 00:09:56 +0000 (17:09 -0700)
committerPaul E. McKenney <paulmck@linux.ibm.com>
Sat, 1 Dec 2018 20:45:38 +0000 (12:45 -0800)
This commit prints out the non-zero per-CPU callback counts when a
forware-progress error (OOM event) occurs.

Signed-off-by: Paul E. McKenney <paulmck@linux.ibm.com>
[ paulmck: Fix a pair of uninitialized locals spotted by kbuild test robot. ]

kernel/rcu/tree.c

index 0933d865089068c733e5f2123a2685c26f4b39ae..90a67c75a447bab2c6f012a0be4e347b405584ed 100644 (file)
@@ -2675,6 +2675,10 @@ rcu_check_gp_start_stall(struct rcu_node *rnp, struct rcu_data *rdp,
  */
 void rcu_fwd_progress_check(unsigned long j)
 {
+       unsigned long cbs;
+       int cpu;
+       unsigned long max_cbs = 0;
+       int max_cpu = -1;
        struct rcu_data *rdp;
 
        if (rcu_gp_in_progress()) {
@@ -2685,6 +2689,20 @@ void rcu_fwd_progress_check(unsigned long j)
                rcu_check_gp_start_stall(rdp->mynode, rdp, j);
                preempt_enable();
        }
+       for_each_possible_cpu(cpu) {
+               cbs = rcu_get_n_cbs_cpu(cpu);
+               if (!cbs)
+                       continue;
+               if (max_cpu < 0)
+                       pr_info("%s: callbacks", __func__);
+               pr_cont(" %d: %lu", cpu, cbs);
+               if (cbs <= max_cbs)
+                       continue;
+               max_cbs = cbs;
+               max_cpu = cpu;
+       }
+       if (max_cpu >= 0)
+               pr_cont("\n");
 }
 EXPORT_SYMBOL_GPL(rcu_fwd_progress_check);