]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
rcu: Fix CPU offload boot message when no CPUs are offloaded
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Mon, 4 Dec 2017 17:48:59 +0000 (09:48 -0800)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Wed, 21 Feb 2018 00:10:19 +0000 (16:10 -0800)
In CONFIG_RCU_NOCB_CPU=y kernels, if the boot parameters indicate that
none of the CPUs should in fact be offloaded, the following somewhat
obtuse message appears:

Offload RCU callbacks from CPUs: .

This commit therefore makes the message at least grammatically correct
in this case:

Offload RCU callbacks from CPUs: (none)

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
kernel/rcu/tree_plugin.h

index fb88a028deecd18fbba5afb110272f586aad762a..93f5649ffd2bcdb3e95e2f27a5adff3c6b05184a 100644 (file)
@@ -2312,8 +2312,11 @@ void __init rcu_init_nohz(void)
                cpumask_and(rcu_nocb_mask, cpu_possible_mask,
                            rcu_nocb_mask);
        }
-       pr_info("\tOffload RCU callbacks from CPUs: %*pbl.\n",
-               cpumask_pr_args(rcu_nocb_mask));
+       if (cpumask_empty(rcu_nocb_mask))
+               pr_info("\tOffload RCU callbacks from CPUs: (none).\n");
+       else
+               pr_info("\tOffload RCU callbacks from CPUs: %*pbl.\n",
+                       cpumask_pr_args(rcu_nocb_mask));
        if (rcu_nocb_poll)
                pr_info("\tPoll for callbacks from no-CBs CPUs.\n");