diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-12-22 16:30:27 -0200 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-12-22 18:06:24 -0200 |
commit | f20d09d5f7093e5dc5f231c65835e2d04739bd5e (patch) | |
tree | 846904ba60bf7af0b3bfb3663843b971f919e73f /net/bluetooth/hci_conn.c | |
parent | 460da45d92f19adda1b79910652d5a23c65dd272 (diff) | |
download | linux-f20d09d5f7093e5dc5f231c65835e2d04739bd5e.tar.gz linux-f20d09d5f7093e5dc5f231c65835e2d04739bd5e.tar.bz2 linux-f20d09d5f7093e5dc5f231c65835e2d04739bd5e.zip |
Bluetooth: remove *_bh usage from hci_dev_list and hci_cb_list
They don't need to disable interrupts anymore, we only run in process
context now.
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/hci_conn.c')
-rw-r--r-- | net/bluetooth/hci_conn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index 401d8ea266aa..3db432473ad5 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -487,7 +487,7 @@ struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src) BT_DBG("%s -> %s", batostr(src), batostr(dst)); - read_lock_bh(&hci_dev_list_lock); + read_lock(&hci_dev_list_lock); list_for_each_entry(d, &hci_dev_list, list) { if (!test_bit(HCI_UP, &d->flags) || test_bit(HCI_RAW, &d->flags)) @@ -512,7 +512,7 @@ struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src) if (hdev) hdev = hci_dev_hold(hdev); - read_unlock_bh(&hci_dev_list_lock); + read_unlock(&hci_dev_list_lock); return hdev; } EXPORT_SYMBOL(hci_get_route); |