2012-12-05 14:18:02 +01:00
|
|
|
From bb8b1492d54777f51e5a6adf003bc62f91175524 Mon Sep 17 00:00:00 2001
|
2012-05-30 20:19:53 +02:00
|
|
|
From: Alexander Graf <agraf@suse.de>
|
|
|
|
Date: Tue, 29 May 2012 15:30:01 +0200
|
|
|
|
Subject: [PATCH] linux-user: arm: no tb_flush on reset
|
|
|
|
|
|
|
|
When running automoc4 as linux-user guest program, it segfaults right after
|
|
|
|
it creates a thread. Bisecting pointed to commit a84fac1426 which introduces
|
|
|
|
tb_flush on reset.
|
|
|
|
|
|
|
|
So something in our thread creation is broken. But for now, let's revert the
|
|
|
|
change to at least get a working build again.
|
|
|
|
---
|
|
|
|
target-arm/cpu.c | 4 ++++
|
2012-12-13 11:49:19 +01:00
|
|
|
1 files changed, 4 insertions(+), 0 deletions(-)
|
2012-05-30 20:19:53 +02:00
|
|
|
|
|
|
|
diff --git a/target-arm/cpu.c b/target-arm/cpu.c
|
2012-08-17 18:42:52 +02:00
|
|
|
index b00f5fa..740dbc3 100644
|
2012-05-30 20:19:53 +02:00
|
|
|
--- a/target-arm/cpu.c
|
|
|
|
+++ b/target-arm/cpu.c
|
2012-08-17 18:42:52 +02:00
|
|
|
@@ -124,7 +124,11 @@ static void arm_cpu_reset(CPUState *s)
|
2012-05-30 20:19:53 +02:00
|
|
|
* bake assumptions about into translated code, so we need to
|
|
|
|
* tb_flush().
|
|
|
|
*/
|
|
|
|
+#if !defined(CONFIG_USER_ONLY)
|
|
|
|
+ /* XXX hack alert! automoc4 segaults after spawning a new thread with this
|
|
|
|
+ flush enabled */
|
|
|
|
tb_flush(env);
|
|
|
|
+#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void set_feature(CPUARMState *env, int feature)
|