diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-07-06 06:06:51 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-07-06 06:32:26 -0400 |
commit | 19de0825cd8acb1de6fa6a135b1f059446781049 (patch) | |
tree | 9be768edd200b27b526abc390f406b68dbfef4f1 /net/bluetooth/mgmt.c | |
parent | 9e1d7e15340b14bfb2ac86d77ca72fcebfe67d66 (diff) |
Bluetooth: Fix sending Device Removed when clearing all parameters
When calling Device Remove with BDADDR_ANY we should in a similar way
emit Device Removed events as we do when removing a single device. Since
we have to iterate the list and call device_removed() the dedicated
hci_conn_params_clear_enabled() is not really useful anymore. This patch
removes the helper function and does the event emission and list item
removal in a single loop.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r-- | net/bluetooth/mgmt.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index f514eb15e0fb..04a66429ad4d 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c | |||
@@ -5284,6 +5284,8 @@ static int remove_device(struct sock *sk, struct hci_dev *hdev, | |||
5284 | 5284 | ||
5285 | device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type); | 5285 | device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type); |
5286 | } else { | 5286 | } else { |
5287 | struct hci_conn_params *p, *tmp; | ||
5288 | |||
5287 | if (cp->addr.type) { | 5289 | if (cp->addr.type) { |
5288 | err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE, | 5290 | err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE, |
5289 | MGMT_STATUS_INVALID_PARAMS, | 5291 | MGMT_STATUS_INVALID_PARAMS, |
@@ -5291,7 +5293,18 @@ static int remove_device(struct sock *sk, struct hci_dev *hdev, | |||
5291 | goto unlock; | 5293 | goto unlock; |
5292 | } | 5294 | } |
5293 | 5295 | ||
5294 | hci_conn_params_clear_enabled(hdev); | 5296 | list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) { |
5297 | if (p->auto_connect == HCI_AUTO_CONN_DISABLED) | ||
5298 | continue; | ||
5299 | device_removed(sk, hdev, &p->addr, p->addr_type); | ||
5300 | list_del(&p->action); | ||
5301 | list_del(&p->list); | ||
5302 | kfree(p); | ||
5303 | } | ||
5304 | |||
5305 | BT_DBG("All LE connection parameters were removed"); | ||
5306 | |||
5307 | hci_update_background_scan(hdev); | ||
5295 | } | 5308 | } |
5296 | 5309 | ||
5297 | err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE, | 5310 | err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE, |