Commit bef34c0a authored by Marcel Holtmann's avatar Marcel Holtmann Committed by Gustavo Padovan

Bluetooth: Set default own address type only during controller setup

The default own address type is currently set at every power on of
a controller. This overwrites the value set via debugfs. To avoid
this issue, set the default own address type only during controller
setup.
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent 33337dcb
...@@ -1275,15 +1275,17 @@ static void hci_init3_req(struct hci_request *req, unsigned long opt) ...@@ -1275,15 +1275,17 @@ static void hci_init3_req(struct hci_request *req, unsigned long opt)
hci_setup_link_policy(req); hci_setup_link_policy(req);
if (lmp_le_capable(hdev)) { if (lmp_le_capable(hdev)) {
/* If the controller has a public BD_ADDR, then by if (test_bit(HCI_SETUP, &hdev->dev_flags)) {
* default use that one. If this is a LE only /* If the controller has a public BD_ADDR, then
* controller without one, default to the random * by default use that one. If this is a LE only
* address. * controller without a public address, default
* to the random address.
*/ */
if (bacmp(&hdev->bdaddr, BDADDR_ANY)) if (bacmp(&hdev->bdaddr, BDADDR_ANY))
hdev->own_addr_type = ADDR_LE_DEV_PUBLIC; hdev->own_addr_type = ADDR_LE_DEV_PUBLIC;
else else
hdev->own_addr_type = ADDR_LE_DEV_RANDOM; hdev->own_addr_type = ADDR_LE_DEV_RANDOM;
}
hci_set_le_support(req); hci_set_le_support(req);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment