All of lore.kernel.org
 help / color / mirror / Atom feed
* patch to fix psci_smp_avaliable build error
@ 2016-02-19  2:15 Alex Shi
  2016-02-24 14:36 ` Alex Shi
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Shi @ 2016-02-19  2:15 UTC (permalink / raw)
  To: gregkh, Arnd Bergmann; +Cc: Mark Brown, stable


This patch is needed on lts 4.4 for the same build error. Could you like to pick it up?

Regards
Alex
---------
commit be95485a0b8288a93402705730d3ea32f9f812b9
Author: Arnd Bergmann <arnd@arndb.de>
Date:   Thu Nov 19 15:03:57 2015 +0100

    ARM: 8457/1: psci-smp is built only for SMP
    
    The PSCI SMP implementation is built only when both CONFIG_SMP and
    CONFIG_ARM_PSCI are set, so a configuration that has the latter
    but not the former can get a link error when it tries to call
    psci_smp_available().
    
    arch/arm/mach-tegra/built-in.o: In function `tegra114_cpuidle_init':
    cpuidle-tegra114.c:(.init.text+0x52a): undefined reference to `psci_smp_available'
    
    This corrects the #ifdef in the psci.h header file to match the
    Makefile conditional we have for building that function.
    
    Signed-off-by: Arnd Bergmann <arnd@arndb.de>
    Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

diff --git a/arch/arm/include/asm/psci.h b/arch/arm/include/asm/psci.h
index 68ee3ce..b4c6d99 100644
--- a/arch/arm/include/asm/psci.h
+++ b/arch/arm/include/asm/psci.h
@@ -16,7 +16,7 @@
 
 extern struct smp_operations psci_smp_ops;
 
-#ifdef CONFIG_ARM_PSCI
+#if defined(CONFIG_SMP) && defined(CONFIG_ARM_PSCI)
 bool psci_smp_available(void);
 #else
 static inline bool psci_smp_available(void) { return false; }

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: patch to fix psci_smp_avaliable build error
  2016-02-19  2:15 patch to fix psci_smp_avaliable build error Alex Shi
@ 2016-02-24 14:36 ` Alex Shi
  2016-02-24 17:07   ` gregkh
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Shi @ 2016-02-24 14:36 UTC (permalink / raw)
  To: gregkh, Arnd Bergmann; +Cc: Mark Brown, stable, Linaro Kernel

Ping.

On 02/19/2016 10:15 AM, Alex Shi wrote:
> 
> This patch is needed on lts 4.4 for the same build error. Could you like to pick it up?
> 
> Regards
> Alex
> ---------
> commit be95485a0b8288a93402705730d3ea32f9f812b9
> Author: Arnd Bergmann <arnd@arndb.de>
> Date:   Thu Nov 19 15:03:57 2015 +0100
> 
>     ARM: 8457/1: psci-smp is built only for SMP
>     
>     The PSCI SMP implementation is built only when both CONFIG_SMP and
>     CONFIG_ARM_PSCI are set, so a configuration that has the latter
>     but not the former can get a link error when it tries to call
>     psci_smp_available().
>     
>     arch/arm/mach-tegra/built-in.o: In function `tegra114_cpuidle_init':
>     cpuidle-tegra114.c:(.init.text+0x52a): undefined reference to `psci_smp_available'
>     
>     This corrects the #ifdef in the psci.h header file to match the
>     Makefile conditional we have for building that function.
>     
>     Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>     Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
> 
> diff --git a/arch/arm/include/asm/psci.h b/arch/arm/include/asm/psci.h
> index 68ee3ce..b4c6d99 100644
> --- a/arch/arm/include/asm/psci.h
> +++ b/arch/arm/include/asm/psci.h
> @@ -16,7 +16,7 @@
>  
>  extern struct smp_operations psci_smp_ops;
>  
> -#ifdef CONFIG_ARM_PSCI
> +#if defined(CONFIG_SMP) && defined(CONFIG_ARM_PSCI)
>  bool psci_smp_available(void);
>  #else
>  static inline bool psci_smp_available(void) { return false; }
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: patch to fix psci_smp_avaliable build error
  2016-02-24 14:36 ` Alex Shi
@ 2016-02-24 17:07   ` gregkh
  0 siblings, 0 replies; 3+ messages in thread
From: gregkh @ 2016-02-24 17:07 UTC (permalink / raw)
  To: Alex Shi; +Cc: Arnd Bergmann, Mark Brown, stable, Linaro Kernel

On Wed, Feb 24, 2016 at 10:36:20PM +0800, Alex Shi wrote:
> Ping.

I have 300+ pending patches for 4.4 to dig through, please be patient...


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-02-24 17:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-19  2:15 patch to fix psci_smp_avaliable build error Alex Shi
2016-02-24 14:36 ` Alex Shi
2016-02-24 17:07   ` gregkh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.