Bluetooth: Do not set cur_adv_instance in adv param MGMT request
authorDaniel Winkler <danielwinkler@google.com>
Mon, 5 Apr 2021 23:33:05 +0000 (16:33 -0700)
committerMarcel Holtmann <marcel@holtmann.org>
Tue, 6 Apr 2021 08:43:26 +0000 (10:43 +0200)
commitb6f1b79deabd32f89adbf24ef7b30f82d029808a
tree054f65a842a53e1970eb7cbf00f45d90bbcb33bf
parent25e70886c20005ac7facbd997ff4c3526dcd0de3
Bluetooth: Do not set cur_adv_instance in adv param MGMT request

We set hdev->cur_adv_instance in the adv param MGMT request to allow the
callback to the hci param request to set the tx power to the correct
instance. Now that the callbacks use the advertising handle from the hci
request (as they should), this workaround is no longer necessary.

Furthermore, this change resolves a race condition that is more
prevalent when using the extended advertising MGMT calls - if
hdev->cur_adv_instance is set in the params request, then when the data
request is called, we believe our new instance is already active. This
treats it as an update and immediately schedules the instance with the
controller, which has a potential race with the software rotation adv
update. By not setting hdev->cur_adv_instance too early, the new
instance is queued as it should be, to be used when the rotation comes
around again.

This change is tested on harrison peak to confirm that it resolves the
race condition on registration, and that there is no regression in
single- and multi-advertising automated tests.

Reviewed-by: Miao-chen Chou <mcchou@chromium.org>
Signed-off-by: Daniel Winkler <danielwinkler@google.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/mgmt.c