From: Luiz Augusto von Dentz Date: Thu, 24 Oct 2019 13:15:42 +0000 (+0300) Subject: Bluetooth: Fix using advertising instance duration as timeout X-Git-Tag: v5.10.7~3838^2~126^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=10bbffa3e88e3aae870c734b234c0718d26f97ab;p=platform%2Fkernel%2Flinux-rpi.git Bluetooth: Fix using advertising instance duration as timeout When using LE Set Extended Advertising Enable command the duration refers to the lifetime of instance not the length which is actually controlled by the interval_min and interval_max when setting the parameters. Signed-off-by: Luiz Augusto von Dentz Signed-off-by: Marcel Holtmann --- diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c index 7f6a581..3a2ec34 100644 --- a/net/bluetooth/hci_request.c +++ b/net/bluetooth/hci_request.c @@ -1690,7 +1690,7 @@ int __hci_req_enable_ext_advertising(struct hci_request *req, u8 instance) * scheduling it. */ if (adv_instance && adv_instance->duration) { - u16 duration = adv_instance->duration * MSEC_PER_SEC; + u16 duration = adv_instance->timeout * MSEC_PER_SEC; /* Time = N * 10 ms */ adv_set->duration = cpu_to_le16(duration / 10);