Message ID | 20230911061624.30600-2-vlad.pruteanu@nxp.com |
---|---|
State | Superseded |
Headers | show |
Series | bap: Use defer setup when syncing to a BIS source | expand |
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=782813 ---Test result--- Test Summary: CheckPatch PASS 0.57 seconds GitLint PASS 0.36 seconds BuildEll PASS 28.20 seconds BluezMake PASS 934.65 seconds MakeCheck PASS 12.39 seconds MakeDistcheck PASS 162.65 seconds CheckValgrind PASS 264.44 seconds CheckSmatch PASS 356.71 seconds bluezmakeextell PASS 108.14 seconds IncrementalBuild PASS 765.23 seconds ScanBuild PASS 1121.72 seconds --- Regards, Linux Bluetooth
diff --git a/profiles/audio/bap.c b/profiles/audio/bap.c index ee90426b9..8a2da24dd 100644 --- a/profiles/audio/bap.c +++ b/profiles/audio/bap.c @@ -840,6 +840,22 @@ drop: } +static void iso_pa_sync_confirm_cb(GIOChannel *io, void *user_data) +{ + GError *err = NULL; + + if (!bt_io_bcast_accept(io, iso_bcast_confirm_cb, + user_data, NULL, &err)) { + error("bt_io_bcast_accept: %s", err->message); + g_error_free(err); + goto drop; + } + return; + +drop: + g_io_channel_shutdown(io, TRUE, NULL); +} + static bool match_data_bap_data(const void *data, const void *match_data) { const struct bap_data *bdata = data; @@ -1587,7 +1603,7 @@ static void bap_listen_io_broadcast(struct bap_data *data, struct bap_ep *ep, if (bt_bap_stream_get_io(stream) || data->listen_io) return; - io = bt_io_listen(iso_bcast_confirm_cb, NULL, ep->data, NULL, &err, + io = bt_io_listen(NULL, iso_pa_sync_confirm_cb, ep->data, NULL, &err, BT_IO_OPT_SOURCE_BDADDR, btd_adapter_get_address(ep->data->adapter), BT_IO_OPT_DEST_BDADDR,