]> git.ipfire.org Git - thirdparty/qemu.git/commit
target-ppc, tcg: fix usermode segfault with pthread_create()
authorSam Bobroff <sam.bobroff@au1.ibm.com>
Tue, 7 Feb 2017 03:21:39 +0000 (14:21 +1100)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Thu, 16 Mar 2017 17:10:41 +0000 (12:10 -0500)
commit1d1d9226d898b5394906e2e9f124b4d5abe6f02f
tree2950d6574730078d3673ed0fd66d0ffab98dad8c
parentadf2c47aa2b5b6891db5f22751180f8501bdf6d2
target-ppc, tcg: fix usermode segfault with pthread_create()

Programs run under qemu-ppc64 on an x86_64 host currently segfault
if they use pthread_create() due to the adjustment made to the NIP in
commit bd6fefe71cec5a0c7d2be4ac96307f25db56abf9.

This patch changes cpu_loop() to set the NIP back to the
pre-incremented value before calling do_syscall(), which causes the
correct address to be used for the new thread and corrects the fault.

Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
(cherry picked from commit 2635531f2006bfb0f943ad25b41e176709b79b37)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
linux-user/main.c