* [PATCH BlueZ v2] bap: Fix not setting SID for broadcast receiver
@ 2025-04-11 19:56 Luiz Augusto von Dentz
2025-04-11 21:35 ` [BlueZ,v2] " bluez.test.bot
0 siblings, 1 reply; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2025-04-11 19:56 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] 3+ messages in thread* RE: [BlueZ,v2] bap: Fix not setting SID for broadcast receiver
2025-04-11 19:56 [PATCH BlueZ v2] bap: Fix not setting SID for broadcast receiver Luiz Augusto von Dentz
@ 2025-04-11 21:35 ` bluez.test.bot
0 siblings, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2025-04-11 21:35 UTC (permalink / raw)
To: linux-bluetooth, luiz.dentz
[-- Attachment #1: Type: text/plain, Size: 1261 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=952626
---Test result---
Test Summary:
CheckPatch PENDING 0.19 seconds
GitLint PENDING 0.20 seconds
BuildEll PASS 20.42 seconds
BluezMake PASS 2682.13 seconds
MakeCheck PASS 20.42 seconds
MakeDistcheck PASS 197.76 seconds
CheckValgrind PASS 274.01 seconds
CheckSmatch PASS 303.52 seconds
bluezmakeextell PASS 127.62 seconds
IncrementalBuild PENDING 0.32 seconds
ScanBuild PASS 896.94 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH BlueZ v2] bap: Fix not setting SID for broadcast receiver
@ 2025-04-15 21:48 Luiz Augusto von Dentz
2025-04-15 23:34 ` [BlueZ,v2] " bluez.test.bot
0 siblings, 1 reply; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2025-04-15 21:48 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] 3+ messages in thread* RE: [BlueZ,v2] bap: Fix not setting SID for broadcast receiver
2025-04-15 21:48 [PATCH BlueZ v2] " Luiz Augusto von Dentz
@ 2025-04-15 23:34 ` bluez.test.bot
0 siblings, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2025-04-15 23:34 UTC (permalink / raw)
To: linux-bluetooth, luiz.dentz
[-- Attachment #1: Type: text/plain, Size: 1261 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=953730
---Test result---
Test Summary:
CheckPatch PENDING 0.19 seconds
GitLint PENDING 0.19 seconds
BuildEll PASS 20.60 seconds
BluezMake PASS 2662.10 seconds
MakeCheck PASS 25.83 seconds
MakeDistcheck PASS 200.51 seconds
CheckValgrind PASS 296.96 seconds
CheckSmatch PASS 304.88 seconds
bluezmakeextell PASS 129.58 seconds
IncrementalBuild PENDING 0.24 seconds
ScanBuild PASS 933.16 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-04-15 23:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-11 19:56 [PATCH BlueZ v2] bap: Fix not setting SID for broadcast receiver Luiz Augusto von Dentz
2025-04-11 21:35 ` [BlueZ,v2] " bluez.test.bot
-- strict thread matches above, loose matches on Subject: below --
2025-04-15 21:48 [PATCH BlueZ v2] " Luiz Augusto von Dentz
2025-04-15 23:34 ` [BlueZ,v2] " 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