Message ID | 20250324134920.2111414-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | e45343a37bf8a30ba1059743a3645551639974b7 |
Headers | show |
Series | [BlueZ,v3,1/5] mgmt-api: Add missing Device Flag | 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:1876:26: warning: Variable length array is used.monitor/packet.c: note: in included file:monitor/bt.h:3607:52: warning: array of flexible structuresmonitor/bt.h:3595: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=946846 ---Test result--- Test Summary: CheckPatch PENDING 0.29 seconds GitLint PENDING 0.24 seconds BuildEll PASS 20.49 seconds BluezMake PASS 1452.10 seconds MakeCheck PASS 12.82 seconds MakeDistcheck PASS 158.05 seconds CheckValgrind PASS 216.19 seconds CheckSmatch WARNING 287.51 seconds bluezmakeextell PASS 98.28 seconds IncrementalBuild PENDING 0.31 seconds ScanBuild PASS 867.26 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:1876:26: warning: Variable length array is used.monitor/packet.c: note: in included file:monitor/bt.h:3607:52: warning: array of flexible structuresmonitor/bt.h:3595: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 Mon, 24 Mar 2025 09:49:16 -0400 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This adds the missing Device Flag - Address Resolution = bit(2) > --- > doc/mgmt-api.txt | 1 + > 1 file changed, 1 insertion(+) Here is the summary with links: - [BlueZ,v3,1/5] mgmt-api: Add missing Device Flag https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=e45343a37bf8 - [BlueZ,v3,2/5] mgmt-api: Add LL Privacy setting https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=cf8b2f308e31 - [BlueZ,v3,3/5] gatt-database: Fix always registering CentralAddressResolution (no matching commit) - [BlueZ,v3,4/5] mgmt-tester: Fix missing MGMT_SETTING_LL_PRIVACY https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=122c9fcacfa9 - [BlueZ,v3,5/5] monitor: Add decoding of MGMT LL Privacy setting https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=912e2f54fd57 You are awesome, thank you!
diff --git a/doc/mgmt-api.txt b/doc/mgmt-api.txt index b4a5776574f7..3181607d94fa 100644 --- a/doc/mgmt-api.txt +++ b/doc/mgmt-api.txt @@ -3429,6 +3429,7 @@ Get Device Flags Command 0 Remote Wakeup enabled 1 Device Privacy Mode enabled + 2 Address Resolution enabled This command generates a Command Complete event on success or a Command Status event on failure.
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This adds the missing Device Flag - Address Resolution = bit(2) --- doc/mgmt-api.txt | 1 + 1 file changed, 1 insertion(+)