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

Commit 514fc01d authored by Linus Torvalds's avatar Linus Torvalds
Browse files

tty: use the new 'flush_delayed_work()' helper to do ldisc flush



This way all flush_to_ldisc work is always done through the workqueues,
and we thus have a single point of serialization.

Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 43046b60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -468,7 +468,7 @@ static void flush_to_ldisc(struct work_struct *work)
 */
void tty_flush_to_ldisc(struct tty_struct *tty)
{
	flush_to_ldisc(&tty->buf.work.work);
	flush_delayed_work(&tty->buf.work);
}

/**