diff options
author | Nikunj A Dadhania | 2017-04-27 07:18:23 +0200 |
---|---|---|
committer | David Gibson | 2017-05-11 01:45:15 +0200 |
commit | f0b0685d6694a28c66018f438e822596243b1250 (patch) | |
tree | fc23d68679e8bd4755d9792a3fd46fce5e645946 /target | |
parent | cpus: Fix CPU unplug for MTTCG (diff) | |
download | qemu-f0b0685d6694a28c66018f438e822596243b1250.tar.gz qemu-f0b0685d6694a28c66018f438e822596243b1250.tar.xz qemu-f0b0685d6694a28c66018f438e822596243b1250.zip |
tcg: enable MTTCG by default for PPC64 on x86
This enables the multi-threaded system emulation by default for PPC64
guests using the x86_64 TCG back-end.
Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target')
-rw-r--r-- | target/ppc/cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h index e0ff0412d6..ece535d611 100644 --- a/target/ppc/cpu.h +++ b/target/ppc/cpu.h @@ -30,6 +30,8 @@ #define TARGET_LONG_BITS 64 #define TARGET_PAGE_BITS 12 +#define TCG_GUEST_DEFAULT_MO 0 + /* Note that the official physical address space bits is 62-M where M is implementation dependent. I've not looked up M for the set of cpus we emulate at the system level. */ |