aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rcutree.c
diff options
context:
space:
mode:
authorPaul E. McKenney <paul.mckenney@linaro.org>2012-05-09 11:45:12 -0400
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>2012-07-02 15:34:21 -0400
commit285fe29481d865ae381ad3924c80894e6968c2d8 (patch)
treee01e809f4c840770698f857e8176ebb083ff9ad8 /kernel/rcutree.c
parentcba6d0d64ee53772b285d0c0c288deefbeaf7775 (diff)
rcu: Fix detection of abruptly-ending stall
The code that attempts to identify stalls that end just as we detect them is broken by both flavors of initialization failure. This commit therefore properly initializes and computes the count of the number of reasons why the RCU grace period is stalled. Signed-off-by: Paul E. McKenney <paul.mckenney@linaro.org> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'kernel/rcutree.c')
-rw-r--r--kernel/rcutree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rcutree.c b/kernel/rcutree.c
index 4b97bba7396e..dc8c5284fe06 100644
--- a/kernel/rcutree.c
+++ b/kernel/rcutree.c
@@ -733,7 +733,7 @@ static void print_other_cpu_stall(struct rcu_state *rsp)
733 int cpu; 733 int cpu;
734 long delta; 734 long delta;
735 unsigned long flags; 735 unsigned long flags;
736 int ndetected; 736 int ndetected = 0;
737 struct rcu_node *rnp = rcu_get_root(rsp); 737 struct rcu_node *rnp = rcu_get_root(rsp);
738 738
739 /* Only let one CPU complain about others per time interval. */ 739 /* Only let one CPU complain about others per time interval. */
@@ -774,7 +774,7 @@ static void print_other_cpu_stall(struct rcu_state *rsp)
774 */ 774 */
775 rnp = rcu_get_root(rsp); 775 rnp = rcu_get_root(rsp);
776 raw_spin_lock_irqsave(&rnp->lock, flags); 776 raw_spin_lock_irqsave(&rnp->lock, flags);
777 ndetected = rcu_print_task_stall(rnp); 777 ndetected += rcu_print_task_stall(rnp);
778 raw_spin_unlock_irqrestore(&rnp->lock, flags); 778 raw_spin_unlock_irqrestore(&rnp->lock, flags);
779 779
780 print_cpu_stall_info_end(); 780 print_cpu_stall_info_end();