rcu: Force quiescent states only for ongoing grace period
authorZqiang <qiang.zhang1211@gmail.com>
Wed, 1 Nov 2023 03:35:07 +0000 (11:35 +0800)
committerNeeraj Upadhyay (AMD) <neeraj.iitr10@gmail.com>
Wed, 13 Dec 2023 19:49:02 +0000 (01:19 +0530)
If an rcutorture test scenario creates an fqs_task kthread, it will
periodically invoke rcu_force_quiescent_state() in order to start
force-quiescent-state (FQS) operations.  However, an FQS operation
will be started even if there is no RCU grace period in progress.
Although testing FQS operations startup when there is no grace period in
progress is necessary, it need not happen all that often.  This commit
therefore causes rcu_force_quiescent_state() to take an early exit
if there is no grace period in progress.

Note that there will still be attempts to start an FQS scan in the
absence of a grace period because the grace period might end right
after the rcu_force_quiescent_state() function's check.  In actual
testing, this happens about once every ten minutes, which should
provide adequate testing.

Signed-off-by: Zqiang <qiang.zhang1211@gmail.com>
Reviewed-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Neeraj Upadhyay (AMD) <neeraj.iitr10@gmail.com>
kernel/rcu/tree.c

index 3ac3c846105fb4c059a001ae3cf52a3c7747aac5..1ae8517778066284be5c7c15111b09a0f726f164 100644 (file)
@@ -2338,6 +2338,8 @@ void rcu_force_quiescent_state(void)
        struct rcu_node *rnp;
        struct rcu_node *rnp_old = NULL;
 
+       if (!rcu_gp_in_progress())
+               return;
        /* Funnel through hierarchy to reduce memory contention. */
        rnp = raw_cpu_read(rcu_data.mynode);
        for (; rnp != NULL; rnp = rnp->parent) {