From: Peter Hurley Date: Mon, 11 Jan 2016 04:36:12 +0000 (-0800) Subject: tty: Fix GPF in flush_to_ldisc(), part 2 X-Git-Tag: v4.1.12-92~150^2~96 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b770c1b61b5a61b5c392e9f9b2d8491c987980ca;p=users%2Fjedix%2Flinux-maple.git tty: Fix GPF in flush_to_ldisc(), part 2 Orabug: 23331050 [ Upstream commit f33798deecbd59a2955f40ac0ae2bc7dff54c069 ] commit 9ce119f318ba ("tty: Fix GPF in flush_to_ldisc()") fixed a GPF caused by a line discipline which does not define a receive_buf() method. However, the vt driver (and speakup driver also) pushes selection data directly to the line discipline receive_buf() method via tty_ldisc_receive_buf(). Fix the same problem in tty_ldisc_receive_buf(). Cc: Signed-off-by: Peter Hurley Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin (cherry picked from commit 3beac2b0bffd8e977ef1d464dd424f22af965a96) Signed-off-by: Dan Duval --- diff --git a/include/linux/tty.h b/include/linux/tty.h index 9580c09afdbe..5e704e26f9a2 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -592,7 +592,7 @@ static inline int tty_ldisc_receive_buf(struct tty_ldisc *ld, unsigned char *p, count = ld->ops->receive_buf2(ld->tty, p, f, count); else { count = min_t(int, count, ld->tty->receive_room); - if (count) + if (count && ld->ops->receive_buf) ld->ops->receive_buf(ld->tty, p, f, count); } return count;