From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> If Link Keys are not loaded during initialization with MGMT_OP_LOAD_LINK_KEYS command then pairing always fails since HCI_LINK_KEYS is not set. Check instead for HCI_MGMT flag. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> --- *v2 modified patch following Johan's comments net/bluetooth/hci_event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index db58e72..e547cfd 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -2611,7 +2611,7 @@ static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb) BT_DBG("%s", hdev->name); - if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags)) + if (!test_bit(HCI_MGMT, &hdev->dev_flags)) return; hci_dev_lock(hdev); -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html