Message ID | 1322245550-5110-1-git-send-email-peter.maydell@linaro.org |
---|---|
State | Accepted |
Commit | f4fc247b0df2dfccae80618ccf6741a9b9e50e49 |
Headers | show |
On 25 November 2011 19:25, Peter Maydell <peter.maydell@linaro.org> wrote: > Don't call arm_translate_init() (which allocates TCG resources) > unless TCG is enabled. Thanks, applied this patch. Cheers
diff --git a/target-arm/helper.c b/target-arm/helper.c index 97af4d0..3fe5822 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -390,7 +390,7 @@ CPUARMState *cpu_arm_init(const char *cpu_model) return NULL; env = g_malloc0(sizeof(CPUARMState)); cpu_exec_init(env); - if (!inited) { + if (tcg_enabled() && !inited) { inited = 1; arm_translate_init(); }
Don't call arm_translate_init() (which allocates TCG resources) unless TCG is enabled. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> --- First KVM related QEMU patch :-) [without this we segfault on startup if run with -enable-kvm, although the omission is currently harmless for upstream QEMU where TCG is always enabled on ARM.] target-arm/helper.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)