* [patch] Fix rfcomm might_sleep issue
@ 2008-12-30 11:12 Ville Tervo
0 siblings, 0 replies; only message in thread
From: Ville Tervo @ 2008-12-30 11:12 UTC (permalink / raw)
To: linux-bluetooth; +Cc: marcel
[-- Attachment #1: Type: text/plain, Size: 88 bytes --]
Hi,
Here is a patch to fix might_sleep issue that was found during testing.
--
Ville
[-- Attachment #2: 20081230-0001--BLUETOOTH-Remove-sleeping-functions-from-__rfcomm_.patch --]
[-- Type: text/x-patch, Size: 1471 bytes --]
>From a9bcfd0886bd6f54486a277b74247b32fd60f02f Mon Sep 17 00:00:00 2001
From: Ville Tervo <ville.tervo@nokia.com>
Date: Tue, 30 Dec 2008 12:59:01 +0200
Subject: [PATCH] [BLUETOOTH] Remove sleeping functions from __rfcomm_dlc_close
This patch removes code paths that uses functions
that might sleep. In case of rfcomm_send_disc sock_lock()
in l2cap_sock_sendmsg() and in case of rfcomm_queue_disc()
alloc_skb(size, GFP_KERNEL).
Signed-off-by: Ville Tervo <ville.tervo@nokia.com>
---
net/bluetooth/rfcomm/core.c | 11 +++--------
1 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
index ba537fa..5aad9c7 100644
--- a/net/bluetooth/rfcomm/core.c
+++ b/net/bluetooth/rfcomm/core.c
@@ -430,13 +430,8 @@ static int __rfcomm_dlc_close(struct rfcomm_dlc *d, int err)
case BT_CONFIG:
case BT_CONNECT:
d->state = BT_DISCONN;
- if (skb_queue_empty(&d->tx_queue)) {
- rfcomm_send_disc(s, d->dlci);
- rfcomm_dlc_set_timer(d, RFCOMM_DISC_TIMEOUT);
- } else {
- rfcomm_queue_disc(d);
- rfcomm_dlc_set_timer(d, RFCOMM_DISC_TIMEOUT * 2);
- }
+ rfcomm_queue_disc(d);
+ rfcomm_dlc_set_timer(d, RFCOMM_DISC_TIMEOUT * 2);
break;
default:
@@ -746,7 +741,7 @@ static int rfcomm_queue_disc(struct rfcomm_dlc *d)
BT_DBG("dlc %p dlci %d", d, d->dlci);
- skb = alloc_skb(sizeof(*cmd), GFP_KERNEL);
+ skb = alloc_skb(sizeof(*cmd), GFP_ATOMIC);
if (!skb)
return -ENOMEM;
--
1.6.0.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-12-30 11:12 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-30 11:12 [patch] Fix rfcomm might_sleep issue Ville Tervo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox