Commit edd3896b authored by Marcel Holtmann's avatar Marcel Holtmann
Browse files

Bluetooth: Add support for Unconfigured Index Removed events



When a controller in an unconfigured state gets removed, then send
Unconfigured Index Removed events.

Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent 0602a8ad
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -642,3 +642,5 @@ struct mgmt_ev_new_conn_param {
} __packed;

#define MGMT_EV_UNCONF_INDEX_ADDED	0x001d

#define MGMT_EV_UNCONF_INDEX_REMOVED	0x001e
+5 −1
Original line number Diff line number Diff line
@@ -119,6 +119,7 @@ static const u16 mgmt_events[] = {
	MGMT_EV_DEVICE_REMOVED,
	MGMT_EV_NEW_CONN_PARAM,
	MGMT_EV_UNCONF_INDEX_ADDED,
	MGMT_EV_UNCONF_INDEX_REMOVED,
};

#define CACHE_TIMEOUT	msecs_to_jiffies(2 * 1000)
@@ -5395,6 +5396,9 @@ void mgmt_index_removed(struct hci_dev *hdev)

	mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);

	if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags))
		mgmt_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev, NULL, 0, NULL);
	else
		mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
}