diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-12-27 12:28:47 -0500 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2012-01-02 19:20:12 -0500 |
commit | 4b5dd696f81b210c1511ca7a969525126266c933 (patch) | |
tree | 3852a62f2857f566243e7df404c99a6ad1236b95 /net/bluetooth/hci_sock.c | |
parent | ee65d19e25c7ace7792bcd289776b2e24f4bf059 (diff) |
Bluetooth: Remove local_bh_disable() from hci_sock.c
Everything is in process context now, we do not need such a call.
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/hci_sock.c')
-rw-r--r-- | net/bluetooth/hci_sock.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/bluetooth/hci_sock.c b/net/bluetooth/hci_sock.c index 189a667c293b..896a72f72310 100644 --- a/net/bluetooth/hci_sock.c +++ b/net/bluetooth/hci_sock.c | |||
@@ -767,7 +767,6 @@ static int hci_sock_dev_event(struct notifier_block *this, unsigned long event, | |||
767 | /* Detach sockets from device */ | 767 | /* Detach sockets from device */ |
768 | read_lock(&hci_sk_list.lock); | 768 | read_lock(&hci_sk_list.lock); |
769 | sk_for_each(sk, node, &hci_sk_list.head) { | 769 | sk_for_each(sk, node, &hci_sk_list.head) { |
770 | local_bh_disable(); | ||
771 | bh_lock_sock_nested(sk); | 770 | bh_lock_sock_nested(sk); |
772 | if (hci_pi(sk)->hdev == hdev) { | 771 | if (hci_pi(sk)->hdev == hdev) { |
773 | hci_pi(sk)->hdev = NULL; | 772 | hci_pi(sk)->hdev = NULL; |
@@ -778,7 +777,6 @@ static int hci_sock_dev_event(struct notifier_block *this, unsigned long event, | |||
778 | hci_dev_put(hdev); | 777 | hci_dev_put(hdev); |
779 | } | 778 | } |
780 | bh_unlock_sock(sk); | 779 | bh_unlock_sock(sk); |
781 | local_bh_enable(); | ||
782 | } | 780 | } |
783 | read_unlock(&hci_sk_list.lock); | 781 | read_unlock(&hci_sk_list.lock); |
784 | } | 782 | } |