diff options
Diffstat (limited to 'net/bluetooth/af_bluetooth.c')
-rw-r--r-- | net/bluetooth/af_bluetooth.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c index fb031fe9be9e..469eda0f0dfd 100644 --- a/net/bluetooth/af_bluetooth.c +++ b/net/bluetooth/af_bluetooth.c | |||
@@ -238,6 +238,9 @@ unsigned int bt_sock_poll(struct file * file, struct socket *sock, poll_table *w | |||
238 | if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue)) | 238 | if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue)) |
239 | mask |= POLLERR; | 239 | mask |= POLLERR; |
240 | 240 | ||
241 | if (sk->sk_shutdown & RCV_SHUTDOWN) | ||
242 | mask |= POLLRDHUP; | ||
243 | |||
241 | if (sk->sk_shutdown == SHUTDOWN_MASK) | 244 | if (sk->sk_shutdown == SHUTDOWN_MASK) |
242 | mask |= POLLHUP; | 245 | mask |= POLLHUP; |
243 | 246 | ||