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

Commit 579a00a5 authored by Peter Hurley's avatar Peter Hurley Committed by Greg Kroah-Hartman
Browse files

tty: Fix unsafe bit ops in tty_throttle_safe/unthrottle_safe



tty->flags needs to be atomically modified.

Signed-off-by: default avatarPeter Hurley <peter@hurleysoftware.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 31815c08
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -156,7 +156,7 @@ int tty_throttle_safe(struct tty_struct *tty)
		if (tty->flow_change != TTY_THROTTLE_SAFE)
			ret = 1;
		else {
			__set_bit(TTY_THROTTLED, &tty->flags);
			set_bit(TTY_THROTTLED, &tty->flags);
			if (tty->ops->throttle)
				tty->ops->throttle(tty);
		}
@@ -187,7 +187,7 @@ int tty_unthrottle_safe(struct tty_struct *tty)
		if (tty->flow_change != TTY_UNTHROTTLE_SAFE)
			ret = 1;
		else {
			__clear_bit(TTY_THROTTLED, &tty->flags);
			clear_bit(TTY_THROTTLED, &tty->flags);
			if (tty->ops->unthrottle)
				tty->ops->unthrottle(tty);
		}