From: Paul E. McKenney Date: Sun, 6 Dec 2015 01:34:10 +0000 (-0800) Subject: rcutorture: Flag nonexistent RCU GP kthread X-Git-Tag: v4.5-rc1~173^2^2~1^5~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a0e3a3aa2841d5720a277de53b6882eb8b2ef698;p=thirdparty%2Fkernel%2Flinux.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 81aa1cdc6bc99..e2315fb57b238 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); } /*