*/
 static void rcu_gp_fqs(bool first_time)
 {
+       int nr_fqs = READ_ONCE(rcu_state.nr_fqs_jiffies_stall);
        struct rcu_node *rnp = rcu_get_root();
 
        WRITE_ONCE(rcu_state.gp_activity, jiffies);
        WRITE_ONCE(rcu_state.n_force_qs, rcu_state.n_force_qs + 1);
+
+       WARN_ON_ONCE(nr_fqs > 3);
+       /* Only countdown nr_fqs for stall purposes if jiffies moves. */
+       if (nr_fqs) {
+               if (nr_fqs == 1) {
+                       WRITE_ONCE(rcu_state.jiffies_stall,
+                                  jiffies + rcu_jiffies_till_stall_check());
+               }
+               WRITE_ONCE(rcu_state.nr_fqs_jiffies_stall, --nr_fqs);
+       }
+
        if (first_time) {
                /* Collect dyntick-idle snapshots. */
                force_qs_rnp(dyntick_save_progress_counter);
 
                                                /*  in jiffies. */
        unsigned long jiffies_stall;            /* Time at which to check */
                                                /*  for CPU stalls. */
+       int nr_fqs_jiffies_stall;               /* Number of fqs loops after
+                                                * which read jiffies and set
+                                                * jiffies_stall. Stall
+                                                * warnings disabled if !0. */
        unsigned long jiffies_resched;          /* Time at which to resched */
                                                /*  a reluctant CPU. */
        unsigned long n_force_qs_gpstart;       /* Snapshot of n_force_qs at */
 
 /**
  * rcu_cpu_stall_reset - restart stall-warning timeout for current grace period
  *
+ * To perform the reset request from the caller, disable stall detection until
+ * 3 fqs loops have passed. This is required to ensure a fresh jiffies is
+ * loaded.  It should be safe to do from the fqs loop as enough timer
+ * interrupts and context switches should have passed.
+ *
  * The caller must disable hard irqs.
  */
 void rcu_cpu_stall_reset(void)
 {
-       WRITE_ONCE(rcu_state.jiffies_stall,
-                  jiffies + rcu_jiffies_till_stall_check());
+       WRITE_ONCE(rcu_state.nr_fqs_jiffies_stall, 3);
+       WRITE_ONCE(rcu_state.jiffies_stall, ULONG_MAX);
 }
 
 //////////////////////////////////////////////////////////////////////////////
        WRITE_ONCE(rcu_state.gp_start, j);
        j1 = rcu_jiffies_till_stall_check();
        smp_mb(); // ->gp_start before ->jiffies_stall and caller's ->gp_seq.
+       WRITE_ONCE(rcu_state.nr_fqs_jiffies_stall, 0);
        WRITE_ONCE(rcu_state.jiffies_stall, j + j1);
        rcu_state.jiffies_resched = j + j1 / 2;
        rcu_state.n_force_qs_gpstart = READ_ONCE(rcu_state.n_force_qs);
            !rcu_gp_in_progress())
                return;
        rcu_stall_kick_kthreads();
+
+       /*
+        * Check if it was requested (via rcu_cpu_stall_reset()) that the FQS
+        * loop has to set jiffies to ensure a non-stale jiffies value. This
+        * is required to have good jiffies value after coming out of long
+        * breaks of jiffies updates. Not doing so can cause false positives.
+        */
+       if (READ_ONCE(rcu_state.nr_fqs_jiffies_stall) > 0)
+               return;
+
        j = jiffies;
 
        /*