projects
/
profile
/
ivi
/
kernel-x86-ivi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f20d09d
)
Bluetooth: Don't disable interrupt when locking the queue
author
Gustavo F. Padovan
<padovan@profusion.mobi>
Thu, 22 Dec 2011 18:35:05 +0000
(16:35 -0200)
committer
Gustavo F. Padovan
<padovan@profusion.mobi>
Thu, 22 Dec 2011 20:07:01 +0000
(18:07 -0200)
We run everything in process context now.
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
net/bluetooth/hci_core.c
patch
|
blob
|
history
diff --git
a/net/bluetooth/hci_core.c
b/net/bluetooth/hci_core.c
index
4f0ff01
..
6d38d80
100644
(file)
--- 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);
}
}