* [PATCH] arm64: defconfig: enable ARCH_BCM
@ 2022-09-06 3:39 Florian Fainelli
2022-09-08 18:17 ` Anders Roxell
2022-09-09 7:35 ` Naresh Kamboju
0 siblings, 2 replies; 6+ messages in thread
From: Florian Fainelli @ 2022-09-06 3:39 UTC (permalink / raw)
To: linux-arm-kernel
Cc: soc, michael, Florian Fainelli, Catalin Marinas, Will Deacon,
Bjorn Andersson, Shawn Guo, Geert Uytterhoeven,
Krzysztof Kozlowski, Arnd Bergmann, Marcel Ziswiler, Biju Das,
Dmitry Baryshkov, Vinod Koul, open list
Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom
menu") introduced a new symbol ARCH_BCM and made all of the Broadcom
SoCs Kconfig depend on it, but did not enable it in the defconfig.
Thus, now the defconfig doesn't include support for any Broadcom
architectures anymore. Fix it.
Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
arch/arm64/configs/defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 91e58cf59c99..4c8b09c6b49f 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -33,6 +33,7 @@ CONFIG_ARCH_ACTIONS=y
CONFIG_ARCH_SUNXI=y
CONFIG_ARCH_ALPINE=y
CONFIG_ARCH_APPLE=y
+CONFIG_ARCH_BCM=y
CONFIG_ARCH_BCM2835=y
CONFIG_ARCH_BCMBCA=y
CONFIG_ARCH_BCM_IPROC=y
--
2.25.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] arm64: defconfig: enable ARCH_BCM 2022-09-06 3:39 [PATCH] arm64: defconfig: enable ARCH_BCM Florian Fainelli @ 2022-09-08 18:17 ` Anders Roxell 2022-09-09 7:35 ` Naresh Kamboju 1 sibling, 0 replies; 6+ messages in thread From: Anders Roxell @ 2022-09-08 18:17 UTC (permalink / raw) To: Florian Fainelli Cc: linux-arm-kernel, soc, michael, Catalin Marinas, Will Deacon, Bjorn Andersson, Shawn Guo, Geert Uytterhoeven, Krzysztof Kozlowski, Arnd Bergmann, Marcel Ziswiler, Biju Das, Dmitry Baryshkov, Vinod Koul, open list On 2022-09-05 20:39, Florian Fainelli wrote: > Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom > menu") introduced a new symbol ARCH_BCM and made all of the Broadcom > SoCs Kconfig depend on it, but did not enable it in the defconfig. > Thus, now the defconfig doesn't include support for any Broadcom > architectures anymore. Fix it. > > Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu") > Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Tested-by: Anders Roxell <anders.roxell@linaro.org> Cheers, Anders > --- > arch/arm64/configs/defconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig > index 91e58cf59c99..4c8b09c6b49f 100644 > --- a/arch/arm64/configs/defconfig > +++ b/arch/arm64/configs/defconfig > @@ -33,6 +33,7 @@ CONFIG_ARCH_ACTIONS=y > CONFIG_ARCH_SUNXI=y > CONFIG_ARCH_ALPINE=y > CONFIG_ARCH_APPLE=y > +CONFIG_ARCH_BCM=y > CONFIG_ARCH_BCM2835=y > CONFIG_ARCH_BCMBCA=y > CONFIG_ARCH_BCM_IPROC=y > -- > 2.25.1 > > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] arm64: defconfig: enable ARCH_BCM 2022-09-06 3:39 [PATCH] arm64: defconfig: enable ARCH_BCM Florian Fainelli 2022-09-08 18:17 ` Anders Roxell @ 2022-09-09 7:35 ` Naresh Kamboju 2022-09-09 7:38 ` Krzysztof Kozlowski 1 sibling, 1 reply; 6+ messages in thread From: Naresh Kamboju @ 2022-09-09 7:35 UTC (permalink / raw) To: f.fainelli Cc: andersson, arnd, biju.das.jz, catalin.marinas, dmitry.baryshkov, geert+renesas, krzysztof.kozlowski, linux-arm-kernel, linux-kernel, marcel.ziswiler, michael, shawnguo, soc, vkoul, will, Naresh kamboju, lkft-triage, Linux Kernel Functional Testing From: Naresh kamboju <naresh.kamboju@linaro.org> On 2022-09-05 20:39, Florian Fainelli wrote: > Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom > menu") introduced a new symbol ARCH_BCM and made all of the Broadcom > SoCs Kconfig depend on it, but did not enable it in the defconfig. > Thus, now the defconfig doesn't include support for any Broadcom > architectures anymore. Fix it. > > Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu") > Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Reported-by: Linux Kernel Functional Testing <lkft@linaro.org> -- Linaro LKFT https://lkft.linaro.org _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] arm64: defconfig: enable ARCH_BCM 2022-09-09 7:35 ` Naresh Kamboju @ 2022-09-09 7:38 ` Krzysztof Kozlowski 2022-09-09 12:24 ` Naresh Kamboju 0 siblings, 1 reply; 6+ messages in thread From: Krzysztof Kozlowski @ 2022-09-09 7:38 UTC (permalink / raw) To: Naresh Kamboju, f.fainelli Cc: andersson, arnd, biju.das.jz, catalin.marinas, dmitry.baryshkov, geert+renesas, linux-arm-kernel, linux-kernel, marcel.ziswiler, michael, shawnguo, soc, vkoul, will, lkft-triage, Linux Kernel Functional Testing On 09/09/2022 09:35, Naresh Kamboju wrote: > From: Naresh kamboju <naresh.kamboju@linaro.org> > > > On 2022-09-05 20:39, Florian Fainelli wrote: >> Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom >> menu") introduced a new symbol ARCH_BCM and made all of the Broadcom >> SoCs Kconfig depend on it, but did not enable it in the defconfig. >> Thus, now the defconfig doesn't include support for any Broadcom >> architectures anymore. Fix it. >> >> Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu") >> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> > > Reported-by: Linux Kernel Functional Testing <lkft@linaro.org> The patch was sent on 6th of September. Your report on 8th of September... Best regards, Krzysztof _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] arm64: defconfig: enable ARCH_BCM 2022-09-09 7:38 ` Krzysztof Kozlowski @ 2022-09-09 12:24 ` Naresh Kamboju 2022-09-09 16:25 ` Mark Brown 0 siblings, 1 reply; 6+ messages in thread From: Naresh Kamboju @ 2022-09-09 12:24 UTC (permalink / raw) To: Krzysztof Kozlowski Cc: f.fainelli, andersson, arnd, biju.das.jz, catalin.marinas, dmitry.baryshkov, geert+renesas, linux-arm-kernel, linux-kernel, marcel.ziswiler, michael, shawnguo, soc, vkoul, will, lkft-triage, Linux Kernel Functional Testing, Benjamin Copeland, Anders Roxell On Fri, 9 Sept 2022 at 13:08, Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> wrote: > > On 09/09/2022 09:35, Naresh Kamboju wrote: > > From: Naresh kamboju <naresh.kamboju@linaro.org> > > > > > > On 2022-09-05 20:39, Florian Fainelli wrote: > >> Commit 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom > >> menu") introduced a new symbol ARCH_BCM and made all of the Broadcom > >> SoCs Kconfig depend on it, but did not enable it in the defconfig. > >> Thus, now the defconfig doesn't include support for any Broadcom > >> architectures anymore. Fix it. > >> > >> Fixes: 96796c914b84 ("arm64: Kconfig.platforms: Re-organized Broadcom menu") > >> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> > > > > Reported-by: Linux Kernel Functional Testing <lkft@linaro.org> > > The patch was sent on 6th of September. Your report on 8th of September... Understood ! Maybe off-topic, Testing Linux next seems to be a bit late to report the regressions. Our testing would have build and boot test devicetree/for-next or devicetree / master branches to find early regressions. or Any other well known maintainers trees. Your suggestions are most welcome for improving Linux kernel quality. Best regards Naresh Kamboju -- Linaro LKFT https://lkft.linaro.org > > Best regards, > Krzysztof _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] arm64: defconfig: enable ARCH_BCM 2022-09-09 12:24 ` Naresh Kamboju @ 2022-09-09 16:25 ` Mark Brown 0 siblings, 0 replies; 6+ messages in thread From: Mark Brown @ 2022-09-09 16:25 UTC (permalink / raw) To: Naresh Kamboju Cc: Krzysztof Kozlowski, f.fainelli, andersson, arnd, biju.das.jz, catalin.marinas, dmitry.baryshkov, geert+renesas, linux-arm-kernel, linux-kernel, marcel.ziswiler, michael, shawnguo, soc, vkoul, will, lkft-triage, Linux Kernel Functional Testing, Benjamin Copeland, Anders Roxell [-- Attachment #1.1: Type: text/plain, Size: 1685 bytes --] On Fri, Sep 09, 2022 at 05:54:11PM +0530, Naresh Kamboju wrote: > On Fri, 9 Sept 2022 at 13:08, Krzysztof Kozlowski > > On 09/09/2022 09:35, Naresh Kamboju wrote: > > > Reported-by: Linux Kernel Functional Testing <lkft@linaro.org> > > The patch was sent on 6th of September. Your report on 8th of September... > Understood ! > Maybe off-topic, > Testing Linux next seems to be a bit late to report the regressions. > Our testing would have build and boot test devicetree/for-next or > devicetree / master branches to find early regressions. > or Any other well known maintainers trees. > > Your suggestions are most welcome for improving Linux kernel quality. Checking maintainer trees in addition to -next isn't going to be that substantially faster except at weekends, the whole thing with -next is that it gets built daily so depending on when patches appear in the maintainer trees and how long -next takes to build you'll be running tests less than two days earlier, the way people's timezones work out it's often under a day for many maintainer trees. It can reduce turnaround time for the specific tree, and it can be useful for identifying where problems come from, but on the other hand the integration that -next offers is important, some critical stuff only appears in -next and obviously each individual tree that gets covered separately is more load on your systems and triage. The key thing with -next is that it's a moving target so it's useful to turn around results as fast as possible so they arrive before it gets rebuilt, or if you've seen something on an older -next check that it's still relevant when you do report it. [-- Attachment #1.2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] [-- Attachment #2: Type: text/plain, Size: 176 bytes --] _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-09-09 16:26 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-09-06 3:39 [PATCH] arm64: defconfig: enable ARCH_BCM Florian Fainelli 2022-09-08 18:17 ` Anders Roxell 2022-09-09 7:35 ` Naresh Kamboju 2022-09-09 7:38 ` Krzysztof Kozlowski 2022-09-09 12:24 ` Naresh Kamboju 2022-09-09 16:25 ` Mark Brown
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).