* [PATCH] Bluetooth: HCI: fix disabling of adv instance before updating params
@ 2025-06-30 7:58 Christian Eggers
2025-06-30 13:18 ` Luiz Augusto von Dentz
2025-06-30 14:30 ` patchwork-bot+bluetooth
0 siblings, 2 replies; 3+ messages in thread
From: Christian Eggers @ 2025-06-30 7:58 UTC (permalink / raw)
To: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz
Cc: linux-bluetooth, netdev, linux-kernel, Christian Eggers
struct adv_info::pending doesn't tell whether advertising is currently
enabled. This is already checked in hci_disable_ext_adv_instance_sync().
Fixes: cba6b758711c ("Bluetooth: hci_sync: Make use of hci_cmd_sync_queue set 2")
Signed-off-by: Christian Eggers <ceggers@arri.de>
---
net/bluetooth/hci_sync.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c
index 77b3691f3423..0066627c05eb 100644
--- a/net/bluetooth/hci_sync.c
+++ b/net/bluetooth/hci_sync.c
@@ -1345,7 +1345,7 @@ int hci_setup_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance)
* Command Disallowed error, so we must first disable the
* instance if it is active.
*/
- if (adv && !adv->pending) {
+ if (adv) {
err = hci_disable_ext_adv_instance_sync(hdev, instance);
if (err)
return err;
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Bluetooth: HCI: fix disabling of adv instance before updating params
2025-06-30 7:58 [PATCH] Bluetooth: HCI: fix disabling of adv instance before updating params Christian Eggers
@ 2025-06-30 13:18 ` Luiz Augusto von Dentz
2025-06-30 14:30 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2025-06-30 13:18 UTC (permalink / raw)
To: Christian Eggers
Cc: Marcel Holtmann, Johan Hedberg, linux-bluetooth, netdev,
linux-kernel
Hi Christian,
On Mon, Jun 30, 2025 at 3:59 AM Christian Eggers <ceggers@arri.de> wrote:
>
> struct adv_info::pending doesn't tell whether advertising is currently
> enabled. This is already checked in hci_disable_ext_adv_instance_sync().
>
> Fixes: cba6b758711c ("Bluetooth: hci_sync: Make use of hci_cmd_sync_queue set 2")
> Signed-off-by: Christian Eggers <ceggers@arri.de>
> ---
> net/bluetooth/hci_sync.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c
> index 77b3691f3423..0066627c05eb 100644
> --- a/net/bluetooth/hci_sync.c
> +++ b/net/bluetooth/hci_sync.c
> @@ -1345,7 +1345,7 @@ int hci_setup_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance)
> * Command Disallowed error, so we must first disable the
> * instance if it is active.
> */
> - if (adv && !adv->pending) {
> + if (adv) {
> err = hci_disable_ext_adv_instance_sync(hdev, instance);
> if (err)
> return err;
> --
> 2.43.0
>
Ive already submitted a similar fix last week:
https://patchwork.kernel.org/project/bluetooth/patch/20250627163133.430614-1-luiz.dentz@gmail.com/
--
Luiz Augusto von Dentz
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Bluetooth: HCI: fix disabling of adv instance before updating params
2025-06-30 7:58 [PATCH] Bluetooth: HCI: fix disabling of adv instance before updating params Christian Eggers
2025-06-30 13:18 ` Luiz Augusto von Dentz
@ 2025-06-30 14:30 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2025-06-30 14:30 UTC (permalink / raw)
To: Christian Eggers
Cc: marcel, johan.hedberg, luiz.dentz, linux-bluetooth, netdev,
linux-kernel
Hello:
This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Mon, 30 Jun 2025 09:58:48 +0200 you wrote:
> struct adv_info::pending doesn't tell whether advertising is currently
> enabled. This is already checked in hci_disable_ext_adv_instance_sync().
>
> Fixes: cba6b758711c ("Bluetooth: hci_sync: Make use of hci_cmd_sync_queue set 2")
> Signed-off-by: Christian Eggers <ceggers@arri.de>
> ---
> net/bluetooth/hci_sync.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Here is the summary with links:
- Bluetooth: HCI: fix disabling of adv instance before updating params
https://git.kernel.org/bluetooth/bluetooth-next/c/2a0ae2f6cd36
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-30 14:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-30 7:58 [PATCH] Bluetooth: HCI: fix disabling of adv instance before updating params Christian Eggers
2025-06-30 13:18 ` Luiz Augusto von Dentz
2025-06-30 14:30 ` patchwork-bot+bluetooth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).