projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18ef43d
)
vt: invoke notifier on screen size change
author
Nicolas Pitre
<nicolas.pitre@linaro.org>
Wed, 9 Jan 2019 03:55:01 +0000
(22:55 -0500)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Thu, 31 Jan 2019 07:14:40 +0000
(08:14 +0100)
commit
0c9b1965faddad7534b6974b5b36c4ad37998f8e
upstream.
User space using poll() on /dev/vcs devices are not awaken when a
screen size change occurs. Let's fix that.
Signed-off-by: Nicolas Pitre <nico@linaro.org>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/vt/vt.c
patch
|
blob
|
history
diff --git
a/drivers/tty/vt/vt.c
b/drivers/tty/vt/vt.c
index 41ad46bf22c5121dadafa6e5d7fabfcc274cb3ca..da335899527b4356b4c92305b809c9aebcd88640 100644
(file)
--- a/
drivers/tty/vt/vt.c
+++ b/
drivers/tty/vt/vt.c
@@
-1275,6
+1275,7
@@
static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc,
if (con_is_visible(vc))
update_screen(vc);
vt_event_post(VT_EVENT_RESIZE, vc->vc_num, vc->vc_num);
+ notify_update(vc);
return err;
}