瀏覽代碼

sunrpc: fix braino in ->poll()

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: stable@vger.kernel.org
Cc: Bruce Fields <bfields@fieldses.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Al Viro 10 年之前
父節點
當前提交
1711fd9add
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      net/sunrpc/cache.c

+ 1 - 1
net/sunrpc/cache.c

@@ -921,7 +921,7 @@ static unsigned int cache_poll(struct file *filp, poll_table *wait,
 	poll_wait(filp, &queue_wait, wait);
 	poll_wait(filp, &queue_wait, wait);
 
 
 	/* alway allow write */
 	/* alway allow write */
-	mask = POLL_OUT | POLLWRNORM;
+	mask = POLLOUT | POLLWRNORM;
 
 
 	if (!rp)
 	if (!rp)
 		return mask;
 		return mask;