From: Paul E. McKenney Date: Mon, 15 May 2017 00:06:30 +0000 (-0700) Subject: srcu: Fix rcutorture-statistics typo X-Git-Tag: v4.13-rc1~209^2^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7f0cd6333086ae09962791c31f0d4845a3329df9;p=platform%2Fkernel%2Flinux-exynos.git srcu: Fix rcutorture-statistics typo The function srcutorture_get_gp_data() duplicated the check for sp->batch_check0.head instead of also checking sp->batch_check1.head. The only effect of this typo would be for rcutorture statistics to understate the fraction of time that an SRCU grace period was in flight, and only for Classic SRCU. This commit fixes this typo. Reported-by: David Binderman Signed-off-by: Paul E. McKenney --- diff --git a/kernel/rcu/rcu.h b/kernel/rcu/rcu.h index bc55b57..27f871c 100644 --- a/kernel/rcu/rcu.h +++ b/kernel/rcu/rcu.h @@ -469,7 +469,7 @@ static inline void srcutorture_get_gp_data(enum rcutorture_type test_type, *flags = 0; *completed = sp->completed; *gpnum = *completed; - if (sp->batch_queue.head || sp->batch_check0.head || sp->batch_check0.head) + if (sp->batch_queue.head || sp->batch_check0.head || sp->batch_check1.head) (*gpnum)++; }