summaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorEric Dumazet2010-09-06 13:13:50 +0200
committerDavid S. Miller2010-09-07 03:48:45 +0200
commitdb40980fcdb560d7992b0511df16cdd3f7e381f3 (patch)
tree337b5c41bd55915a4b894ea6fe09a865e7dcb0e4 /net/bluetooth
parentmlx4_en: Fixed Ethtool statistics report (diff)
downloadkernel-qcow2-linux-db40980fcdb560d7992b0511df16cdd3f7e381f3.tar.gz
kernel-qcow2-linux-db40980fcdb560d7992b0511df16cdd3f7e381f3.tar.xz
kernel-qcow2-linux-db40980fcdb560d7992b0511df16cdd3f7e381f3.zip
net: poll() optimizations
No need to test twice sk->sk_shutdown & RCV_SHUTDOWN Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/af_bluetooth.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c
index 421c45bd1b95..ed0f22f57668 100644
--- a/net/bluetooth/af_bluetooth.c
+++ b/net/bluetooth/af_bluetooth.c
@@ -297,13 +297,12 @@ unsigned int bt_sock_poll(struct file * file, struct socket *sock, poll_table *w
mask |= POLLERR;
if (sk->sk_shutdown & RCV_SHUTDOWN)
- mask |= POLLRDHUP;
+ mask |= POLLRDHUP | POLLIN | POLLRDNORM;
if (sk->sk_shutdown == SHUTDOWN_MASK)
mask |= POLLHUP;
- if (!skb_queue_empty(&sk->sk_receive_queue) ||
- (sk->sk_shutdown & RCV_SHUTDOWN))
+ if (!skb_queue_empty(&sk->sk_receive_queue))
mask |= POLLIN | POLLRDNORM;
if (sk->sk_state == BT_CLOSED)