rcu: Make rcu_blocking_is_gp() stop early-boot might_sleep()
authorZqiang <qiang1.zhang@intel.com>
Thu, 15 Dec 2022 03:57:55 +0000 (11:57 +0800)
committerPaul E. McKenney <paulmck@kernel.org>
Wed, 4 Jan 2023 01:28:34 +0000 (17:28 -0800)
commit3d1adf7ada352b80e037509d26cdca156f75e830
tree015b1388da4ad7022a285454156239546f1d25f8
parent2d7f00b2f01301d6e41fd4a28030dab0442265be
rcu: Make rcu_blocking_is_gp() stop early-boot might_sleep()

Currently, rcu_blocking_is_gp() invokes might_sleep() even during early
boot when interrupts are disabled and before the scheduler is scheduling.
This is at best an accident waiting to happen.  Therefore, this commit
moves that might_sleep() under an rcu_scheduler_active check in order
to ensure that might_sleep() is not invoked unless sleeping might actually
happen.

Signed-off-by: Zqiang <qiang1.zhang@intel.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
kernel/rcu/tree.c