public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ 0/2] lib/bluetooth/mgmt: Add missing mgmt_op entry for HCI_CMD_SYNC
@ 2026-03-09  4:59 Gabriel Woloz
  2026-03-09  4:59 ` [PATCH BlueZ 1/1] lib/bluetooth/mgmt: Added missing command "HCI Cmd Sync" to mgmt_op Gabriel Woloz
  2026-03-09 14:00 ` [PATCH BlueZ 0/2] " patchwork-bot+bluetooth
  0 siblings, 2 replies; 4+ messages in thread
From: Gabriel Woloz @ 2026-03-09  4:59 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Gabriel Woloz

MGMT_OP_HCI_CMD_SYNC (0x005B) is missing from the mgmt_op[] array in lib/bluetooth/mgmt.h. The array terminates prematurely at 0x005A. Add the missing entry under the name "HCI Cmd Sync".

Gabriel Woloz (1):
  lib/bluetooth/mgmt: Added missing command "HCI Cmd Sync" to mgmt_op

 lib/bluetooth/mgmt.h | 1 +
 1 file changed, 1 insertion(+)

-- 
2.53.0.windows.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH BlueZ 1/1] lib/bluetooth/mgmt: Added missing command "HCI Cmd Sync" to mgmt_op
  2026-03-09  4:59 [PATCH BlueZ 0/2] lib/bluetooth/mgmt: Add missing mgmt_op entry for HCI_CMD_SYNC Gabriel Woloz
@ 2026-03-09  4:59 ` Gabriel Woloz
  2026-03-09  6:21   ` lib/bluetooth/mgmt: Add missing mgmt_op entry for HCI_CMD_SYNC bluez.test.bot
  2026-03-09 14:00 ` [PATCH BlueZ 0/2] " patchwork-bot+bluetooth
  1 sibling, 1 reply; 4+ messages in thread
From: Gabriel Woloz @ 2026-03-09  4:59 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Gabriel Woloz

---
 lib/bluetooth/mgmt.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/bluetooth/mgmt.h b/lib/bluetooth/mgmt.h
index 1ad52529f..1c741ed55 100644
--- a/lib/bluetooth/mgmt.h
+++ b/lib/bluetooth/mgmt.h
@@ -1199,6 +1199,7 @@ static const char *mgmt_op[] = {
 	"Read Mesh Features",
 	"Mesh Send",
 	"Mesh Send Cancel",
+	"HCI Cmd Sync",
 };
 
 static const char *mgmt_ev[] = {
-- 
2.53.0.windows.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: lib/bluetooth/mgmt: Add missing mgmt_op entry for HCI_CMD_SYNC
  2026-03-09  4:59 ` [PATCH BlueZ 1/1] lib/bluetooth/mgmt: Added missing command "HCI Cmd Sync" to mgmt_op Gabriel Woloz
@ 2026-03-09  6:21   ` bluez.test.bot
  0 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2026-03-09  6:21 UTC (permalink / raw)
  To: linux-bluetooth, wolozgabriel

[-- 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=1063415

---Test result---

Test Summary:
CheckPatch                    PENDING   0.37 seconds
GitLint                       PENDING   0.24 seconds
BuildEll                      PASS      18.04 seconds
BluezMake                     PASS      656.02 seconds
MakeCheck                     PASS      18.46 seconds
MakeDistcheck                 PASS      225.01 seconds
CheckValgrind                 PASS      281.58 seconds
CheckSmatch                   PASS      317.30 seconds
bluezmakeextell               PASS      168.76 seconds
IncrementalBuild              PENDING   0.24 seconds
ScanBuild                     PASS      955.62 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] 4+ messages in thread

* Re: [PATCH BlueZ 0/2] lib/bluetooth/mgmt: Add missing mgmt_op entry for HCI_CMD_SYNC
  2026-03-09  4:59 [PATCH BlueZ 0/2] lib/bluetooth/mgmt: Add missing mgmt_op entry for HCI_CMD_SYNC Gabriel Woloz
  2026-03-09  4:59 ` [PATCH BlueZ 1/1] lib/bluetooth/mgmt: Added missing command "HCI Cmd Sync" to mgmt_op Gabriel Woloz
@ 2026-03-09 14:00 ` patchwork-bot+bluetooth
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2026-03-09 14:00 UTC (permalink / raw)
  To: Gabriel Woloz; +Cc: linux-bluetooth

Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Mon,  9 Mar 2026 00:59:01 -0400 you wrote:
> MGMT_OP_HCI_CMD_SYNC (0x005B) is missing from the mgmt_op[] array in lib/bluetooth/mgmt.h. The array terminates prematurely at 0x005A. Add the missing entry under the name "HCI Cmd Sync".
> 
> Gabriel Woloz (1):
>   lib/bluetooth/mgmt: Added missing command "HCI Cmd Sync" to mgmt_op
> 
>  lib/bluetooth/mgmt.h | 1 +
>  1 file changed, 1 insertion(+)

Here is the summary with links:
  - [BlueZ,1/1] lib/bluetooth/mgmt: Added missing command "HCI Cmd Sync" to mgmt_op
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=9c6e97516cb1

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-03-09 14:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-09  4:59 [PATCH BlueZ 0/2] lib/bluetooth/mgmt: Add missing mgmt_op entry for HCI_CMD_SYNC Gabriel Woloz
2026-03-09  4:59 ` [PATCH BlueZ 1/1] lib/bluetooth/mgmt: Added missing command "HCI Cmd Sync" to mgmt_op Gabriel Woloz
2026-03-09  6:21   ` lib/bluetooth/mgmt: Add missing mgmt_op entry for HCI_CMD_SYNC bluez.test.bot
2026-03-09 14:00 ` [PATCH BlueZ 0/2] " patchwork-bot+bluetooth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox