rcutorture: Use hrtimers for reader and writer delays
authorPaul E. McKenney <paulmck@kernel.org>
Tue, 17 Nov 2020 22:12:24 +0000 (14:12 -0800)
committerPaul E. McKenney <paulmck@kernel.org>
Thu, 7 Jan 2021 01:17:20 +0000 (17:17 -0800)
This commit replaces schedule_timeout_uninterruptible() and
schedule_timeout_interruptible() with torture_hrtimeout_us() and
torture_hrtimeout_jiffies() to avoid timer-wheel synchronization.

Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
kernel/rcu/rcutorture.c

index 9414e3027a040d45baab88653068083453c962dd..007595d4783f954ad4720ef19bd7793d6fab6d3f 100644 (file)
@@ -1149,7 +1149,7 @@ rcu_torture_writer(void *arg)
 
        do {
                rcu_torture_writer_state = RTWS_FIXED_DELAY;
-               schedule_timeout_uninterruptible(1);
+               torture_hrtimeout_us(500, 1000, &rand);
                rp = rcu_torture_alloc();
                if (rp == NULL)
                        continue;
@@ -1290,8 +1290,7 @@ rcu_torture_fakewriter(void *arg)
        set_user_nice(current, MAX_NICE);
 
        do {
-               schedule_timeout_uninterruptible(1 + torture_random(&rand)%10);
-               udelay(torture_random(&rand) & 0x3ff);
+               torture_hrtimeout_jiffies(torture_random(&rand) % 10, &rand);
                if (cur_ops->cb_barrier != NULL &&
                    torture_random(&rand) % (nfakewriters * 8) == 0) {
                        cur_ops->cb_barrier();
@@ -1656,7 +1655,7 @@ rcu_torture_reader(void *arg)
                if (!rcu_torture_one_read(&rand, myid) && !torture_must_stop())
                        schedule_timeout_interruptible(HZ);
                if (time_after(jiffies, lastsleep) && !torture_must_stop()) {
-                       schedule_timeout_interruptible(1);
+                       torture_hrtimeout_us(500, 1000, &rand);
                        lastsleep = jiffies + 10;
                }
                while (num_online_cpus() < mynumonline && !torture_must_stop())