From: Stanislav Kozina Date: Thu, 16 Aug 2012 11:01:47 +0000 (+0100) Subject: Remove BUG_ON from n_tty_read() X-Git-Tag: v2.6.39-400.9.0~236^2~16 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f8e6bd1ad99b480770e74d87834408db826a7747;p=users%2Fjedix%2Flinux-maple.git Remove BUG_ON from n_tty_read() commit e9490e93c1978b6669f3e993caa3189be13ce459 upstream. Change the BUG_ON to WARN_ON and return in case of tty->read_buf==NULL. We want to track a couple of long standing reports of this but at the same time we can avoid killing the box. Signed-off-by: Stanislav Kozina Signed-off-by: Alan Cox Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c index c3954fbf6ac4..d7164bfe8225 100644 --- a/drivers/tty/n_tty.c +++ b/drivers/tty/n_tty.c @@ -1728,7 +1728,8 @@ static ssize_t n_tty_read(struct tty_struct *tty, struct file *file, do_it_again: - BUG_ON(!tty->read_buf); + if (WARN_ON(!tty->read_buf)) + return -EAGAIN; c = job_control(tty, file); if (c < 0)