From: Gustavo F. Padovan Date: Thu, 22 Dec 2011 18:35:05 +0000 (-0200) Subject: Bluetooth: Don't disable interrupt when locking the queue X-Git-Tag: v3.3-rc1~182^2~44^2^2~2 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=af3e6359a2b52970c63c3c9f73d52be281a162ad;p=~emulex%2Finfiniband.git Bluetooth: Don't disable interrupt when locking the queue We run everything in process context now. Acked-by: Marcel Holtmann Signed-off-by: Gustavo F. Padovan --- diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 4f0ff01dc68..6d38d80195c 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -1960,7 +1960,7 @@ static void hci_queue_acl(struct hci_conn *conn, struct sk_buff_head *queue, skb_shinfo(skb)->frag_list = NULL; /* Queue all fragments atomically */ - spin_lock_bh(&queue->lock); + spin_lock(&queue->lock); __skb_queue_tail(queue, skb); @@ -1978,7 +1978,7 @@ static void hci_queue_acl(struct hci_conn *conn, struct sk_buff_head *queue, __skb_queue_tail(queue, skb); } while (list); - spin_unlock_bh(&queue->lock); + spin_unlock(&queue->lock); } }