mirror of
https://github.com/armbian/linux.git
synced 2026-01-06 10:13:00 -08:00
sunrpc: fix braino in ->poll()
commit 1711fd9add upstream.
POLL_OUT isn't what callers of ->poll() are expecting to see; it's
actually __SI_POLL | 2 and it's a siginfo code, not a poll bitmap
bit...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Cc: Bruce Fields <bfields@fieldses.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
cf6c05a77c
commit
b4301ed560
@@ -930,7 +930,7 @@ static unsigned int cache_poll(struct file *filp, poll_table *wait,
|
||||
poll_wait(filp, &queue_wait, wait);
|
||||
|
||||
/* alway allow write */
|
||||
mask = POLL_OUT | POLLWRNORM;
|
||||
mask = POLLOUT | POLLWRNORM;
|
||||
|
||||
if (!rp)
|
||||
return mask;
|
||||
|
||||
Reference in New Issue
Block a user