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

2015-09-01 Thread Stefan Bruens
On Tuesday 01 September 2015 19:42:26 you wrote: > >> > --- a/linux-user/linuxload.c > >> > +++ b/linux-user/linuxload.c > >> > @@ -137,8 +137,7 @@ int loader_exec(int fdexec, const char *filename, > >> > char > >> > **argv, char **envp,> > >> > > >> > int retval; > >> > int i; > >> > >

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

2015-09-01 Thread Peter Maydell
On 1 September 2015 at 18:27, Brüns, Stefan wrote: > On Tuesday, September 01, 2015 15:29:26 you wrote: >> On 27 August 2015 at 20:35, Stefan Brüns > wrote: >> > Instead of creating a temporary copy for the whole environment and >> > the arguments, directly copy everything to the target stack. >>

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

2015-09-01 Thread Brüns , Stefan
On Tuesday, September 01, 2015 15:29:26 you wrote: > On 27 August 2015 at 20:35, 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 st

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

2015-09-01 Thread Peter Maydell
On 27 August 2015 at 20:35, 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. > > v2: fixed scratch

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

2015-08-30 Thread Peter Maydell
On 30 August 2015 at 16:52, Stefan Bruens wrote: > On Thursday 27 August 2015 21:35:41 Stefan Brüns wrote: > > PING! Hi. This is on my to-review list, but so are a lot of other things. It might take me a week or so to get to it. thanks -- PMM

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

2015-08-30 Thread Stefan Bruens
On Thursday 27 August 2015 21:35:41 Stefan Brüns wrote: PING! > 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. > >

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

2015-08-27 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. v2: fixed scratch pointer type, fixed checkpatch issues. Signed-off-by: Stefa

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

2015-08-27 Thread Peter Maydell
On 23 August 2015 at 00:47, 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: St

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

2015-08-27 Thread Stefan Bruens
On Sunday 23 August 2015 01:47:52 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

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

2015-08-22 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 --- linux-user/elfload.c | 105 +++