tty: use the new 'flush_delayed_work()' helper to do ldisc flush
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 14 Oct 2009 16:20:41 +0000 (09:20 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 14 Oct 2009 16:20:41 +0000 (09:20 -0700)
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: Linus Torvalds <torvalds@linux-foundation.org>
drivers/char/tty_buffer.c

index 0296612..66fa4e1 100644 (file)
@@ -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);
 }
 
 /**