Message ID | 20250520084230.502667-1-dmantipov@yandex.ru |
---|---|
State | Accepted |
Commit | 623029dcc53837d409deb70b65eb7c7b83ab9b9a |
Headers | show |
Series | Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach() | expand |
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=964481 ---Test result--- Test Summary: CheckPatch PENDING 0.29 seconds GitLint PENDING 0.23 seconds SubjectPrefix PASS 0.12 seconds BuildKernel PASS 24.58 seconds CheckAllWarning PASS 27.41 seconds CheckSparse PASS 31.05 seconds BuildKernel32 PASS 25.19 seconds TestRunnerSetup PASS 461.99 seconds TestRunner_l2cap-tester PASS 22.44 seconds TestRunner_iso-tester PASS 28.91 seconds TestRunner_bnep-tester PASS 4.89 seconds TestRunner_mgmt-tester FAIL 118.96 seconds TestRunner_rfcomm-tester PASS 7.88 seconds TestRunner_sco-tester PASS 13.06 seconds TestRunner_ioctl-tester PASS 8.39 seconds TestRunner_mesh-tester FAIL 6.27 seconds TestRunner_smp-tester PASS 7.23 seconds TestRunner_userchan-tester PASS 5.04 seconds IncrementalBuild PENDING 0.85 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: TestRunner_mgmt-tester - FAIL Desc: Run mgmt-tester with test-runner Output: Total: 490, Passed: 485 (99.0%), Failed: 1, Not Run: 4 Failed Test Cases LL Privacy - Set Device Flag 1 (Device Privacy) Failed 0.135 seconds ############################## Test: TestRunner_mesh-tester - FAIL Desc: Run mesh-tester with test-runner Output: Total: 10, Passed: 9 (90.0%), Failed: 1, Not Run: 0 Failed Test Cases Mesh - Send cancel - 2 Failed 0.119 seconds ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Tue, 20 May 2025 11:42:30 +0300 you wrote: > In 'mgmt_mesh_foreach()', iterate over mesh commands > rather than generic mgmt ones. Compile tested only. > > Fixes: b338d91703fa ("Bluetooth: Implement support for Mesh") > Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru> > --- > net/bluetooth/mgmt_util.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach() https://git.kernel.org/bluetooth/bluetooth-next/c/a8f011879811 You are awesome, thank you!
diff --git a/net/bluetooth/mgmt_util.c b/net/bluetooth/mgmt_util.c index e5ff65e424b5..3713ff490c65 100644 --- a/net/bluetooth/mgmt_util.c +++ b/net/bluetooth/mgmt_util.c @@ -304,7 +304,7 @@ void mgmt_mesh_foreach(struct hci_dev *hdev, { struct mgmt_mesh_tx *mesh_tx, *tmp; - list_for_each_entry_safe(mesh_tx, tmp, &hdev->mgmt_pending, list) { + list_for_each_entry_safe(mesh_tx, tmp, &hdev->mesh_pending, list) { if (!sk || mesh_tx->sk == sk) cb(mesh_tx, data); }
In 'mgmt_mesh_foreach()', iterate over mesh commands rather than generic mgmt ones. Compile tested only. Fixes: b338d91703fa ("Bluetooth: Implement support for Mesh") Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru> --- net/bluetooth/mgmt_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)