From: Paul E. McKenney Date: Sun, 6 Dec 2015 01:34:10 +0000 (-0800) Subject: rcutorture: Flag nonexistent RCU GP kthread X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a0e3a3aa2841d5720a277de53b6882eb8b2ef698;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git rcutorture: Flag nonexistent RCU GP kthread Currently, if the RCU grace-period kthread has not yet been created, in which case the starvation-check code will print zero for the state, which maps to TASK_RUNNING. This could clearly be quite confusing, so this commit prints ~0, which does not map to any legal ->state value. Signed-off-by: Paul E. McKenney Reviewed-by: Josh Triplett --- diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c index 81aa1cdc6bc9..e2315fb57b23 100644 --- a/kernel/rcu/tree.c +++ b/kernel/rcu/tree.c @@ -1201,7 +1201,7 @@ static void rcu_check_gp_kthread_starvation(struct rcu_state *rsp) rsp->name, j - gpa, rsp->gpnum, rsp->completed, rsp->gp_flags, rsp->gp_state, - rsp->gp_kthread ? rsp->gp_kthread->state : 0); + rsp->gp_kthread ? rsp->gp_kthread->state : ~0); } /*