Re: linux-next: build failure after merge of the final tree
From: Deepthi Dharwar <hidden>
Date: 2012-01-20 09:08:30
Also in:
linux-next, lkml
On 01/20/2012 12:51 PM, Stephen Rothwell wrote:
Hi all,
After merging the final tree, today's linux-next build (powerpc
allmodconfig) failed like this:
arch/powerpc/platforms/pseries/processor_idle.c:35:6: error: redefinition of 'update_smt_snooze_delay'
arch/powerpc/include/asm/system.h:230:20: note: previous definition of 'update_smt_snooze_delay' was here
arch/powerpc/platforms/pseries/processor_idle.c:175:5: error: redefinition of 'pseries_notify_cpuidle_add_cpu'
arch/powerpc/include/asm/system.h:231:19: note: previous definition of 'pseries_notify_cpuidle_add_cpu' was here
Caused by commit 707827f3387d ("powerpc/cpuidle: cpuidle driver for
pSeries"). For this build, CONFIG_PSERIES_IDLE is "m".
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-devHi Stephen, We had a discussion on this particular problem on ppcdev list a few days back and concluded that it is best not have pseries_idle as a module. http://old.nabble.com/-PATCH--cpuidle%3A-Default-y-for-pseries-to33118294.html#a33127587 The following patch disables pseries cpuidle driver to be loaded as a module as there are build problems reported when one is trying to do so. arch/powerpc/platforms/pseries/processor_idle.c:35:6: error: redefinition of 'update_smt_snooze_delay' arch/powerpc/include/asm/system.h:230:20: note: previous definition of 'update_smt_snooze_delay' was here arch/powerpc/platforms/pseries/processor_idle.c:175:5: error: redefinition of 'pseries_notify_cpuidle_add_cpu' arch/powerpc/include/asm/system.h:231:19: note: previous definition of 'pseries_notify_cpuidle_add_cpu' was here Since the above two functions are used in core power architecture functions (store_smt_snooze_delay at kernel/sysfs.c and smp_xics_setup_cpu at platforms/pseries/smp.c), this requires some rework in these interactions. For now please disable PSERIES_IDLE to be built as a module for now. Signed-off-by: Deepthi Dharwar <redacted> --- arch/powerpc/platforms/pseries/Kconfig | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/powerpc/platforms/pseries/Kconfigb/arch/powerpc/platforms/pseries/Kconfig index ae7b6d4..31f22c1 100644
--- a/arch/powerpc/platforms/pseries/Kconfig
+++ b/arch/powerpc/platforms/pseries/Kconfig@@ -122,7 +122,7 @@ config DTL Say N if you are unsure. config PSERIES_IDLE - tristate "Cpuidle driver for pSeries platforms" + bool "Cpuidle driver for pSeries platforms" depends on CPU_IDLE depends on PPC_PSERIES default y
Regards, Deepthi