All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC 1/3] btdev: Fix sending terminate advertising event to the wrong device
@ 2021-08-18 23:06 Luiz Augusto von Dentz
  2021-08-18 23:06 ` [RFC 2/3] btdev: Fix order of BT_HCI_EVT_LE_ADV_SET_TERM Luiz Augusto von Dentz
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2021-08-18 23:06 UTC (permalink / raw)
  To: linux-bluetooth

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

The device where the event should be sent is the same that had created
not the connection one.
---
 emulator/btdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/emulator/btdev.c b/emulator/btdev.c
index 6e1d3c346..cd0cfa45f 100644
--- a/emulator/btdev.c
+++ b/emulator/btdev.c
@@ -5118,7 +5118,7 @@ static void ext_adv_term(void *data, void *user_data)
 
 	/* if connectable bit is set the send adv terminate */
 	if (conn && adv->type & 0x01) {
-		adv_set_terminate(conn->dev, 0x00, adv->handle, conn->handle,
+		adv_set_terminate(adv->dev, 0x00, adv->handle, conn->handle,
 									0x00);
 		le_ext_adv_free(adv);
 	}
-- 
2.31.1


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

end of thread, other threads:[~2021-08-19 18:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-18 23:06 [RFC 1/3] btdev: Fix sending terminate advertising event to the wrong device Luiz Augusto von Dentz
2021-08-18 23:06 ` [RFC 2/3] btdev: Fix order of BT_HCI_EVT_LE_ADV_SET_TERM Luiz Augusto von Dentz
2021-08-18 23:06 ` [RFC 3/3] btdev: Fix removing advertising set if it was terminated Luiz Augusto von Dentz
2021-08-19 18:34 ` [RFC 1/3] btdev: Fix sending terminate advertising event to the wrong device Luiz Augusto von Dentz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.