* [PATCH] Bluetooth: L2CAP: Fix build errors in some archs
@ 2022-08-12 22:39 Luiz Augusto von Dentz
2022-08-12 23:05 ` bluez.test.bot
0 siblings, 1 reply; 11+ messages in thread
From: Luiz Augusto von Dentz @ 2022-08-12 22:39 UTC (permalink / raw)
To: linux-bluetooth
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This attempts to fix the follow errors:
In function 'memcmp',
inlined from 'bacmp' at ./include/net/bluetooth/bluetooth.h:347:9,
inlined from 'l2cap_global_chan_by_psm' at
net/bluetooth/l2cap_core.c:2003:15:
./include/linux/fortify-string.h:44:33: error: '__builtin_memcmp'
specified bound 6 exceeds source size 0 [-Werror=stringop-overread]
44 | #define __underlying_memcmp __builtin_memcmp
| ^
./include/linux/fortify-string.h:420:16: note: in expansion of macro
'__underlying_memcmp'
420 | return __underlying_memcmp(p, q, size);
| ^~~~~~~~~~~~~~~~~~~
In function 'memcmp',
inlined from 'bacmp' at ./include/net/bluetooth/bluetooth.h:347:9,
inlined from 'l2cap_global_chan_by_psm' at
net/bluetooth/l2cap_core.c:2004:15:
./include/linux/fortify-string.h:44:33: error: '__builtin_memcmp'
specified bound 6 exceeds source size 0 [-Werror=stringop-overread]
44 | #define __underlying_memcmp __builtin_memcmp
| ^
./include/linux/fortify-string.h:420:16: note: in expansion of macro
'__underlying_memcmp'
420 | return __underlying_memcmp(p, q, size);
| ^~~~~~~~~~~~~~~~~~~
Fixes: 332f1795ca20 ("Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression")
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
---
net/bluetooth/l2cap_core.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index 1c39fc40591b..1dc05c77c22f 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -1992,12 +1992,12 @@ static struct l2cap_chan *l2cap_global_chan_by_psm(int state, __le16 psm,
src_match = !bacmp(&c->src, src);
dst_match = !bacmp(&c->dst, dst);
if (src_match && dst_match) {
- c = l2cap_chan_hold_unless_zero(c);
- if (!c)
+ c1 = l2cap_chan_hold_unless_zero(c);
+ if (!c1)
continue;
read_unlock(&chan_list_lock);
- return c;
+ return c1;
}
/* Closest match */
--
2.37.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* RE: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-12 22:39 [PATCH] Bluetooth: L2CAP: Fix build errors in some archs Luiz Augusto von Dentz @ 2022-08-12 23:05 ` bluez.test.bot 2022-08-12 23:12 ` Luiz Augusto von Dentz 0 siblings, 1 reply; 11+ messages in thread From: bluez.test.bot @ 2022-08-12 23:05 UTC (permalink / raw) To: linux-bluetooth, luiz.dentz [-- Attachment #1: Type: text/plain, Size: 1100 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=667285 ---Test result--- Test Summary: CheckPatch PASS 1.34 seconds GitLint PASS 0.79 seconds SubjectPrefix PASS 0.58 seconds BuildKernel PASS 39.92 seconds BuildKernel32 PASS 35.20 seconds Incremental Build with patchesPASS 49.68 seconds TestRunner: Setup PASS 584.32 seconds TestRunner: l2cap-tester PASS 19.76 seconds TestRunner: bnep-tester PASS 7.80 seconds TestRunner: mgmt-tester PASS 118.02 seconds TestRunner: rfcomm-tester PASS 11.69 seconds TestRunner: sco-tester PASS 11.30 seconds TestRunner: smp-tester PASS 11.48 seconds TestRunner: userchan-tester PASS 8.07 seconds --- Regards, Linux Bluetooth ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-12 23:05 ` bluez.test.bot @ 2022-08-12 23:12 ` Luiz Augusto von Dentz 2022-08-13 7:30 ` Sudip Mukherjee 0 siblings, 1 reply; 11+ messages in thread From: Luiz Augusto von Dentz @ 2022-08-12 23:12 UTC (permalink / raw) To: linux-bluetooth@vger.kernel.org; +Cc: palmer, Sudip Mukherjee Hi Palmer, Sudip, On Fri, Aug 12, 2022 at 4:05 PM <bluez.test.bot@gmail.com> wrote: > > 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=667285 Could you guys try with the above change, I think the culprit is actually setting c = NULL which triggers some compiler to think it may be passed to bacmp. > ---Test result--- > > Test Summary: > CheckPatch PASS 1.34 seconds > GitLint PASS 0.79 seconds > SubjectPrefix PASS 0.58 seconds > BuildKernel PASS 39.92 seconds > BuildKernel32 PASS 35.20 seconds > Incremental Build with patchesPASS 49.68 seconds > TestRunner: Setup PASS 584.32 seconds > TestRunner: l2cap-tester PASS 19.76 seconds > TestRunner: bnep-tester PASS 7.80 seconds > TestRunner: mgmt-tester PASS 118.02 seconds > TestRunner: rfcomm-tester PASS 11.69 seconds > TestRunner: sco-tester PASS 11.30 seconds > TestRunner: smp-tester PASS 11.48 seconds > TestRunner: userchan-tester PASS 8.07 seconds > > > > --- > Regards, > Linux Bluetooth -- Luiz Augusto von Dentz ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-12 23:12 ` Luiz Augusto von Dentz @ 2022-08-13 7:30 ` Sudip Mukherjee 2022-08-13 19:32 ` Luiz Augusto von Dentz 0 siblings, 1 reply; 11+ messages in thread From: Sudip Mukherjee @ 2022-08-13 7:30 UTC (permalink / raw) To: Luiz Augusto von Dentz; +Cc: linux-bluetooth@vger.kernel.org, Palmer Dabbelt Hi Luiz, On Sat, Aug 13, 2022 at 12:12 AM Luiz Augusto von Dentz <luiz.dentz@gmail.com> wrote: > > Hi Palmer, Sudip, > > On Fri, Aug 12, 2022 at 4:05 PM <bluez.test.bot@gmail.com> wrote: > > > > 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=667285 > > Could you guys try with the above change, I think the culprit is > actually setting c = NULL which triggers some compiler to think it may > be passed to bacmp. I get "No patches to display" on that link. -- Regards Sudip ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-13 7:30 ` Sudip Mukherjee @ 2022-08-13 19:32 ` Luiz Augusto von Dentz 2022-08-14 10:48 ` Sudip Mukherjee 0 siblings, 1 reply; 11+ messages in thread From: Luiz Augusto von Dentz @ 2022-08-13 19:32 UTC (permalink / raw) To: Sudip Mukherjee; +Cc: linux-bluetooth@vger.kernel.org, Palmer Dabbelt Hi Sudip, On Sat, Aug 13, 2022 at 12:31 AM Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote: > > Hi Luiz, > > On Sat, Aug 13, 2022 at 12:12 AM Luiz Augusto von Dentz > <luiz.dentz@gmail.com> wrote: > > > > Hi Palmer, Sudip, > > > > On Fri, Aug 12, 2022 at 4:05 PM <bluez.test.bot@gmail.com> wrote: > > > > > > 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=667285 > > > > Could you guys try with the above change, I think the culprit is > > actually setting c = NULL which triggers some compiler to think it may > > be passed to bacmp. > > I get "No patches to display" on that link. That is probably because Ive send a v2: https://patchwork.kernel.org/project/bluetooth/list/?series=667289 > > -- > Regards > Sudip -- Luiz Augusto von Dentz ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-13 19:32 ` Luiz Augusto von Dentz @ 2022-08-14 10:48 ` Sudip Mukherjee 2022-08-15 17:55 ` Luiz Augusto von Dentz 0 siblings, 1 reply; 11+ messages in thread From: Sudip Mukherjee @ 2022-08-14 10:48 UTC (permalink / raw) To: Luiz Augusto von Dentz; +Cc: linux-bluetooth@vger.kernel.org, Palmer Dabbelt Hi Luiz, On Sat, Aug 13, 2022 at 8:32 PM Luiz Augusto von Dentz <luiz.dentz@gmail.com> wrote: > > Hi Sudip, > > On Sat, Aug 13, 2022 at 12:31 AM Sudip Mukherjee > <sudipm.mukherjee@gmail.com> wrote: > > > > Hi Luiz, > > > > On Sat, Aug 13, 2022 at 12:12 AM Luiz Augusto von Dentz > > <luiz.dentz@gmail.com> wrote: > > > > > > Hi Palmer, Sudip, > > > > > > On Fri, Aug 12, 2022 at 4:05 PM <bluez.test.bot@gmail.com> wrote: > > > > > > > > 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=667285 > > > > > > Could you guys try with the above change, I think the culprit is > > > actually setting c = NULL which triggers some compiler to think it may > > > be passed to bacmp. > > > > I get "No patches to display" on that link. > > That is probably because Ive send a v2: I have not tested your patch as the build failure is not present with the bluetooth master branch. Please let me know if this was the wrong branch. -- Regards Sudip ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-14 10:48 ` Sudip Mukherjee @ 2022-08-15 17:55 ` Luiz Augusto von Dentz 2022-08-18 21:28 ` Sudip Mukherjee 0 siblings, 1 reply; 11+ messages in thread From: Luiz Augusto von Dentz @ 2022-08-15 17:55 UTC (permalink / raw) To: Sudip Mukherjee; +Cc: linux-bluetooth@vger.kernel.org, Palmer Dabbelt Hi Sudip, On Sun, Aug 14, 2022 at 3:48 AM Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote: > > Hi Luiz, > > On Sat, Aug 13, 2022 at 8:32 PM Luiz Augusto von Dentz > <luiz.dentz@gmail.com> wrote: > > > > Hi Sudip, > > > > On Sat, Aug 13, 2022 at 12:31 AM Sudip Mukherjee > > <sudipm.mukherjee@gmail.com> wrote: > > > > > > Hi Luiz, > > > > > > On Sat, Aug 13, 2022 at 12:12 AM Luiz Augusto von Dentz > > > <luiz.dentz@gmail.com> wrote: > > > > > > > > Hi Palmer, Sudip, > > > > > > > > On Fri, Aug 12, 2022 at 4:05 PM <bluez.test.bot@gmail.com> wrote: > > > > > > > > > > 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=667285 > > > > > > > > Could you guys try with the above change, I think the culprit is > > > > actually setting c = NULL which triggers some compiler to think it may > > > > be passed to bacmp. > > > > > > I get "No patches to display" on that link. > > > > That is probably because Ive send a v2: > > I have not tested your patch as the build failure is not present with > the bluetooth master branch. Please let me know if this was the wrong > branch. And you can't apply on top of the tree that you are able to reproduce? > > -- > Regards > Sudip -- Luiz Augusto von Dentz ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-15 17:55 ` Luiz Augusto von Dentz @ 2022-08-18 21:28 ` Sudip Mukherjee 2022-08-18 22:03 ` Luiz Augusto von Dentz 0 siblings, 1 reply; 11+ messages in thread From: Sudip Mukherjee @ 2022-08-18 21:28 UTC (permalink / raw) To: Luiz Augusto von Dentz; +Cc: linux-bluetooth@vger.kernel.org, Palmer Dabbelt On Mon, Aug 15, 2022 at 6:55 PM Luiz Augusto von Dentz <luiz.dentz@gmail.com> wrote: > > Hi Sudip, > > On Sun, Aug 14, 2022 at 3:48 AM Sudip Mukherjee > <sudipm.mukherjee@gmail.com> wrote: > > > > Hi Luiz, > > > > On Sat, Aug 13, 2022 at 8:32 PM Luiz Augusto von Dentz > > <luiz.dentz@gmail.com> wrote: > > > > > > Hi Sudip, > > > > > > On Sat, Aug 13, 2022 at 12:31 AM Sudip Mukherjee > > > <sudipm.mukherjee@gmail.com> wrote: > > > > > > > > Hi Luiz, > > > > > > > > On Sat, Aug 13, 2022 at 12:12 AM Luiz Augusto von Dentz > > > > <luiz.dentz@gmail.com> wrote: > > > > > > > > > > Hi Palmer, Sudip, > > > > > > > > > > On Fri, Aug 12, 2022 at 4:05 PM <bluez.test.bot@gmail.com> wrote: > > > > > > > > > > > > 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=667285 > > > > > > > > > > Could you guys try with the above change, I think the culprit is > > > > > actually setting c = NULL which triggers some compiler to think it may > > > > > be passed to bacmp. > > > > > > > > I get "No patches to display" on that link. > > > > > > That is probably because Ive send a v2: > > > > I have not tested your patch as the build failure is not present with > > the bluetooth master branch. Please let me know if this was the wrong > > branch. > > And you can't apply on top of the tree that you are able to reproduce? I can see its already in linux-next and I don't see those build failures on next-20220818. -- Regards Sudip ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-18 21:28 ` Sudip Mukherjee @ 2022-08-18 22:03 ` Luiz Augusto von Dentz 2022-08-19 7:28 ` Sudip Mukherjee 0 siblings, 1 reply; 11+ messages in thread From: Luiz Augusto von Dentz @ 2022-08-18 22:03 UTC (permalink / raw) To: Sudip Mukherjee; +Cc: linux-bluetooth@vger.kernel.org, Palmer Dabbelt Hi Sudip, On Thu, Aug 18, 2022 at 2:29 PM Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote: > > On Mon, Aug 15, 2022 at 6:55 PM Luiz Augusto von Dentz > <luiz.dentz@gmail.com> wrote: > > > > Hi Sudip, > > > > On Sun, Aug 14, 2022 at 3:48 AM Sudip Mukherjee > > <sudipm.mukherjee@gmail.com> wrote: > > > > > > Hi Luiz, > > > > > > On Sat, Aug 13, 2022 at 8:32 PM Luiz Augusto von Dentz > > > <luiz.dentz@gmail.com> wrote: > > > > > > > > Hi Sudip, > > > > > > > > On Sat, Aug 13, 2022 at 12:31 AM Sudip Mukherjee > > > > <sudipm.mukherjee@gmail.com> wrote: > > > > > > > > > > Hi Luiz, > > > > > > > > > > On Sat, Aug 13, 2022 at 12:12 AM Luiz Augusto von Dentz > > > > > <luiz.dentz@gmail.com> wrote: > > > > > > > > > > > > Hi Palmer, Sudip, > > > > > > > > > > > > On Fri, Aug 12, 2022 at 4:05 PM <bluez.test.bot@gmail.com> wrote: > > > > > > > > > > > > > > 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=667285 > > > > > > > > > > > > Could you guys try with the above change, I think the culprit is > > > > > > actually setting c = NULL which triggers some compiler to think it may > > > > > > be passed to bacmp. > > > > > > > > > > I get "No patches to display" on that link. > > > > > > > > That is probably because Ive send a v2: > > > > > > I have not tested your patch as the build failure is not present with > > > the bluetooth master branch. Please let me know if this was the wrong > > > branch. > > > > And you can't apply on top of the tree that you are able to reproduce? > > I can see its already in linux-next and I don't see those build > failures on next-20220818. Alright, I will send a pull request including it later this week just in case it reappears for some reason. > > -- > Regards > Sudip -- Luiz Augusto von Dentz ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-18 22:03 ` Luiz Augusto von Dentz @ 2022-08-19 7:28 ` Sudip Mukherjee 2022-08-19 18:49 ` Luiz Augusto von Dentz 0 siblings, 1 reply; 11+ messages in thread From: Sudip Mukherjee @ 2022-08-19 7:28 UTC (permalink / raw) To: Luiz Augusto von Dentz; +Cc: linux-bluetooth@vger.kernel.org, Palmer Dabbelt On Thu, Aug 18, 2022 at 11:04 PM Luiz Augusto von Dentz <luiz.dentz@gmail.com> wrote: > > Hi Sudip, > > On Thu, Aug 18, 2022 at 2:29 PM Sudip Mukherjee > <sudipm.mukherjee@gmail.com> wrote: > > > > On Mon, Aug 15, 2022 at 6:55 PM Luiz Augusto von Dentz > > <luiz.dentz@gmail.com> wrote: > > > > > > Hi Sudip, > > > > > > On Sun, Aug 14, 2022 at 3:48 AM Sudip Mukherjee > > > <sudipm.mukherjee@gmail.com> wrote: > > > > > > > > Hi Luiz, > > > > > > > > On Sat, Aug 13, 2022 at 8:32 PM Luiz Augusto von Dentz > > > > <luiz.dentz@gmail.com> wrote: > > > > > > > > > > Hi Sudip, > > > > > > > > > > On Sat, Aug 13, 2022 at 12:31 AM Sudip Mukherjee > > > > > <sudipm.mukherjee@gmail.com> wrote: > > > > > > > > > > > > Hi Luiz, > > > > > > > > > > > > On Sat, Aug 13, 2022 at 12:12 AM Luiz Augusto von Dentz > > > > > > <luiz.dentz@gmail.com> wrote: > > > > > > > > > > > > > > Hi Palmer, Sudip, > > > > > > > > > > > > > > On Fri, Aug 12, 2022 at 4:05 PM <bluez.test.bot@gmail.com> wrote: > > > > > > > > > > > > > > > > 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=667285 > > > > > > > > > > > > > > Could you guys try with the above change, I think the culprit is > > > > > > > actually setting c = NULL which triggers some compiler to think it may > > > > > > > be passed to bacmp. > > > > > > > > > > > > I get "No patches to display" on that link. > > > > > > > > > > That is probably because Ive send a v2: > > > > > > > > I have not tested your patch as the build failure is not present with > > > > the bluetooth master branch. Please let me know if this was the wrong > > > > branch. > > > > > > And you can't apply on top of the tree that you are able to reproduce? > > > > I can see its already in linux-next and I don't see those build > > failures on next-20220818. > > Alright, I will send a pull request including it later this week just > in case it reappears for some reason. Just to be clear, the build failure is still there on the mainline branch from Linus. But next-20220818, which has the fixes does not show the build failure. So, it will be needed for Linus tree. -- Regards Sudip ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: Bluetooth: L2CAP: Fix build errors in some archs 2022-08-19 7:28 ` Sudip Mukherjee @ 2022-08-19 18:49 ` Luiz Augusto von Dentz 0 siblings, 0 replies; 11+ messages in thread From: Luiz Augusto von Dentz @ 2022-08-19 18:49 UTC (permalink / raw) To: Sudip Mukherjee; +Cc: linux-bluetooth@vger.kernel.org, Palmer Dabbelt Hi Sudip, On Fri, Aug 19, 2022 at 12:28 AM Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote: > > On Thu, Aug 18, 2022 at 11:04 PM Luiz Augusto von Dentz > <luiz.dentz@gmail.com> wrote: > > > > Hi Sudip, > > > > On Thu, Aug 18, 2022 at 2:29 PM Sudip Mukherjee > > <sudipm.mukherjee@gmail.com> wrote: > > > > > > On Mon, Aug 15, 2022 at 6:55 PM Luiz Augusto von Dentz > > > <luiz.dentz@gmail.com> wrote: > > > > > > > > Hi Sudip, > > > > > > > > On Sun, Aug 14, 2022 at 3:48 AM Sudip Mukherjee > > > > <sudipm.mukherjee@gmail.com> wrote: > > > > > > > > > > Hi Luiz, > > > > > > > > > > On Sat, Aug 13, 2022 at 8:32 PM Luiz Augusto von Dentz > > > > > <luiz.dentz@gmail.com> wrote: > > > > > > > > > > > > Hi Sudip, > > > > > > > > > > > > On Sat, Aug 13, 2022 at 12:31 AM Sudip Mukherjee > > > > > > <sudipm.mukherjee@gmail.com> wrote: > > > > > > > > > > > > > > Hi Luiz, > > > > > > > > > > > > > > On Sat, Aug 13, 2022 at 12:12 AM Luiz Augusto von Dentz > > > > > > > <luiz.dentz@gmail.com> wrote: > > > > > > > > > > > > > > > > Hi Palmer, Sudip, > > > > > > > > > > > > > > > > On Fri, Aug 12, 2022 at 4:05 PM <bluez.test.bot@gmail.com> wrote: > > > > > > > > > > > > > > > > > > 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=667285 > > > > > > > > > > > > > > > > Could you guys try with the above change, I think the culprit is > > > > > > > > actually setting c = NULL which triggers some compiler to think it may > > > > > > > > be passed to bacmp. > > > > > > > > > > > > > > I get "No patches to display" on that link. > > > > > > > > > > > > That is probably because Ive send a v2: > > > > > > > > > > I have not tested your patch as the build failure is not present with > > > > > the bluetooth master branch. Please let me know if this was the wrong > > > > > branch. > > > > > > > > And you can't apply on top of the tree that you are able to reproduce? > > > > > > I can see its already in linux-next and I don't see those build > > > failures on next-20220818. > > > > Alright, I will send a pull request including it later this week just > > in case it reappears for some reason. > > Just to be clear, the build failure is still there on the mainline > branch from Linus. But next-20220818, which has the fixes does not > show the build failure. So, it will be needed for Linus tree. So I assume one next is merged into the Linus tree that should take care of these errors. > > -- > Regards > Sudip -- Luiz Augusto von Dentz ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2022-08-19 18:49 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-08-12 22:39 [PATCH] Bluetooth: L2CAP: Fix build errors in some archs Luiz Augusto von Dentz 2022-08-12 23:05 ` bluez.test.bot 2022-08-12 23:12 ` Luiz Augusto von Dentz 2022-08-13 7:30 ` Sudip Mukherjee 2022-08-13 19:32 ` Luiz Augusto von Dentz 2022-08-14 10:48 ` Sudip Mukherjee 2022-08-15 17:55 ` Luiz Augusto von Dentz 2022-08-18 21:28 ` Sudip Mukherjee 2022-08-18 22:03 ` Luiz Augusto von Dentz 2022-08-19 7:28 ` Sudip Mukherjee 2022-08-19 18:49 ` Luiz Augusto von Dentz
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox