projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f3b61d
)
HID: uhid: Fix returning EPOLLOUT from uhid_char_poll
author
Marcel Holtmann
<marcel@holtmann.org>
Wed, 4 Dec 2019 02:43:55 +0000
(
03:43
+0100)
committer
Jiri Kosina
<jkosina@suse.cz>
Mon, 9 Dec 2019 12:53:37 +0000
(13:53 +0100)
Always return EPOLLOUT from uhid_char_poll to allow polling /dev/uhid
for writable state.
Fixes:
1f9dec1e0164
("HID: uhid: allow poll()'ing on uhid devices")
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Cc: stable@vger.kernel.org
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/uhid.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/hid/uhid.c
b/drivers/hid/uhid.c
index fa0cc089982739e9d70da131c7b6235571f0acfa..935c3d0a3b636f63483d88899d0e2012df64126b 100644
(file)
--- a/
drivers/hid/uhid.c
+++ b/
drivers/hid/uhid.c
@@
-772,7
+772,7
@@
static __poll_t uhid_char_poll(struct file *file, poll_table *wait)
if (uhid->head != uhid->tail)
return EPOLLIN | EPOLLRDNORM;
- return
0
;
+ return
EPOLLOUT | EPOLLWRNORM
;
}
static const struct file_operations uhid_fops = {