Message ID | 20241114192524.1856334-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | fe1296cb1156f252e5011bb00fe1186ddfd19ad6 |
Headers | show |
Series | [BlueZ,v2,1/5] mgmt-api: Add Send HCI command and wait for event Command | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
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 | warning | CheckSparse WARNING monitor/packet.c: note: in included file:monitor/display.h:82:26: warning: Variable length array is used.monitor/packet.c:1868:26: warning: Variable length array is used.monitor/packet.c: note: in included file:monitor/bt.h:3606:52: warning: array of flexible structuresmonitor/bt.h:3594:40: warning: array of flexible structuresmonitor/packet.c: note: in included file:monitor/display.h:82:26: warning: Variable length array is used.monitor/packet.c:1868:26: warning: Variable length array is used.monitor/packet.c: note: in included file:monitor/bt.h:3606:52: warning: array of flexible structuresmonitor/bt.h:3594:40: warning: array of flexible structures |
tedd_an/bluezmakeextell | success | Make External ELL 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=909740 ---Test result--- Test Summary: CheckPatch PENDING 0.26 seconds GitLint PENDING 0.29 seconds BuildEll PASS 20.85 seconds BluezMake PASS 1669.08 seconds MakeCheck PASS 13.01 seconds MakeDistcheck PASS 158.31 seconds CheckValgrind PASS 216.43 seconds CheckSmatch WARNING 275.04 seconds bluezmakeextell PASS 99.28 seconds IncrementalBuild PENDING 0.29 seconds ScanBuild PASS 857.74 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: CheckSmatch - WARNING Desc: Run smatch tool with source Output: monitor/packet.c: note: in included file:monitor/display.h:82:26: warning: Variable length array is used.monitor/packet.c:1868:26: warning: Variable length array is used.monitor/packet.c: note: in included file:monitor/bt.h:3606:52: warning: array of flexible structuresmonitor/bt.h:3594:40: warning: array of flexible structuresmonitor/packet.c: note: in included file:monitor/display.h:82:26: warning: Variable length array is used.monitor/packet.c:1868:26: warning: Variable length array is used.monitor/packet.c: note: in included file:monitor/bt.h:3606:52: warning: array of flexible structuresmonitor/bt.h:3594:40: warning: array of flexible structures ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
Hello: This series was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Thu, 14 Nov 2024 14:25:20 -0500 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This adds Send HCI command and wait for event Command initial > documentation. > --- > doc/mgmt-api.txt | 30 ++++++++++++++++++++++++++++++ > 1 file changed, 30 insertions(+) Here is the summary with links: - [BlueZ,v2,1/5] mgmt-api: Add Send HCI command and wait for event Command https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=fe1296cb1156 - [BlueZ,v2,2/5] monitor: Fix opcode for MGMT_OP_MESH_SEND_CANCEL https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=2e981e1a9498 - [BlueZ,v2,3/5] monitor: Add decoding of MGMT_OP_HCI_CMD_SYNC https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=d395c6b1c7d4 - [BlueZ,v2,4/5] lib/mgmt: Add definitions of MGMT_OP_HCI_CMD_SYNC https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=0580dc4bb64f - [BlueZ,v2,5/5] client/mgmt: Add hci-cmd command https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=95e89cd2e4f8 You are awesome, thank you!
diff --git a/doc/mgmt-api.txt b/doc/mgmt-api.txt index 01a23526a4ef..b4a5776574f7 100644 --- a/doc/mgmt-api.txt +++ b/doc/mgmt-api.txt @@ -3992,6 +3992,36 @@ Cancel Transmit Mesh Packet Command Possible errors: Failed Invalid Parameters +Send HCI command and wait for event Command +=========================================== + + Command Code: 0x005B + Controller Index: <controller id> + Command Parameters: Opcode (2 Octets) + Event (1 Octet) + Timeout (1 Octet) + Parameter Length (2 Octets) + Parameter (variable) + Return Parameters: Response (1-variable Octets) + + This command may be used to send a HCI command and wait for an + (optional) event. + + The HCI command is specified by the Opcode, any arbitrary is supported + including vendor commands, but contrary to the like of + Raw/User channel it is run as an HCI command send by the kernel + since it uses its command synchronization thus it is possible to wait + for a specific event as a response. + + Setting event to 0x00 will cause the command to wait for either + HCI Command Status or HCI Command Complete. + + Timeout is specified in seconds, setting it to 0 will cause the + default timeout to be used. + + Possible errors: Failed + Invalid Parameters + Command Complete Event ======================
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This adds Send HCI command and wait for event Command initial documentation. --- doc/mgmt-api.txt | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+)