Re: [Qemu-devel] [PATCHv3] Reducing stack frame size in stream_process_mem2s()

2016-10-07 Thread Peter Maydell
On 7 October 2016 at 01:03, Alistair Francis wrote: > On Thu, Oct 6, 2016 at 11:16 AM, wrote: >> From: Rutuja Shah >> >> This patch allocates memory for txbuf in struct Stream rather than the stack. >> As a result, the stack frame size is reduced of stream_process_mem2s(). >> >> Signed-off-by:

Re: [Qemu-devel] [PATCHv3] Reducing stack frame size in stream_process_mem2s()

2016-10-06 Thread Alistair Francis
On Thu, Oct 6, 2016 at 11:16 AM, wrote: > From: Rutuja Shah > > This patch allocates memory for txbuf in struct Stream rather than the stack. > As a result, the stack frame size is reduced of stream_process_mem2s(). > > Signed-off-by: Rutuja Shah > Reviewed-by: Edgar E. Iglesias > Reviewed-by:

[Qemu-devel] [PATCHv3] Reducing stack frame size in stream_process_mem2s()

2016-10-06 Thread rutu . shah . 26
From: Rutuja Shah This patch allocates memory for txbuf in struct Stream rather than the stack. As a result, the stack frame size is reduced of stream_process_mem2s(). Signed-off-by: Rutuja Shah Reviewed-by: Edgar E. Iglesias Reviewed-by: Stefan Hajnoczi Reviewed-by: Alistair Francis --- hw