diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2016-01-10 20:36:12 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-04-12 07:33:28 -0700 |
commit | 7c31e4139ac01696ca51b15f578d8c24f1a4be87 (patch) | |
tree | 8231df389cbbeb2cbd13182bbac855a6dcba4d71 /include/linux | |
parent | f7bf3f5f62ad05b12e99bec62237d4b0ee4e1fd6 (diff) | |
download | lwn-7c31e4139ac01696ca51b15f578d8c24f1a4be87.tar.gz lwn-7c31e4139ac01696ca51b15f578d8c24f1a4be87.zip |
tty: Fix GPF in flush_to_ldisc(), part 2
commit f33798deecbd59a2955f40ac0ae2bc7dff54c069 upstream.
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().
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/tty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index d9fb4b043f56..19199c26783f 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -589,7 +589,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; |