]> git.hungrycats.org Git - linux/commitdiff
PPC32: moved the compatibility padding entries in the aux vector
authorPaul Mackerras <paulus@samba.org>
Thu, 5 Sep 2002 07:36:46 +0000 (17:36 +1000)
committerPaul Mackerras <paulus@au1.ibm.com>
Thu, 5 Sep 2002 07:36:46 +0000 (17:36 +1000)
to the bottom of the aux table.

include/asm-ppc/elf.h

index 37d9698946f2eb84e1331da159e20b4b08267788..02f0fb08c6bc6f51c29328f4fd097bd892ee1d21 100644 (file)
@@ -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__ */