Message ID | 20230828233239.634106-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 530afa43ec2920347c7092823bec8fd51b019280 |
Headers | show |
Series | [BlueZ] media-api: Make QoS a single property | 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=780071 ---Test result--- Test Summary: CheckPatch PASS 0.51 seconds GitLint PASS 0.37 seconds BuildEll PASS 27.31 seconds BluezMake PASS 871.72 seconds MakeCheck PASS 11.96 seconds MakeDistcheck PASS 156.71 seconds CheckValgrind PASS 257.43 seconds CheckSmatch PASS 344.99 seconds bluezmakeextell PASS 104.42 seconds IncrementalBuild PASS 706.54 seconds ScanBuild PASS 1062.82 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 Mon, 28 Aug 2023 16:32:39 -0700 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This moves QoS related properties to a single dictionary. > --- > doc/media-api.txt | 78 +++++++++++++++++++++++++++++++++-------------- > 1 file changed, 55 insertions(+), 23 deletions(-) Here is the summary with links: - [BlueZ] media-api: Make QoS a single property https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=530afa43ec29 You are awesome, thank you!
diff --git a/doc/media-api.txt b/doc/media-api.txt index 3a0ec38e244d..cbcfac85c27b 100644 --- a/doc/media-api.txt +++ b/doc/media-api.txt @@ -816,42 +816,74 @@ Properties object Device [readonly] Linked transport objects which the transport is associated with. - byte CIG [ISO only, optional, experimental] + dict QoS [readonly, optional, ISO only, experimental] - Indicates configured QoS CIG. Only present when QoS is configured. - byte CIS [ISO only, optional, experimental] + Possible values for Unicast: - Indicates configured QoS CIS. - Only present when QoS is configured. + byte CIG - uint32 Interval [ISO only, optional, experimental] + Indicates configured CIG. - Indicates configured QoS interval. - Only present when QoS is configured. + byte CIS - boolean Framing [ISO only, optional, experimental] + Indicates configured CIS. - Indicates configured QoS framing. - Only present when QoS is configured. + uint32 Interval - byte PHY [ISO only, optional, experimental] + Indicates configured ISO interval. - Indicates configured QoS PHY. - Only present when QoS is configured. + boolean Framing - uint16 SDU [ISO only, optional, experimental] + Indicates configured framing. - Indicates configured QoS SDU. - Only present when QoS is configured. + byte PHY - byte Retransmissions [ISO only, optional, experimental] + Indicates configured PHY. - Indicates configured QoS retransmissions. - Only present when QoS is configured. + uint16 SDU - uint16 Latency [ISO only, optional, experimental] + Indicates configured SDU. - Indicates configured QoS latency. - Only present when QoS is configured. + byte Retransmissions + + Indicates configured retransmissions. + + uint16 Latency + + Indicates configured transport latency. + + Possible values for Broadcast: + + byte BIG + + Indicates configured QoS BIG. + + byte BIS + + Indicates configured BIS. + + uint32 SyncInterval + + Indicates configured broadcast sync interval. + + uint32 Interval + + Indicates configured ISO interval. + + byte PHY + + Indicates configured PHY. + + uint16 SDU + + Indicates configured maximum SDU. + + byte SyncTimeout + + Indicates configured broadcast sync timeout. + + uint16 Latency + + Indicates configured transport latency.
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This moves QoS related properties to a single dictionary. --- doc/media-api.txt | 78 +++++++++++++++++++++++++++++++++-------------- 1 file changed, 55 insertions(+), 23 deletions(-)