* stable-rc-5.4.y: arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value 2125 case PRID_COMP_NETLOGIC
@ 2023-06-18 5:28 Naresh Kamboju
2023-06-18 7:12 ` Pascal Ernster
0 siblings, 1 reply; 4+ messages in thread
From: Naresh Kamboju @ 2023-06-18 5:28 UTC (permalink / raw)
To: linux-stable, lkft-triage; +Cc: Sasha Levin, Greg Kroah-Hartman
Following regressions found on stable rc 5.4 while building MIPS configs,
Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>
MIPS: Restore Au1300 support
[ Upstream commit f2041708dee30a3425f680265c337acd28293782 ]
Build log:
======
arch/mips/kernel/cpu-probe.c: In function 'cpu_probe':
arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value
2125 | case PRID_COMP_NETLOGIC:
| ^~~~
arch/mips/kernel/cpu-probe.c:2099:9: note: previously used here
2099 | case PRID_COMP_NETLOGIC:
| ^~~~
make[3]: *** [scripts/Makefile.build:262: arch/mips/kernel/cpu-probe.o] Error 1
Links:
- https://qa-reports.linaro.org/lkft/linux-stable-rc-linux-5.4.y/build/v5.4.247-33-g615b5c31a2ce/testrun/17568185/suite/build/test/gcc-12-rt305x_defconfig/log
- https://qa-reports.linaro.org/lkft/linux-stable-rc-linux-5.4.y/build/v5.4.247-33-g615b5c31a2ce/testrun/17568185/suite/build/test/gcc-12-rt305x_defconfig/history/
--
Linaro LKFT
https://lkft.linaro.org
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: stable-rc-5.4.y: arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value 2125 case PRID_COMP_NETLOGIC 2023-06-18 5:28 stable-rc-5.4.y: arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value 2125 case PRID_COMP_NETLOGIC Naresh Kamboju @ 2023-06-18 7:12 ` Pascal Ernster 2023-06-19 9:45 ` Naresh Kamboju 0 siblings, 1 reply; 4+ messages in thread From: Pascal Ernster @ 2023-06-18 7:12 UTC (permalink / raw) To: Naresh Kamboju, linux-stable, lkft-triage; +Cc: Sasha Levin, Greg Kroah-Hartman [2023-06-18 07:28] Naresh Kamboju: > Following regressions found on stable rc 5.4 while building MIPS configs, > > Reported-by: Linux Kernel Functional Testing <lkft@linaro.org> > > MIPS: Restore Au1300 support > [ Upstream commit f2041708dee30a3425f680265c337acd28293782 ] > > > Build log: > ====== > arch/mips/kernel/cpu-probe.c: In function 'cpu_probe': > arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value > 2125 | case PRID_COMP_NETLOGIC: > | ^~~~ > arch/mips/kernel/cpu-probe.c:2099:9: note: previously used here > 2099 | case PRID_COMP_NETLOGIC: > | ^~~~ > make[3]: *** [scripts/Makefile.build:262: arch/mips/kernel/cpu-probe.o] Error 1 The same issue also affects both the 5.10 and the 5.15 branch. Regards Pascal ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: stable-rc-5.4.y: arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value 2125 case PRID_COMP_NETLOGIC 2023-06-18 7:12 ` Pascal Ernster @ 2023-06-19 9:45 ` Naresh Kamboju 2023-06-19 10:09 ` Greg Kroah-Hartman 0 siblings, 1 reply; 4+ messages in thread From: Naresh Kamboju @ 2023-06-19 9:45 UTC (permalink / raw) To: Manuel Lauss, Thomas Bogendoerfer Cc: lkft-triage, Sasha Levin, Pascal Ernster, Greg Kroah-Hartman, linux-stable On Sun, 18 Jun 2023 at 12:42, Pascal Ernster <git@hardfalcon.net> wrote: > > [2023-06-18 07:28] Naresh Kamboju: > > Following regressions found on stable rc 5.4 while building MIPS configs, > > > > Reported-by: Linux Kernel Functional Testing <lkft@linaro.org> > > > > MIPS: Restore Au1300 support > > [ Upstream commit f2041708dee30a3425f680265c337acd28293782 ] > > > > > > Build log: > > ====== > > arch/mips/kernel/cpu-probe.c: In function 'cpu_probe': > > arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value > > 2125 | case PRID_COMP_NETLOGIC: > > | ^~~~ > > arch/mips/kernel/cpu-probe.c:2099:9: note: previously used here > > 2099 | case PRID_COMP_NETLOGIC: > > | ^~~~ > > make[3]: *** [scripts/Makefile.build:262: arch/mips/kernel/cpu-probe.o] Error 1 > > The same issue also affects both the 5.10 and the 5.15 branch. MIPS builds are breaking on stable-rc 5.4, 5.10 and 5.15 branches. Due to following patch, ---- Subject: MIPS: Restore Au1300 support [ Upstream commit f2041708dee30a3425f680265c337acd28293782 ] The Au1300, at least the one I have to test, uses the NetLogic vendor ID, but commit 95b8a5e0111a ("MIPS: Remove NETLOGIC support") also dropped Au1300 detection. Restore Au1300 detection. Tested on DB1300 with Au1380 chip. Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Signed-off-by: Sasha Levin <sashal@kernel.org> --- arch/mips/kernel/cpu-probe.c | 5 +++++ 1 file changed, 5 insertions(+) -- Linaro LKFT https://lkft.linaro.org ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: stable-rc-5.4.y: arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value 2125 case PRID_COMP_NETLOGIC 2023-06-19 9:45 ` Naresh Kamboju @ 2023-06-19 10:09 ` Greg Kroah-Hartman 0 siblings, 0 replies; 4+ messages in thread From: Greg Kroah-Hartman @ 2023-06-19 10:09 UTC (permalink / raw) To: Naresh Kamboju Cc: Manuel Lauss, Thomas Bogendoerfer, lkft-triage, Sasha Levin, Pascal Ernster, linux-stable On Mon, Jun 19, 2023 at 03:15:15PM +0530, Naresh Kamboju wrote: > On Sun, 18 Jun 2023 at 12:42, Pascal Ernster <git@hardfalcon.net> wrote: > > > > [2023-06-18 07:28] Naresh Kamboju: > > > Following regressions found on stable rc 5.4 while building MIPS configs, > > > > > > Reported-by: Linux Kernel Functional Testing <lkft@linaro.org> > > > > > > MIPS: Restore Au1300 support > > > [ Upstream commit f2041708dee30a3425f680265c337acd28293782 ] > > > > > > > > > Build log: > > > ====== > > > arch/mips/kernel/cpu-probe.c: In function 'cpu_probe': > > > arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value > > > 2125 | case PRID_COMP_NETLOGIC: > > > | ^~~~ > > > arch/mips/kernel/cpu-probe.c:2099:9: note: previously used here > > > 2099 | case PRID_COMP_NETLOGIC: > > > | ^~~~ > > > make[3]: *** [scripts/Makefile.build:262: arch/mips/kernel/cpu-probe.o] Error 1 > > > > The same issue also affects both the 5.10 and the 5.15 branch. > > MIPS builds are breaking on stable-rc 5.4, 5.10 and 5.15 branches. > Due to following patch, > ---- > > Subject: MIPS: Restore Au1300 support > > [ Upstream commit f2041708dee30a3425f680265c337acd28293782 ] > > The Au1300, at least the one I have to test, uses the NetLogic vendor > ID, but commit 95b8a5e0111a ("MIPS: Remove NETLOGIC support") also > dropped Au1300 detection. Restore Au1300 detection. > > Tested on DB1300 with Au1380 chip. > > Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> > Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de> > Signed-off-by: Sasha Levin <sashal@kernel.org> > --- > arch/mips/kernel/cpu-probe.c | 5 +++++ > 1 file changed, 5 insertions(+) Ah, thanks, I'll go drop this now, for some reason I thought it already was gone :( greg k-h ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-06-19 10:10 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-18 5:28 stable-rc-5.4.y: arch/mips/kernel/cpu-probe.c:2125:9: error: duplicate case value 2125 case PRID_COMP_NETLOGIC Naresh Kamboju 2023-06-18 7:12 ` Pascal Ernster 2023-06-19 9:45 ` Naresh Kamboju 2023-06-19 10:09 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox