diff options
author | Vinicius Costa Gomes <vinicius.gomes@openbossa.org> | 2011-05-06 23:41:44 +0200 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-05-11 21:42:14 +0200 |
commit | 365227e5fdf3d117e096416d9d3cc148959a829e (patch) | |
tree | 7b956b18bb36c276b1efcce74b3a37e614b01e17 /net/bluetooth/mgmt.c | |
parent | Bluetooth: Add support for sending connection events for LE links (diff) | |
download | linux-365227e5fdf3d117e096416d9d3cc148959a829e.tar.xz linux-365227e5fdf3d117e096416d9d3cc148959a829e.zip |
Bluetooth: Add support for disconnecting LE links via mgmt
If we can't find a ACL link between the devices, we search
the connection list one second time looking for LE links.
Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@openbossa.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to '')
-rw-r--r-- | net/bluetooth/mgmt.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 2481d257ed98..dae382ce7020 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -1033,6 +1033,9 @@ static int disconnect(struct sock *sk, u16 index, unsigned char *data, u16 len) } conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr); + if (!conn) + conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->bdaddr); + if (!conn) { err = cmd_status(sk, index, MGMT_OP_DISCONNECT, ENOTCONN); goto failed; |