Message ID | 20230224-btbcm-wtf-v1-1-98b56133a5b7@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 3629e1ce77216adb98c68af9027ad7e1119b4350 |
Headers | show |
Series | [RESEND] bluetooth: btbcm: Fix logic error in forming the board name. | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | fail | WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search 1: T3 Title has trailing punctuation (.): "[RESEND] bluetooth: btbcm: Fix logic error in forming the board name." |
tedd_an/SubjectPrefix | fail | "Bluetooth: " prefix is not specified in the subject |
tedd_an/BuildKernel | success | BuildKernel PASS |
tedd_an/CheckAllWarning | success | CheckAllWarning PASS |
tedd_an/CheckSparse | success | CheckSparse PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/BuildKernel32 | success | BuildKernel32 PASS |
tedd_an/TestRunnerSetup | success | TestRunnerSetup PASS |
tedd_an/TestRunner_l2cap-tester | success | TestRunner PASS |
tedd_an/TestRunner_iso-tester | success | TestRunner PASS |
tedd_an/TestRunner_bnep-tester | success | TestRunner PASS |
tedd_an/TestRunner_mgmt-tester | success | TestRunner PASS |
tedd_an/TestRunner_rfcomm-tester | success | TestRunner PASS |
tedd_an/TestRunner_sco-tester | success | TestRunner PASS |
tedd_an/TestRunner_ioctl-tester | success | TestRunner PASS |
tedd_an/TestRunner_mesh-tester | success | TestRunner PASS |
tedd_an/TestRunner_smp-tester | success | TestRunner PASS |
tedd_an/TestRunner_userchan-tester | success | TestRunner PASS |
tedd_an/IncrementalBuild | success | Incremental 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=728567 ---Test result--- Test Summary: CheckPatch PASS 0.74 seconds GitLint FAIL 0.63 seconds SubjectPrefix FAIL 0.39 seconds BuildKernel PASS 31.97 seconds CheckAllWarning PASS 34.72 seconds CheckSparse PASS 39.10 seconds CheckSmatch PASS 106.14 seconds BuildKernel32 PASS 30.78 seconds TestRunnerSetup PASS 438.26 seconds TestRunner_l2cap-tester PASS 16.56 seconds TestRunner_iso-tester PASS 17.61 seconds TestRunner_bnep-tester PASS 5.83 seconds TestRunner_mgmt-tester PASS 113.20 seconds TestRunner_rfcomm-tester PASS 9.21 seconds TestRunner_sco-tester PASS 8.42 seconds TestRunner_ioctl-tester PASS 9.89 seconds TestRunner_mesh-tester PASS 7.27 seconds TestRunner_smp-tester PASS 8.23 seconds TestRunner_userchan-tester PASS 6.05 seconds IncrementalBuild PASS 28.75 seconds Details ############################## Test: GitLint - FAIL Desc: Run gitlint Output: [RESEND] bluetooth: btbcm: Fix logic error in forming the board name. WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search 1: T3 Title has trailing punctuation (.): "[RESEND] bluetooth: btbcm: Fix logic error in forming the board name." ############################## Test: SubjectPrefix - FAIL Desc: Check subject contains "Bluetooth" prefix Output: "Bluetooth: " prefix is not specified in the subject --- 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 Fri, 10 Mar 2023 11:28:42 +0100 you wrote: > From: Sasha Finkelstein <fnkl.kernel@gmail.com> > > This patch fixes an incorrect loop exit condition in code that replaces > '/' symbols in the board name. There might also be a memory corruption > issue here, but it is unlikely to be a real problem. > > Cc: <stable@vger.kernel.org> > Signed-off-by: Sasha Finkelstein <fnkl.kernel@gmail.com> > > [...] Here is the summary with links: - [RESEND] bluetooth: btbcm: Fix logic error in forming the board name. https://git.kernel.org/bluetooth/bluetooth-next/c/3629e1ce7721 You are awesome, thank you!
diff --git a/drivers/bluetooth/btbcm.c b/drivers/bluetooth/btbcm.c index 3006e2a0f37e..43e98a598bd9 100644 --- a/drivers/bluetooth/btbcm.c +++ b/drivers/bluetooth/btbcm.c @@ -511,7 +511,7 @@ static const char *btbcm_get_board_name(struct device *dev) len = strlen(tmp) + 1; board_type = devm_kzalloc(dev, len, GFP_KERNEL); strscpy(board_type, tmp, len); - for (i = 0; i < board_type[i]; i++) { + for (i = 0; i < len; i++) { if (board_type[i] == '/') board_type[i] = '-'; }