summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2002-09-05 17:36:46 +1000
committerPaul Mackerras <paulus@au1.ibm.com>2002-09-05 17:36:46 +1000
commit444c91e690e0534b93e4e7903a58e060835dca20 (patch)
treeaa82ddc734120bac5f538ebe1122f6c8ad2f1b94 /include
parentd25f2caa95f6cf6935e5de7719e8dfa60fb6b0c3 (diff)
PPC32: moved the compatibility padding entries in the aux vector
to the bottom of the aux table.
Diffstat (limited to 'include')
-rw-r--r--include/asm-ppc/elf.h9
1 files 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__ */