From 444c91e690e0534b93e4e7903a58e060835dca20 Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Thu, 5 Sep 2002 17:36:46 +1000 Subject: [PATCH] PPC32: moved the compatibility padding entries in the aux vector to the bottom of the aux table. --- include/asm-ppc/elf.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/asm-ppc/elf.h b/include/asm-ppc/elf.h index 37d9698946f2..02f0fb08c6bc 100644 --- a/include/asm-ppc/elf.h +++ b/include/asm-ppc/elf.h @@ -1,5 +1,5 @@ /* - * BK Id: SCCS/s.elf.h 1.14 08/21/01 16:07:48 trini + * BK Id: %F% %I% %G% %U% %#% */ #ifndef __PPC_ELF_H #define __PPC_ELF_H @@ -100,12 +100,13 @@ extern int ucache_bsize; */ #define ARCH_DLINFO \ do { \ + /* Handle glibc compatibility. */ \ + NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \ + NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \ + /* Cache size items */ \ NEW_AUX_ENT(AT_DCACHEBSIZE, dcache_bsize); \ NEW_AUX_ENT(AT_ICACHEBSIZE, icache_bsize); \ NEW_AUX_ENT(AT_UCACHEBSIZE, ucache_bsize); \ - /* Now handle glibc compatibility. */ \ - NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \ - NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \ } while (0) #endif /* __KERNEL__ */ -- 2.39.5