From: James Hogan Date: Tue, 25 Mar 2014 21:47:28 +0000 (+0000) Subject: linux-user: Correct DLINFO_ITEMS X-Git-Tag: v2.0.0-rc1~21^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=ad1c7e0faac82eeb654cba7f99d4e6d88273e0f9;p=thirdparty%2Fqemu.git linux-user: Correct DLINFO_ITEMS Commit a07c67dfccb1 (Implement AT_CLKTCK.) back in March 2008 added a new auxvec entry but didn't increment DLINFO_ITEMS, so it's been out of sync ever since. Bump it up to 14 so that it matches the number of NEW_AUX_ENT's that need to be counted in create_elf_tables(). Signed-off-by: James Hogan Cc: Riku Voipio Cc: Paul Brook Reviewed-by: Peter Maydell Signed-off-by: Riku Voipio --- diff --git a/linux-user/elfload.c b/linux-user/elfload.c index 99a2c586eb8..d2380b6ccb6 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -1076,7 +1076,7 @@ struct exec #define TARGET_ELF_PAGESTART(_v) ((_v) & ~(unsigned long)(TARGET_ELF_EXEC_PAGESIZE-1)) #define TARGET_ELF_PAGEOFFSET(_v) ((_v) & (TARGET_ELF_EXEC_PAGESIZE-1)) -#define DLINFO_ITEMS 13 +#define DLINFO_ITEMS 14 static inline void memcpy_fromfs(void * to, const void * from, unsigned long n) {