Re: [Qemu-devel] [PATCH] linux-user: Correct DLINFO_ITEMS

2014-03-26 Thread Riku Voipio
Hi, On Tue, Mar 25, 2014 at 10:20:04PM +, Peter Maydell wrote: > On 25 March 2014 21:47, James Hogan wrote: > > 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 i

Re: [Qemu-devel] [PATCH] linux-user: Correct DLINFO_ITEMS

2014-03-25 Thread James Hogan
On Tuesday 25 March 2014 23:51:39 Peter Maydell wrote: > On 25 March 2014 23:40, James Hogan wrote: > > I've already re-factored a bunch of this code to handle stacks which grow > > upwards (as used for HPPA and Meta arches) > > ...we don't support either of those currently, do you plan to submit

Re: [Qemu-devel] [PATCH] linux-user: Correct DLINFO_ITEMS

2014-03-25 Thread Peter Maydell
On 25 March 2014 23:40, James Hogan wrote: > I've already re-factored a bunch of this code to handle stacks which grow > upwards (as used for HPPA and Meta arches) ...we don't support either of those currently, do you plan to submit something? thanks -- PMM

Re: [Qemu-devel] [PATCH] linux-user: Correct DLINFO_ITEMS

2014-03-25 Thread James Hogan
On Tuesday 25 March 2014 22:20:04 Peter Maydell wrote: > On 25 March 2014 21:47, James Hogan wrote: > > 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 s

Re: [Qemu-devel] [PATCH] linux-user: Correct DLINFO_ITEMS

2014-03-25 Thread Peter Maydell
On 25 March 2014 21:47, James Hogan wrote: > 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 coun

[Qemu-devel] [PATCH] linux-user: Correct DLINFO_ITEMS

2014-03-25 Thread James Hogan
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