2014-08-21 18:38:27 +02:00
|
|
|
From 8b667524d7227a6c5d6c5d4a5938b62ac368a694 Mon Sep 17 00:00:00 2001
|
2012-07-10 20:44:07 +02:00
|
|
|
From: Alexander Graf <agraf@suse.de>
|
|
|
|
Date: Tue, 10 Jul 2012 20:40:55 +0200
|
|
|
|
Subject: [PATCH] linux-user: Run multi-threaded code on a single core
|
|
|
|
|
|
|
|
Running multi-threaded code can easily expose some of the fundamental
|
|
|
|
breakages in QEMU's design. It's just not a well supported scenario.
|
|
|
|
|
|
|
|
So if we pin the whole process to a single host CPU, we guarantee that
|
|
|
|
we will never have concurrent memory access actually happen. We can still
|
|
|
|
get scheduled away at any time, so it's no complete guarantee, but apparently
|
|
|
|
it reduces the odds well enough to get my test cases to pass.
|
|
|
|
|
|
|
|
This gets Java 1.7 working for me again on my test box.
|
|
|
|
|
|
|
|
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
|
|
---
|
2014-01-17 23:04:30 +01:00
|
|
|
linux-user/syscall.c | 9 +++++++++
|
|
|
|
1 file changed, 9 insertions(+)
|
2012-07-10 20:44:07 +02:00
|
|
|
|
|
|
|
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
|
2014-07-17 00:56:01 +02:00
|
|
|
index 4ce7b84..9218392 100644
|
2012-07-10 20:44:07 +02:00
|
|
|
--- a/linux-user/syscall.c
|
|
|
|
+++ b/linux-user/syscall.c
|
2014-07-17 00:56:01 +02:00
|
|
|
@@ -4427,6 +4427,15 @@ static int do_fork(CPUArchState *env, unsigned int flags, abi_ulong newsp,
|
2012-07-10 20:44:07 +02:00
|
|
|
if (nptl_flags & CLONE_SETTLS)
|
|
|
|
cpu_set_tls (new_env, newtls);
|
|
|
|
|
|
|
|
+ /* agraf: Pin ourselves to a single CPU when running multi-threaded.
|
|
|
|
+ This turned out to improve stability for me. */
|
|
|
|
+ {
|
|
|
|
+ cpu_set_t mask;
|
|
|
|
+ CPU_ZERO(&mask);
|
|
|
|
+ CPU_SET(0, &mask);
|
|
|
|
+ sched_setaffinity(0, sizeof(mask), &mask);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
/* Grab a mutex so that thread setup appears atomic. */
|
|
|
|
pthread_mutex_lock(&clone_lock);
|
|
|
|
|