Message ID | f1ac6b52c30e002400c2a0dcb20ead18899695b5.1699992657.git.pav@iki.fi (mailing list archive) |
---|---|
State | Accepted |
Commit | 14dd4a75ceb284bf4fda00d1c318683fbaa4ac07 |
Headers | show |
Series | [BlueZ] media: add Retransmissions in SelectProperties QoS | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | success | Gitlint PASS |
tedd_an/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | success | Bluez Make Check PASS |
tedd_an/MakeDistcheck | success | Make Distcheck PASS |
tedd_an/CheckValgrind | success | Check Valgrind PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/bluezmakeextell | success | Make External ELL PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
tedd_an/ScanBuild | success | Scan Build PASS |
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=801152 ---Test result--- Test Summary: CheckPatch PASS 0.44 seconds GitLint PASS 0.38 seconds BuildEll PASS 24.09 seconds BluezMake PASS 554.10 seconds MakeCheck PASS 10.29 seconds MakeDistcheck PASS 150.48 seconds CheckValgrind PASS 210.30 seconds CheckSmatch PASS 312.82 seconds bluezmakeextell PASS 96.32 seconds IncrementalBuild PASS 508.80 seconds ScanBuild PASS 897.31 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Tue, 14 Nov 2023 22:11:52 +0200 you wrote: > The server preferred RTN is part of the server supported/preferred QoS > values, and should be passed on to SelectProperties. > --- > profiles/audio/media.c | 3 +++ > 1 file changed, 3 insertions(+) Here is the summary with links: - [BlueZ] media: add Retransmissions in SelectProperties QoS https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=14dd4a75ceb2 You are awesome, thank you!
diff --git a/profiles/audio/media.c b/profiles/audio/media.c index 4d9a6aa03..62f53defa 100644 --- a/profiles/audio/media.c +++ b/profiles/audio/media.c @@ -995,6 +995,9 @@ static int pac_select(struct bt_bap_pac *lpac, struct bt_bap_pac *rpac, g_dbus_dict_append_entry(&qos_dict, "PHY", DBUS_TYPE_BYTE, &qos->phy); + g_dbus_dict_append_entry(&qos_dict, "Retransmissions", + DBUS_TYPE_BYTE, &qos->rtn); + g_dbus_dict_append_entry(&qos_dict, "MaximumLatency", DBUS_TYPE_UINT16, &qos->latency);