Re: [PATCH] increase AT_VECTOR_SIZE to terminate saved_auxv properly

2007-09-20 Thread Andrew Morton
On Thu, 20 Sep 2007 21:19:44 +0200 Olaf Hering <[EMAIL PROTECTED]> wrote: > On Wed, Sep 19, Andrew Morton wrote: > > > I'm not very confident that this will work well with the > > already-queued move-mm_struct-and-vm_area_struct.patch. > > You want me to redo my patch agains the current -mm kern

Re: [PATCH] increase AT_VECTOR_SIZE to terminate saved_auxv properly

2007-09-20 Thread Olaf Hering
On Wed, Sep 19, Andrew Morton wrote: > I'm not very confident that this will work well with the > already-queued move-mm_struct-and-vm_area_struct.patch. You want me to redo my patch agains the current -mm kernel? - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the bo

Re: [PATCH] increase AT_VECTOR_SIZE to terminate saved_auxv properly

2007-09-19 Thread Andrew Morton
On Tue, 18 Sep 2007 13:55:04 +0200 Olaf Hering <[EMAIL PROTECTED]> wrote: > include/asm-powerpc/elf.h has 6 entries in ARCH_DLINFO. > fs/binfmt_elf.c has 14 unconditional NEW_AUX_ENT entries and 2 > conditional NEW_AUX_ENT entries. > So in the worst case, saved_auxv does not get an AT_NULL entry a

[PATCH] increase AT_VECTOR_SIZE to terminate saved_auxv properly

2007-09-18 Thread Olaf Hering
include/asm-powerpc/elf.h has 6 entries in ARCH_DLINFO. fs/binfmt_elf.c has 14 unconditional NEW_AUX_ENT entries and 2 conditional NEW_AUX_ENT entries. So in the worst case, saved_auxv does not get an AT_NULL entry at the end. The saved_auxv array must be terminated with an AT_NULL entry. Make th