Re: [Qemu-devel] [PATCH 01/33] linux-user: Split out do_syscall1

2018-06-01 Thread Richard Henderson
On 06/01/2018 07:00 AM, Eric Blake wrote: > On 06/01/2018 02:30 AM, Richard Henderson wrote: >> There was supposed to be a single point of return for do_syscall >> so that tracing works properly.  However, there are a few bugs >> in that area.  It is significantly simpler to simply split out >> an

Re: [Qemu-devel] [PATCH 01/33] linux-user: Split out do_syscall1

2018-06-01 Thread Eric Blake
On 06/01/2018 02:30 AM, Richard Henderson wrote: There was supposed to be a single point of return for do_syscall so that tracing works properly. However, there are a few bugs in that area. It is significantly simpler to simply split out an inner function to enforce this. Signed-off-by:

Re: [Qemu-devel] [PATCH 01/33] linux-user: Split out do_syscall1

2018-06-01 Thread Laurent Vivier
Le 01/06/2018 à 09:30, Richard Henderson a écrit : > There was supposed to be a single point of return for do_syscall > so that tracing works properly. However, there are a few bugs > in that area. It is significantly simpler to simply split out > an inner function to enforce this. > >

[Qemu-devel] [PATCH 01/33] linux-user: Split out do_syscall1

2018-06-01 Thread Richard Henderson
There was supposed to be a single point of return for do_syscall so that tracing works properly. However, there are a few bugs in that area. It is significantly simpler to simply split out an inner function to enforce this. Signed-off-by: Richard Henderson --- linux-user/syscall.c | 89