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

Commit 4b266e5f authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Greg Kroah-Hartman
Browse files

staging: gdm72xx: fix interruptible_sleep_on race



interruptible_sleep_on is racy and going away. This replaces the
use in the gdm72xx driver with the appropriate
wait_event_interruptible_lock_irq.

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: devel@driverdev.osuosl.org
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d6f52500
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -780,9 +780,10 @@ static int k_mode_thread(void *arg)

			spin_lock_irqsave(&k_lock, flags2);
		}
		wait_event_interruptible_lock_irq(k_wait,
						  !list_empty(&k_list) || k_mode_stop,
						  k_lock);
		spin_unlock_irqrestore(&k_lock, flags2);

		interruptible_sleep_on(&k_wait);
	}
	return 0;
}