summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2014-02-21 16:03:31 +0200
committerGustavo Padovan <gustavo.padovan@collabora.co.uk>2014-02-21 11:07:46 -0300
commit668b7b19820b0801c425d31cc27fd6f499050e5c (patch)
treea94d3b4f3eeb9b1f5fb26d04ca2af33f70ff208f
parenta747439957ee2d1696a2a1494e5ce0516e153f10 (diff)
downloadop-kernel-dev-668b7b19820b0801c425d31cc27fd6f499050e5c.zip
op-kernel-dev-668b7b19820b0801c425d31cc27fd6f499050e5c.tar.gz
Bluetooth: Fix iterating wrong list in hci_remove_irk()
We should be iterating hdev->identity_resolving_keys in the hci_remove_irk() function instead of hdev->long_term_keys. This patch fixes the issue. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
-rw-r--r--net/bluetooth/hci_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index 6719286..964aa8de 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -2937,7 +2937,7 @@ void hci_remove_irk(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 addr_type)
{
struct smp_irk *k, *tmp;
- list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
+ list_for_each_entry_safe(k, tmp, &hdev->identity_resolving_keys, list) {
if (bacmp(bdaddr, &k->bdaddr) || k->addr_type != addr_type)
continue;
OpenPOWER on IntegriCloud