diff options
| author | Jacob Keller <[email protected]> | 2013-04-02 20:55:40 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2013-04-02 20:59:16 +0000 |
| commit | 8facd5fb73c6e960555e5913743dfbb6c3d984a5 (patch) | |
| tree | 2d15a5e9bcf859b437171d17aa8996048bfee634 /net/unix/af_unix.c | |
| parent | net/nxp/lpc_eth: Drop ifdef CONFIG_OF_NET (diff) | |
| download | kernel-8facd5fb73c6e960555e5913743dfbb6c3d984a5.tar.gz kernel-8facd5fb73c6e960555e5913743dfbb6c3d984a5.zip | |
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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/unix/af_unix.c')
| -rw-r--r-- | net/unix/af_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index fb7a63ff71a5..2e4d90044a52 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -2197,7 +2197,7 @@ static unsigned int unix_dgram_poll(struct file *file, struct socket *sock, /* exceptional events? */ if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue)) mask |= POLLERR | - sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0; + (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0); if (sk->sk_shutdown & RCV_SHUTDOWN) mask |= POLLRDHUP | POLLIN | POLLRDNORM; |
