diff options
author | Jacob Keller <jacob.e.keller@intel.com> | 2013-04-02 16:55:40 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-02 16:59:16 -0400 |
commit | 8facd5fb73c6e960555e5913743dfbb6c3d984a5 (patch) | |
tree | 2d15a5e9bcf859b437171d17aa8996048bfee634 /net/nfc/llcp/sock.c | |
parent | be0e2f1f7d2fb6c49ea29a4f8274b36537c34dba (diff) |
net: fix smatch warnings inside datagram_poll
Commit 7d4c04fc170087119727119074e72445f2bb192b ("net: add option to enable
error queue packets waking select") has an issue due to operator precedence
causing the bit-wise OR to bind to the sock_flags call instead of the result of
the terniary conditional. This fixes the *_poll functions to work properly. The
old code results in "mask |= POLLPRI" instead of what was intended, which is to
only include POLLPRI when the socket option is enabled.
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/nfc/llcp/sock.c')
-rw-r--r-- | net/nfc/llcp/sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nfc/llcp/sock.c b/net/nfc/llcp/sock.c index 2d55e8a45958..6b3254452b36 100644 --- a/net/nfc/llcp/sock.c +++ b/net/nfc/llcp/sock.c | |||
@@ -522,7 +522,7 @@ static unsigned int llcp_sock_poll(struct file *file, struct socket *sock, | |||
522 | 522 | ||
523 | if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue)) | 523 | if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue)) |
524 | mask |= POLLERR | | 524 | mask |= POLLERR | |
525 | sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0; | 525 | (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0); |
526 | 526 | ||
527 | if (!skb_queue_empty(&sk->sk_receive_queue)) | 527 | if (!skb_queue_empty(&sk->sk_receive_queue)) |
528 | mask |= POLLIN | POLLRDNORM; | 528 | mask |= POLLIN | POLLRDNORM; |