|
@@ -74,8 +74,8 @@ static void __init rcu_bootup_announce_oddness(void)
|
|
pr_info("\tRCU event tracing is enabled.\n");
|
|
pr_info("\tRCU event tracing is enabled.\n");
|
|
if ((IS_ENABLED(CONFIG_64BIT) && RCU_FANOUT != 64) ||
|
|
if ((IS_ENABLED(CONFIG_64BIT) && RCU_FANOUT != 64) ||
|
|
(!IS_ENABLED(CONFIG_64BIT) && RCU_FANOUT != 32))
|
|
(!IS_ENABLED(CONFIG_64BIT) && RCU_FANOUT != 32))
|
|
- pr_info("\tCONFIG_RCU_FANOUT set to non-default value of %d\n",
|
|
|
|
- RCU_FANOUT);
|
|
|
|
|
|
+ pr_info("\tCONFIG_RCU_FANOUT set to non-default value of %d.\n",
|
|
|
|
+ RCU_FANOUT);
|
|
if (rcu_fanout_exact)
|
|
if (rcu_fanout_exact)
|
|
pr_info("\tHierarchical RCU autobalancing is disabled.\n");
|
|
pr_info("\tHierarchical RCU autobalancing is disabled.\n");
|
|
if (IS_ENABLED(CONFIG_RCU_FAST_NO_HZ))
|
|
if (IS_ENABLED(CONFIG_RCU_FAST_NO_HZ))
|
|
@@ -88,11 +88,13 @@ static void __init rcu_bootup_announce_oddness(void)
|
|
pr_info("\tBuild-time adjustment of leaf fanout to %d.\n",
|
|
pr_info("\tBuild-time adjustment of leaf fanout to %d.\n",
|
|
RCU_FANOUT_LEAF);
|
|
RCU_FANOUT_LEAF);
|
|
if (rcu_fanout_leaf != RCU_FANOUT_LEAF)
|
|
if (rcu_fanout_leaf != RCU_FANOUT_LEAF)
|
|
- pr_info("\tBoot-time adjustment of leaf fanout to %d.\n", rcu_fanout_leaf);
|
|
|
|
|
|
+ pr_info("\tBoot-time adjustment of leaf fanout to %d.\n",
|
|
|
|
+ rcu_fanout_leaf);
|
|
if (nr_cpu_ids != NR_CPUS)
|
|
if (nr_cpu_ids != NR_CPUS)
|
|
pr_info("\tRCU restricting CPUs from NR_CPUS=%d to nr_cpu_ids=%u.\n", NR_CPUS, nr_cpu_ids);
|
|
pr_info("\tRCU restricting CPUs from NR_CPUS=%d to nr_cpu_ids=%u.\n", NR_CPUS, nr_cpu_ids);
|
|
#ifdef CONFIG_RCU_BOOST
|
|
#ifdef CONFIG_RCU_BOOST
|
|
- pr_info("\tRCU priority boosting: priority %d delay %d ms.\n", kthread_prio, CONFIG_RCU_BOOST_DELAY);
|
|
|
|
|
|
+ pr_info("\tRCU priority boosting: priority %d delay %d ms.\n",
|
|
|
|
+ kthread_prio, CONFIG_RCU_BOOST_DELAY);
|
|
#endif
|
|
#endif
|
|
if (blimit != DEFAULT_RCU_BLIMIT)
|
|
if (blimit != DEFAULT_RCU_BLIMIT)
|
|
pr_info("\tBoot-time adjustment of callback invocation limit to %ld.\n", blimit);
|
|
pr_info("\tBoot-time adjustment of callback invocation limit to %ld.\n", blimit);
|