Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29d39390 authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

torture: Save a line in stutter_wait(): while -> for

parent a2f2577d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -576,7 +576,7 @@ void stutter_wait(const char *title)

	cond_resched_rcu_qs();
	spt = READ_ONCE(stutter_pause_test);
	while (spt) {
	for (; spt; spt = READ_ONCE(stutter_pause_test)) {
		if (spt == 1) {
			schedule_timeout_interruptible(1);
		} else if (spt == 2) {
@@ -586,7 +586,6 @@ void stutter_wait(const char *title)
			schedule_timeout_interruptible(round_jiffies_relative(HZ));
		}
		torture_shutdown_absorb(title);
		spt = READ_ONCE(stutter_pause_test);
	}
}
EXPORT_SYMBOL_GPL(stutter_wait);