public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ v3 1/7] bap: Fix not setting SID for broadcast receiver
@ 2025-04-16 16:04 Luiz Augusto von Dentz
  2025-04-16 16:04 ` [PATCH BlueZ v3 2/7] btdev: Check for valid SID on BT_HCI_CMD_LE_PA_CREATE_SYNC Luiz Augusto von Dentz
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Luiz Augusto von Dentz @ 2025-04-16 16:04 UTC (permalink / raw)
  To: linux-bluetooth

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

SID most be set otherwise 0x00 is assume which may not be what the
broadcast source is using over the air. but since we don't have access
to the SID of the advertisement in userspace mark de SID as invalid
(0xff) so the kernel fill it up while scanning when creating the PA
sync.
---
 profiles/audio/bap.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/audio/bap.c b/profiles/audio/bap.c
index fd9b751cc1bf..24763666ce96 100644
--- a/profiles/audio/bap.c
+++ b/profiles/audio/bap.c
@@ -2813,6 +2813,7 @@ static void bap_detached(struct bt_bap *bap, void *user_data)
 static int pa_sync(struct bap_data *data)
 {
 	GError *err = NULL;
+	uint8_t sid = 0xff;
 
 	if (data->listen_io) {
 		DBG("Already probed");
@@ -2833,6 +2834,7 @@ static int pa_sync(struct bap_data *data)
 		btd_device_get_bdaddr_type(data->device),
 		BT_IO_OPT_MODE, BT_IO_MODE_ISO,
 		BT_IO_OPT_QOS, &bap_sink_pa_qos,
+		BT_IO_OPT_ISO_BC_SID, sid,
 		BT_IO_OPT_INVALID);
 	if (!data->listen_io) {
 		error("%s", err->message);
-- 
2.49.0


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

end of thread, other threads:[~2025-04-16 18:59 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-16 16:04 [PATCH BlueZ v3 1/7] bap: Fix not setting SID for broadcast receiver Luiz Augusto von Dentz
2025-04-16 16:04 ` [PATCH BlueZ v3 2/7] btdev: Check for valid SID on BT_HCI_CMD_LE_PA_CREATE_SYNC Luiz Augusto von Dentz
2025-04-16 16:04 ` [PATCH BlueZ v3 3/7] btdev: Fix not matching SID on le_pa_sync_estabilished Luiz Augusto von Dentz
2025-04-16 16:04 ` [PATCH BlueZ v3 4/7] iso-tester: Add test for SID=0xff Luiz Augusto von Dentz
2025-04-16 16:04 ` [PATCH BlueZ v3 5/7] iso-tester: Test getpeername return SID Luiz Augusto von Dentz
2025-04-16 16:04 ` [PATCH BlueZ v3 6/7] btio: Add support to BT_IO_OPT_ISO_BC_SID to bt_io_get Luiz Augusto von Dentz
2025-04-16 16:04 ` [PATCH BlueZ v3 7/7] bap: Add support for using SID for broadcast receiver Luiz Augusto von Dentz
2025-04-16 17:36 ` [BlueZ,v3,1/7] bap: Fix not setting " bluez.test.bot
2025-04-16 19:00 ` [PATCH BlueZ v3 1/7] " 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