public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] Bluetooth: hci_sync: Fix not clearing cmd_sync_work_list on power off
@ 2025-04-09 13:54 Luiz Augusto von Dentz
  2025-04-09 13:55 ` Luiz Augusto von Dentz
  2025-04-09 14:34 ` [v1] " bluez.test.bot
  0 siblings, 2 replies; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2025-04-09 13:54 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

When powering off the cmd_sync_work_list may contain items which shall
be cleared during power off as they shouldn't be run during power off
sequence.

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
---
 net/bluetooth/hci_sync.c | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c
index 609b035e5c90..7a822ef71a74 100644
--- a/net/bluetooth/hci_sync.c
+++ b/net/bluetooth/hci_sync.c
@@ -648,16 +648,22 @@ static void _hci_cmd_sync_cancel_entry(struct hci_dev *hdev,
 	kfree(entry);
 }
 
-void hci_cmd_sync_clear(struct hci_dev *hdev)
+/* Clear remaining entries in cmd_sync_work_list */
+static void hci_cmd_sync_list_clear(struct hci_dev *hdev)
 {
 	struct hci_cmd_sync_work_entry *entry, *tmp;
 
+	list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list)
+		_hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED);
+}
+
+void hci_cmd_sync_clear(struct hci_dev *hdev)
+{
 	cancel_work_sync(&hdev->cmd_sync_work);
 	cancel_work_sync(&hdev->reenable_adv_work);
 
 	mutex_lock(&hdev->cmd_sync_work_lock);
-	list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list)
-		_hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED);
+	hci_cmd_sync_list_clear(hdev);
 	mutex_unlock(&hdev->cmd_sync_work_lock);
 }
 
@@ -678,6 +684,7 @@ EXPORT_SYMBOL(hci_cmd_sync_cancel);
  *
  * - Set result and mark status to HCI_REQ_CANCELED
  * - Wakeup command sync thread
+ * - Clear cmd_sync_work_list if the interface is down
  */
 void hci_cmd_sync_cancel_sync(struct hci_dev *hdev, int err)
 {
@@ -692,6 +699,9 @@ void hci_cmd_sync_cancel_sync(struct hci_dev *hdev, int err)
 
 		wake_up_interruptible(&hdev->req_wait_q);
 	}
+
+	if (err == EHOSTDOWN || err == -EHOSTDOWN)
+		hci_cmd_sync_list_clear(hdev);
 }
 EXPORT_SYMBOL(hci_cmd_sync_cancel_sync);
 
@@ -5159,14 +5169,14 @@ int hci_dev_close_sync(struct hci_dev *hdev)
 		disable_delayed_work(&hdev->power_off);
 		disable_delayed_work(&hdev->ncmd_timer);
 		disable_delayed_work(&hdev->le_scan_disable);
+		hci_cmd_sync_cancel_sync(hdev, ENODEV);
 	} else {
 		cancel_delayed_work(&hdev->power_off);
 		cancel_delayed_work(&hdev->ncmd_timer);
 		cancel_delayed_work(&hdev->le_scan_disable);
+		hci_cmd_sync_cancel_sync(hdev, EHOSTDOWN);
 	}
 
-	hci_cmd_sync_cancel_sync(hdev, ENODEV);
-
 	cancel_interleave_scan(hdev);
 
 	if (hdev->adv_instance_timeout) {
-- 
2.49.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v1] Bluetooth: hci_sync: Fix not clearing cmd_sync_work_list on power off
  2025-04-09 13:54 [PATCH v1] Bluetooth: hci_sync: Fix not clearing cmd_sync_work_list on power off Luiz Augusto von Dentz
@ 2025-04-09 13:55 ` Luiz Augusto von Dentz
  2025-04-21  5:43   ` Shuai Zhang
  2025-04-09 14:34 ` [v1] " bluez.test.bot
  1 sibling, 1 reply; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2025-04-09 13:55 UTC (permalink / raw)
  To: linux-bluetooth, Shuai Zhang

On Wed, Apr 9, 2025 at 9:54 AM Luiz Augusto von Dentz
<luiz.dentz@gmail.com> wrote:
>
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>
> When powering off the cmd_sync_work_list may contain items which shall
> be cleared during power off as they shouldn't be run during power off
> sequence.
>
> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> ---
>  net/bluetooth/hci_sync.c | 20 +++++++++++++++-----
>  1 file changed, 15 insertions(+), 5 deletions(-)
>
> diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c
> index 609b035e5c90..7a822ef71a74 100644
> --- a/net/bluetooth/hci_sync.c
> +++ b/net/bluetooth/hci_sync.c
> @@ -648,16 +648,22 @@ static void _hci_cmd_sync_cancel_entry(struct hci_dev *hdev,
>         kfree(entry);
>  }
>
> -void hci_cmd_sync_clear(struct hci_dev *hdev)
> +/* Clear remaining entries in cmd_sync_work_list */
> +static void hci_cmd_sync_list_clear(struct hci_dev *hdev)
>  {
>         struct hci_cmd_sync_work_entry *entry, *tmp;
>
> +       list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list)
> +               _hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED);
> +}
> +
> +void hci_cmd_sync_clear(struct hci_dev *hdev)
> +{
>         cancel_work_sync(&hdev->cmd_sync_work);
>         cancel_work_sync(&hdev->reenable_adv_work);
>
>         mutex_lock(&hdev->cmd_sync_work_lock);
> -       list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list)
> -               _hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED);
> +       hci_cmd_sync_list_clear(hdev);
>         mutex_unlock(&hdev->cmd_sync_work_lock);
>  }
>
> @@ -678,6 +684,7 @@ EXPORT_SYMBOL(hci_cmd_sync_cancel);
>   *
>   * - Set result and mark status to HCI_REQ_CANCELED
>   * - Wakeup command sync thread
> + * - Clear cmd_sync_work_list if the interface is down
>   */
>  void hci_cmd_sync_cancel_sync(struct hci_dev *hdev, int err)
>  {
> @@ -692,6 +699,9 @@ void hci_cmd_sync_cancel_sync(struct hci_dev *hdev, int err)
>
>                 wake_up_interruptible(&hdev->req_wait_q);
>         }
> +
> +       if (err == EHOSTDOWN || err == -EHOSTDOWN)
> +               hci_cmd_sync_list_clear(hdev);
>  }
>  EXPORT_SYMBOL(hci_cmd_sync_cancel_sync);
>
> @@ -5159,14 +5169,14 @@ int hci_dev_close_sync(struct hci_dev *hdev)
>                 disable_delayed_work(&hdev->power_off);
>                 disable_delayed_work(&hdev->ncmd_timer);
>                 disable_delayed_work(&hdev->le_scan_disable);
> +               hci_cmd_sync_cancel_sync(hdev, ENODEV);
>         } else {
>                 cancel_delayed_work(&hdev->power_off);
>                 cancel_delayed_work(&hdev->ncmd_timer);
>                 cancel_delayed_work(&hdev->le_scan_disable);
> +               hci_cmd_sync_cancel_sync(hdev, EHOSTDOWN);
>         }
>
> -       hci_cmd_sync_cancel_sync(hdev, ENODEV);
> -
>         cancel_interleave_scan(hdev);
>
>         if (hdev->adv_instance_timeout) {
> --
> 2.49.0

Have a try with the above changes.

-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [v1] Bluetooth: hci_sync: Fix not clearing cmd_sync_work_list on power off
  2025-04-09 13:54 [PATCH v1] Bluetooth: hci_sync: Fix not clearing cmd_sync_work_list on power off Luiz Augusto von Dentz
  2025-04-09 13:55 ` Luiz Augusto von Dentz
@ 2025-04-09 14:34 ` bluez.test.bot
  1 sibling, 0 replies; 6+ messages in thread
From: bluez.test.bot @ 2025-04-09 14:34 UTC (permalink / raw)
  To: linux-bluetooth, luiz.dentz

[-- Attachment #1: Type: text/plain, Size: 2109 bytes --]

This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=951571

---Test result---

Test Summary:
CheckPatch                    PENDING   0.29 seconds
GitLint                       PENDING   0.24 seconds
SubjectPrefix                 PASS      0.13 seconds
BuildKernel                   PASS      34.02 seconds
CheckAllWarning               PASS      45.11 seconds
CheckSparse                   PASS      32.33 seconds
BuildKernel32                 PASS      24.56 seconds
TestRunnerSetup               PASS      463.45 seconds
TestRunner_l2cap-tester       PASS      24.52 seconds
TestRunner_iso-tester         PASS      30.95 seconds
TestRunner_bnep-tester        PASS      4.79 seconds
TestRunner_mgmt-tester        FAIL      120.96 seconds
TestRunner_rfcomm-tester      PASS      7.90 seconds
TestRunner_sco-tester         PASS      12.65 seconds
TestRunner_ioctl-tester       PASS      8.48 seconds
TestRunner_mesh-tester        PASS      6.08 seconds
TestRunner_smp-tester         PASS      7.17 seconds
TestRunner_userchan-tester    PASS      5.03 seconds
IncrementalBuild              PENDING   0.77 seconds

Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:

##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:

##############################
Test: TestRunner_mgmt-tester - FAIL
Desc: Run mgmt-tester with test-runner
Output:
Total: 490, Passed: 483 (98.6%), Failed: 3, Not Run: 4

Failed Test Cases
LL Privacy - Add Device 2 (2 Devices to AL)          Failed       0.178 seconds
LL Privacy - Set Flags 1 (Add to RL)                 Failed       0.150 seconds
LL Privacy - Set Flags 3 (2 Devices to RL)           Failed       0.181 seconds
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:



---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v1] Bluetooth: hci_sync: Fix not clearing cmd_sync_work_list on power off
  2025-04-09 13:55 ` Luiz Augusto von Dentz
@ 2025-04-21  5:43   ` Shuai Zhang
  2025-05-14  7:39     ` Shuai Zhang
  0 siblings, 1 reply; 6+ messages in thread
From: Shuai Zhang @ 2025-04-21  5:43 UTC (permalink / raw)
  To: Luiz Augusto von Dentz, linux-bluetooth

Dear Luiz

On 2025/4/9 21:55, Luiz Augusto von Dentz wrote:
> On Wed, Apr 9, 2025 at 9:54 AM Luiz Augusto von Dentz
> <luiz.dentz@gmail.com> wrote:
>>
>> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>>
>> When powering off the cmd_sync_work_list may contain items which shall
>> be cleared during power off as they shouldn't be run during power off
>> sequence.
>>
>> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>> ---
>>  net/bluetooth/hci_sync.c | 20 +++++++++++++++-----
>>  1 file changed, 15 insertions(+), 5 deletions(-)
>>
>> diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c
>> index 609b035e5c90..7a822ef71a74 100644
>> --- a/net/bluetooth/hci_sync.c
>> +++ b/net/bluetooth/hci_sync.c
>> @@ -648,16 +648,22 @@ static void _hci_cmd_sync_cancel_entry(struct hci_dev *hdev,
>>         kfree(entry);
>>  }
>>
>> -void hci_cmd_sync_clear(struct hci_dev *hdev)
>> +/* Clear remaining entries in cmd_sync_work_list */
>> +static void hci_cmd_sync_list_clear(struct hci_dev *hdev)
>>  {
>>         struct hci_cmd_sync_work_entry *entry, *tmp;
>>
>> +       list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list)
>> +               _hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED);
>> +}
>> +
>> +void hci_cmd_sync_clear(struct hci_dev *hdev)
>> +{
>>         cancel_work_sync(&hdev->cmd_sync_work);
>>         cancel_work_sync(&hdev->reenable_adv_work);
>>
>>         mutex_lock(&hdev->cmd_sync_work_lock);
>> -       list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list)
>> -               _hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED);
>> +       hci_cmd_sync_list_clear(hdev);
>>         mutex_unlock(&hdev->cmd_sync_work_lock);
>>  }
>>
>> @@ -678,6 +684,7 @@ EXPORT_SYMBOL(hci_cmd_sync_cancel);
>>   *
>>   * - Set result and mark status to HCI_REQ_CANCELED
>>   * - Wakeup command sync thread
>> + * - Clear cmd_sync_work_list if the interface is down
>>   */
>>  void hci_cmd_sync_cancel_sync(struct hci_dev *hdev, int err)
>>  {
>> @@ -692,6 +699,9 @@ void hci_cmd_sync_cancel_sync(struct hci_dev *hdev, int err)
>>
>>                 wake_up_interruptible(&hdev->req_wait_q);
>>         }
>> +
>> +       if (err == EHOSTDOWN || err == -EHOSTDOWN)
>> +               hci_cmd_sync_list_clear(hdev);
>>  }
>>  EXPORT_SYMBOL(hci_cmd_sync_cancel_sync);
>>
>> @@ -5159,14 +5169,14 @@ int hci_dev_close_sync(struct hci_dev *hdev)
>>                 disable_delayed_work(&hdev->power_off);
>>                 disable_delayed_work(&hdev->ncmd_timer);
>>                 disable_delayed_work(&hdev->le_scan_disable);
>> +               hci_cmd_sync_cancel_sync(hdev, ENODEV);
>>         } else {
>>                 cancel_delayed_work(&hdev->power_off);
>>                 cancel_delayed_work(&hdev->ncmd_timer);
>>                 cancel_delayed_work(&hdev->le_scan_disable);
>> +               hci_cmd_sync_cancel_sync(hdev, EHOSTDOWN);
>>         }
>>
>> -       hci_cmd_sync_cancel_sync(hdev, ENODEV);
>> -
>>         cancel_interleave_scan(hdev);
>>
>>         if (hdev->adv_instance_timeout) {
>> --
>> 2.49.0
> 
> Have a try with the above changes.
> 
I've applied the above changes and it's passed for this case. nice! 
May I ask if it was you who submitted this change or was it me? 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v1] Bluetooth: hci_sync: Fix not clearing cmd_sync_work_list on power off
  2025-04-21  5:43   ` Shuai Zhang
@ 2025-05-14  7:39     ` Shuai Zhang
  0 siblings, 0 replies; 6+ messages in thread
From: Shuai Zhang @ 2025-05-14  7:39 UTC (permalink / raw)
  To: Luiz Augusto von Dentz, linux-bluetooth

Dear Luiz

On 2025/4/21 13:43, Shuai Zhang wrote:
> Dear Luiz
> 
> On 2025/4/9 21:55, Luiz Augusto von Dentz wrote:
>> On Wed, Apr 9, 2025 at 9:54 AM Luiz Augusto von Dentz
>> <luiz.dentz@gmail.com> wrote:
>>>
>>> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>>>
>>> When powering off the cmd_sync_work_list may contain items which shall
>>> be cleared during power off as they shouldn't be run during power off
>>> sequence.
>>>
>>> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>>> ---
>>>  net/bluetooth/hci_sync.c | 20 +++++++++++++++-----
>>>  1 file changed, 15 insertions(+), 5 deletions(-)
>>>
>>> diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c
>>> index 609b035e5c90..7a822ef71a74 100644
>>> --- a/net/bluetooth/hci_sync.c
>>> +++ b/net/bluetooth/hci_sync.c
>>> @@ -648,16 +648,22 @@ static void _hci_cmd_sync_cancel_entry(struct hci_dev *hdev,
>>>         kfree(entry);
>>>  }
>>>
>>> -void hci_cmd_sync_clear(struct hci_dev *hdev)
>>> +/* Clear remaining entries in cmd_sync_work_list */
>>> +static void hci_cmd_sync_list_clear(struct hci_dev *hdev)
>>>  {
>>>         struct hci_cmd_sync_work_entry *entry, *tmp;
>>>
>>> +       list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list)
>>> +               _hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED);
>>> +}
>>> +
>>> +void hci_cmd_sync_clear(struct hci_dev *hdev)
>>> +{
>>>         cancel_work_sync(&hdev->cmd_sync_work);
>>>         cancel_work_sync(&hdev->reenable_adv_work);
>>>
>>>         mutex_lock(&hdev->cmd_sync_work_lock);
>>> -       list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list)
>>> -               _hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED);
>>> +       hci_cmd_sync_list_clear(hdev);
>>>         mutex_unlock(&hdev->cmd_sync_work_lock);
>>>  }
>>>
>>> @@ -678,6 +684,7 @@ EXPORT_SYMBOL(hci_cmd_sync_cancel);
>>>   *
>>>   * - Set result and mark status to HCI_REQ_CANCELED
>>>   * - Wakeup command sync thread
>>> + * - Clear cmd_sync_work_list if the interface is down
>>>   */
>>>  void hci_cmd_sync_cancel_sync(struct hci_dev *hdev, int err)
>>>  {
>>> @@ -692,6 +699,9 @@ void hci_cmd_sync_cancel_sync(struct hci_dev *hdev, int err)
>>>
>>>                 wake_up_interruptible(&hdev->req_wait_q);
>>>         }
>>> +
>>> +       if (err == EHOSTDOWN || err == -EHOSTDOWN)
>>> +               hci_cmd_sync_list_clear(hdev);
>>>  }
>>>  EXPORT_SYMBOL(hci_cmd_sync_cancel_sync);
>>>
>>> @@ -5159,14 +5169,14 @@ int hci_dev_close_sync(struct hci_dev *hdev)
>>>                 disable_delayed_work(&hdev->power_off);
>>>                 disable_delayed_work(&hdev->ncmd_timer);
>>>                 disable_delayed_work(&hdev->le_scan_disable);
>>> +               hci_cmd_sync_cancel_sync(hdev, ENODEV);
>>>         } else {
>>>                 cancel_delayed_work(&hdev->power_off);
>>>                 cancel_delayed_work(&hdev->ncmd_timer);
>>>                 cancel_delayed_work(&hdev->le_scan_disable);
>>> +               hci_cmd_sync_cancel_sync(hdev, EHOSTDOWN);
>>>         }
>>>
>>> -       hci_cmd_sync_cancel_sync(hdev, ENODEV);
>>> -
>>>         cancel_interleave_scan(hdev);
>>>
>>>         if (hdev->adv_instance_timeout) {
>>> --
>>> 2.49.0
>>
>> Have a try with the above changes.
>>
> I've applied the above changes and it's passed for this case. nice! 
> May I ask if it was you who submitted this change or was it me? 
> 
May I inquire what your thoughts are? If you have any questions, 
please let me know.


thanks,
Shuai


^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [v1] Bluetooth: hci_sync: Fix not clearing cmd_sync_work_list on power off
  2025-12-09 14:03 [PATCH v1] " Shuai Zhang
@ 2025-12-09 14:40 ` bluez.test.bot
  0 siblings, 0 replies; 6+ messages in thread
From: bluez.test.bot @ 2025-12-09 14:40 UTC (permalink / raw)
  To: linux-bluetooth, shuai.zhang

[-- Attachment #1: Type: text/plain, Size: 2673 bytes --]

This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=1031732

---Test result---

Test Summary:
CheckPatch                    PENDING   0.36 seconds
GitLint                       PENDING   1.04 seconds
SubjectPrefix                 PASS      0.11 seconds
BuildKernel                   PASS      25.36 seconds
CheckAllWarning               PASS      28.41 seconds
CheckSparse                   PASS      31.51 seconds
BuildKernel32                 PASS      25.07 seconds
TestRunnerSetup               PASS      551.16 seconds
TestRunner_l2cap-tester       PASS      23.72 seconds
TestRunner_iso-tester         PASS      87.69 seconds
TestRunner_bnep-tester        PASS      6.22 seconds
TestRunner_mgmt-tester        FAIL      130.79 seconds
TestRunner_rfcomm-tester      PASS      9.40 seconds
TestRunner_sco-tester         FAIL      14.54 seconds
TestRunner_ioctl-tester       PASS      10.19 seconds
TestRunner_mesh-tester        FAIL      11.50 seconds
TestRunner_smp-tester         PASS      8.66 seconds
TestRunner_userchan-tester    PASS      9.26 seconds
IncrementalBuild              PENDING   0.90 seconds

Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:

##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:

##############################
Test: TestRunner_mgmt-tester - FAIL
Desc: Run mgmt-tester with test-runner
Output:
Total: 494, Passed: 488 (98.8%), Failed: 2, Not Run: 4

Failed Test Cases
Read Exp Feature - Success                           Failed       0.113 seconds
LL Privacy - Set Flags 2 (Enable RL)                 Failed       0.171 seconds
##############################
Test: TestRunner_sco-tester - FAIL
Desc: Run sco-tester with test-runner
Output:
WARNING: possible circular locking dependency detected
BUG: sleeping function called from invalid context at net/core/sock.c:3782
Total: 30, Passed: 30 (100.0%), Failed: 0, Not Run: 0
##############################
Test: TestRunner_mesh-tester - FAIL
Desc: Run mesh-tester with test-runner
Output:
Total: 10, Passed: 8 (80.0%), Failed: 2, Not Run: 0

Failed Test Cases
Mesh - Send cancel - 1                               Timed out    1.961 seconds
Mesh - Send cancel - 2                               Timed out    1.999 seconds
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:



---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2025-12-09 14:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-09 13:54 [PATCH v1] Bluetooth: hci_sync: Fix not clearing cmd_sync_work_list on power off Luiz Augusto von Dentz
2025-04-09 13:55 ` Luiz Augusto von Dentz
2025-04-21  5:43   ` Shuai Zhang
2025-05-14  7:39     ` Shuai Zhang
2025-04-09 14:34 ` [v1] " bluez.test.bot
  -- strict thread matches above, loose matches on Subject: below --
2025-12-09 14:03 [PATCH v1] " Shuai Zhang
2025-12-09 14:40 ` [v1] " bluez.test.bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox