Re: [Qemu-devel] [PATCH 0/6] linux-user: Handle SEGV on signal entry/exit correctly

2016-09-21 Thread Riku Voipio
On Thu, Jul 28, 2016 at 04:44:44PM +0100, Peter Maydell wrote: > This patchset fixes bugs in our handling of failure to read > or write guest memory on entry and exit from a signal handler. > This is supposed to cause a SIGSEGV, but the guest is permitted > a chance to handle the SIGSEGV (assuming

Re: [Qemu-devel] [PATCH 0/6] linux-user: Handle SEGV on signal entry/exit correctly

2016-08-05 Thread Richard Henderson
On 07/28/2016 09:14 PM, Peter Maydell wrote: Peter Maydell (6): linux-user: Recheck for pending synchronous signals too linux-user: Pass si_type information to queue_signal() explicitly linux-user: SIGSEGV on signal entry need not be fatal linux-user: ARM: Give SIGSEGV if signal frame set

[Qemu-devel] [PATCH 0/6] linux-user: Handle SEGV on signal entry/exit correctly

2016-07-28 Thread Peter Maydell
This patchset fixes bugs in our handling of failure to read or write guest memory on entry and exit from a signal handler. This is supposed to cause a SIGSEGV, but the guest is permitted a chance to handle the SIGSEGV (assuming it wasn't generated in the course of trying to enter a SIGSEGV handler