From: Al Viro Date: Sat, 7 Mar 2015 21:08:46 +0000 (+0000) Subject: sunrpc: fix braino in ->poll() X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=b4301ed560bcb78eae05bfbe76e516bb549861b3;p=linux-edison.git sunrpc: fix braino in ->poll() commit 1711fd9addf214823b993468567cab1f8254fc51 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 Cc: Bruce Fields Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c index 80fe5c86efd..231b71944c5 100644 --- a/net/sunrpc/cache.c +++ b/net/sunrpc/cache.c @@ -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;