Re: [Qemu-devel] [PATCH 1/6] linux-user: fix x86_64 safe_syscall

2016-06-21 Thread Riku Voipio
On Mon, Jun 13, 2016 at 02:45:21PM -0700, Richard Henderson wrote: > Do what the comment says, test for signal_pending non-zero, > rather than the current coe which tests for bit 0 non-zero. Applied to linux-user with the type fixed, Thanks > Signed-off-by: Richard Henderson > --- > linux-user/

Re: [Qemu-devel] [PATCH 1/6] linux-user: fix x86_64 safe_syscall

2016-06-14 Thread Peter Maydell
On 13 June 2016 at 22:45, Richard Henderson wrote: > Do what the comment says, test for signal_pending non-zero, > rather than the current coe which tests for bit 0 non-zero. "code" > > Signed-off-by: Richard Henderson > --- > linux-user/host/x86_64/safe-syscall.inc.S | 6 +++--- > 1 file chan

[Qemu-devel] [PATCH 1/6] linux-user: fix x86_64 safe_syscall

2016-06-13 Thread Richard Henderson
Do what the comment says, test for signal_pending non-zero, rather than the current coe which tests for bit 0 non-zero. Signed-off-by: Richard Henderson --- linux-user/host/x86_64/safe-syscall.inc.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linux-user/host/x86_64/