aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/bnep
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-07-14 14:13:53 -0400
committerMarcel Holtmann <marcel@holtmann.org>2008-07-14 14:13:53 -0400
commitec8dab36e0738d3059980d144e34f16a26bbda7d (patch)
treed1854559838c4ac228c9586faae44625c08d30ba /net/bluetooth/bnep
parenta0c22f226502be6eab37a1d9bf6fb0fadf551376 (diff)
[Bluetooth] Signal user-space for HIDP and BNEP socket errors
When using the HIDP or BNEP kernel support, the user-space needs to know if the connection has been terminated for some reasons. Wake up the application if that happens. Otherwise kernel and user-space are no longer on the same page and weird behaviors can happen. Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/bnep')
-rw-r--r--net/bluetooth/bnep/core.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c
index f85d94643aaf..24e91eb7f649 100644
--- a/net/bluetooth/bnep/core.c
+++ b/net/bluetooth/bnep/core.c
@@ -507,6 +507,11 @@ static int bnep_session(void *arg)
507 /* Delete network device */ 507 /* Delete network device */
508 unregister_netdev(dev); 508 unregister_netdev(dev);
509 509
510 /* Wakeup user-space polling for socket errors */
511 s->sock->sk->sk_err = EUNATCH;
512
513 wake_up_interruptible(s->sock->sk->sk_sleep);
514
510 /* Release the socket */ 515 /* Release the socket */
511 fput(s->sock->file); 516 fput(s->sock->file);
512 517