diff mbox

[v6,12/21] arm64:ilp32: share HWCAP between LP64 and ILP32

Message ID 1452209679-19445-13-git-send-email-ynorov@caviumnetworks.com
State New
Headers show

Commit Message

Yury Norov Jan. 7, 2016, 11:34 p.m. UTC
From: Andrew Pinski <apinski@cavium.com>


Signed-off-by: Andrew Pinski <Andrew.Pinski@caviumnetworks.com>

Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>

Signed-off-by: Yury Norov <ynorov@caviumnetworks.com>

Reviewed-by: David Daney <ddaney@caviumnetworks.com>

---
 arch/arm64/include/asm/hwcap.h | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

-- 
2.5.0

Comments

Arnd Bergmann Jan. 8, 2016, 8:58 a.m. UTC | #1
On Friday 08 January 2016 02:34:30 Yury Norov wrote:
>  #define ELF_HWCAP              (elf_hwcap)

>  

>  #ifdef CONFIG_COMPAT

> -#define COMPAT_ELF_HWCAP       (compat_elf_hwcap)

> -#define COMPAT_ELF_HWCAP2      (compat_elf_hwcap2)

>  extern unsigned int compat_elf_hwcap, compat_elf_hwcap2;

> +#define COMPAT_ELF_HWCAP       \

> +       (is_a32_compat_task()   \

> +         ? compat_elf_hwcap    \

> +         : (u32) elf_hwcap)

> +

> +#define COMPAT_ELF_HWCAP2      \

> +       (is_a32_compat_task()   \

> +         ? compat_elf_hwcap2   \

> +         : (u32) (elf_hwcap >> 32))

> +

>  #endif

>  

> 


This should no longer be needed after patch 11: just define the ELF_HWCAP
and ELF_HWCAP2 values for the right mode when including fs/binfmt_elf.c.
You know what it should be at build time, so don't bother doing a runtime
check.

	Arnd
diff mbox

Patch

diff --git a/arch/arm64/include/asm/hwcap.h b/arch/arm64/include/asm/hwcap.h
index 400b80b..bdb1ae6 100644
--- a/arch/arm64/include/asm/hwcap.h
+++ b/arch/arm64/include/asm/hwcap.h
@@ -47,9 +47,17 @@ 
 #define ELF_HWCAP		(elf_hwcap)
 
 #ifdef CONFIG_COMPAT
-#define COMPAT_ELF_HWCAP	(compat_elf_hwcap)
-#define COMPAT_ELF_HWCAP2	(compat_elf_hwcap2)
 extern unsigned int compat_elf_hwcap, compat_elf_hwcap2;
+#define COMPAT_ELF_HWCAP	\
+	(is_a32_compat_task()	\
+	  ? compat_elf_hwcap	\
+	  : (u32) elf_hwcap)
+
+#define COMPAT_ELF_HWCAP2	\
+	(is_a32_compat_task()	\
+	  ? compat_elf_hwcap2	\
+	  : (u32) (elf_hwcap >> 32))
+
 #endif
 
 enum {