Re: [Qemu-devel] [PATCH 2/2] linux-user: remove MAX_ARG_PAGES limit

2015-09-28 Thread Riku Voipio
On Mon, Sep 14, 2015 at 09:37:10PM +0200, Stefan Bruens wrote: > On Thursday 03 September 2015 18:27:20 Peter Maydell wrote: > > On 2 September 2015 at 02:38, Stefan Brüns > wrote: > > > Instead of creating a temporary copy for the whole environment and > > > the arguments, directly copy everythi

Re: [Qemu-devel] [PATCH 2/2] linux-user: remove MAX_ARG_PAGES limit

2015-09-14 Thread Peter Maydell
On 14 September 2015 at 20:37, Stefan Bruens wrote: > On Thursday 03 September 2015 18:27:20 Peter Maydell wrote: >> On 2 September 2015 at 02:38, Stefan Brüns > wrote: >> > Instead of creating a temporary copy for the whole environment and >> > the arguments, directly copy everything to the targ

Re: [Qemu-devel] [PATCH 2/2] linux-user: remove MAX_ARG_PAGES limit

2015-09-14 Thread Stefan Bruens
On Thursday 03 September 2015 18:27:20 Peter Maydell wrote: > On 2 September 2015 at 02:38, Stefan Brüns wrote: > > Instead of creating a temporary copy for the whole environment and > > the arguments, directly copy everything to the target stack. > > > > For this to work, we have to change the

Re: [Qemu-devel] [PATCH 2/2] linux-user: remove MAX_ARG_PAGES limit

2015-09-03 Thread Peter Maydell
On 2 September 2015 at 02:38, Stefan Brüns wrote: > Instead of creating a temporary copy for the whole environment and > the arguments, directly copy everything to the target stack. > > For this to work, we have to change the order of stack creation and > copying the arguments. > > Signed-off-by:

[Qemu-devel] [PATCH 2/2] linux-user: remove MAX_ARG_PAGES limit

2015-09-01 Thread Stefan Brüns
Instead of creating a temporary copy for the whole environment and the arguments, directly copy everything to the target stack. For this to work, we have to change the order of stack creation and copying the arguments. Signed-off-by: Stefan Brüns --- v2: fixed scratch pointer type, fixed checkpa