* [PATCH RESEND] bluetooth: btbcm: Fix logic error in forming the board name.
@ 2023-03-10 8:07 Sasha Finkelstein via B4 Relay
2023-03-10 8:10 ` Greg KH
2023-03-10 8:40 ` [RESEND] " bluez.test.bot
0 siblings, 2 replies; 6+ messages in thread
From: Sasha Finkelstein via B4 Relay @ 2023-03-10 8:07 UTC (permalink / raw)
To: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz
Cc: linux-bluetooth, stable, linux-kernel, Sasha Finkelstein
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.
Signed-off-by: Sasha Finkelstein <fnkl.kernel@gmail.com>
---
drivers/bluetooth/btbcm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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] = '-';
}
---
base-commit: c9c3395d5e3dcc6daee66c6908354d47bf98cb0c
change-id: 20230224-btbcm-wtf-ff32fed3e930
Best regards,
--
Sasha Finkelstein <fnkl.kernel@gmail.com>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH RESEND] bluetooth: btbcm: Fix logic error in forming the board name.
2023-03-10 8:07 [PATCH RESEND] bluetooth: btbcm: Fix logic error in forming the board name Sasha Finkelstein via B4 Relay
@ 2023-03-10 8:10 ` Greg KH
2023-03-10 9:41 ` Sasha Finkelstein
2023-03-10 8:40 ` [RESEND] " bluez.test.bot
1 sibling, 1 reply; 6+ messages in thread
From: Greg KH @ 2023-03-10 8:10 UTC (permalink / raw)
To: fnkl.kernel
Cc: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz,
linux-bluetooth, stable, linux-kernel
On Fri, Mar 10, 2023 at 09:07:33AM +0100, Sasha Finkelstein via B4 Relay 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.
>
> Signed-off-by: Sasha Finkelstein <fnkl.kernel@gmail.com>
> ---
> drivers/bluetooth/btbcm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
<formletter>
This is not the correct way to submit patches for inclusion in the
stable kernel tree. Please read:
https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
for how to do this properly.
</formletter>
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [RESEND] bluetooth: btbcm: Fix logic error in forming the board name.
2023-03-10 8:07 [PATCH RESEND] bluetooth: btbcm: Fix logic error in forming the board name Sasha Finkelstein via B4 Relay
2023-03-10 8:10 ` Greg KH
@ 2023-03-10 8:40 ` bluez.test.bot
1 sibling, 0 replies; 6+ messages in thread
From: bluez.test.bot @ 2023-03-10 8:40 UTC (permalink / raw)
To: linux-bluetooth, devnull+fnkl.kernel.gmail.com
[-- Attachment #1: Type: text/plain, Size: 2220 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=728518
---Test result---
Test Summary:
CheckPatch PASS 0.59 seconds
GitLint FAIL 0.67 seconds
SubjectPrefix FAIL 0.41 seconds
BuildKernel PASS 37.57 seconds
CheckAllWarning PASS 41.44 seconds
CheckSparse PASS 46.53 seconds
CheckSmatch PASS 125.81 seconds
BuildKernel32 PASS 37.45 seconds
TestRunnerSetup PASS 527.43 seconds
TestRunner_l2cap-tester PASS 19.21 seconds
TestRunner_iso-tester PASS 21.61 seconds
TestRunner_bnep-tester PASS 7.16 seconds
TestRunner_mgmt-tester PASS 130.18 seconds
TestRunner_rfcomm-tester PASS 10.74 seconds
TestRunner_sco-tester PASS 9.58 seconds
TestRunner_ioctl-tester PASS 11.52 seconds
TestRunner_mesh-tester PASS 8.97 seconds
TestRunner_smp-tester PASS 9.95 seconds
TestRunner_userchan-tester PASS 7.04 seconds
IncrementalBuild PASS 34.06 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
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH RESEND] bluetooth: btbcm: Fix logic error in forming the board name.
2023-03-10 8:10 ` Greg KH
@ 2023-03-10 9:41 ` Sasha Finkelstein
2023-03-10 9:53 ` Greg KH
0 siblings, 1 reply; 6+ messages in thread
From: Sasha Finkelstein @ 2023-03-10 9:41 UTC (permalink / raw)
To: Greg KH
Cc: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz,
linux-bluetooth, stable, linux-kernel
> <formletter>
>
> This is not the correct way to submit patches for inclusion in the
> stable kernel tree. Please read:
> https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
> for how to do this properly.
>
> </formletter>
Sorry about that, let's just skip the stable tree part for now then.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH RESEND] bluetooth: btbcm: Fix logic error in forming the board name.
2023-03-10 9:41 ` Sasha Finkelstein
@ 2023-03-10 9:53 ` Greg KH
0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2023-03-10 9:53 UTC (permalink / raw)
To: Sasha Finkelstein
Cc: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz,
linux-bluetooth, stable, linux-kernel
On Fri, Mar 10, 2023 at 10:41:28AM +0100, Sasha Finkelstein wrote:
> > <formletter>
> >
> > This is not the correct way to submit patches for inclusion in the
> > stable kernel tree. Please read:
> > https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
> > for how to do this properly.
> >
> > </formletter>
> Sorry about that, let's just skip the stable tree part for now then.
That's not how to solve the problem, if it's a bug that needs to be
fixed in stable kernels, submit it properly and it will automatically be
propagated there as the documentation states.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [RESEND] bluetooth: btbcm: Fix logic error in forming the board name.
2023-03-10 10:28 [PATCH RESEND] " Sasha Finkelstein via B4 Relay
@ 2023-03-10 11:01 ` bluez.test.bot
0 siblings, 0 replies; 6+ messages in thread
From: bluez.test.bot @ 2023-03-10 11:01 UTC (permalink / raw)
To: linux-bluetooth, devnull+fnkl.kernel.gmail.com
[-- Attachment #1: Type: text/plain, Size: 2218 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=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
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-03-10 11:02 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-10 8:07 [PATCH RESEND] bluetooth: btbcm: Fix logic error in forming the board name Sasha Finkelstein via B4 Relay
2023-03-10 8:10 ` Greg KH
2023-03-10 9:41 ` Sasha Finkelstein
2023-03-10 9:53 ` Greg KH
2023-03-10 8:40 ` [RESEND] " bluez.test.bot
-- strict thread matches above, loose matches on Subject: below --
2023-03-10 10:28 [PATCH RESEND] " Sasha Finkelstein via B4 Relay
2023-03-10 11:01 ` [RESEND] " bluez.test.bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).