diff options
author | Nathan Whitehorn <nwhitehorn@freebsd.org> | 2016-08-30 01:02:47 +0000 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2016-09-23 12:39:07 +1000 |
commit | 5145ad4fad099983887c6e6caa2354376005226f (patch) | |
tree | 2af7306cf7535e4e5f55172303cf14c90b975fdf /target-ppc/kvm.c | |
parent | d76ab5e1c7db5f064700b9c3cb0924ccfd9017e5 (diff) | |
download | qemu-5145ad4fad099983887c6e6caa2354376005226f.zip qemu-5145ad4fad099983887c6e6caa2354376005226f.tar.gz qemu-5145ad4fad099983887c6e6caa2354376005226f.tar.bz2 |
Enable H_CLEAR_MOD and H_CLEAR_REF hypercalls on KVM/PPC64.
These are mandatory per PAPR and available on Linux 4.3 and newer kernels. The calls in question are required to run FreeBSD guests with reasonable performance, so enable them if possible.
Signed-off-by: Nathan Whitehorn <nwhitehorn@freebsd.org>
[dwg: Added a stub to fix compile without KVM (e.g. on x86 host)]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target-ppc/kvm.c')
-rw-r--r-- | target-ppc/kvm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c index 4457337..c89991c 100644 --- a/target-ppc/kvm.c +++ b/target-ppc/kvm.c @@ -2056,6 +2056,12 @@ void kvmppc_enable_set_mode_hcall(void) kvmppc_enable_hcall(kvm_state, H_SET_MODE); } +void kvmppc_enable_clear_ref_mod_hcalls(void) +{ + kvmppc_enable_hcall(kvm_state, H_CLEAR_REF); + kvmppc_enable_hcall(kvm_state, H_CLEAR_MOD); +} + void kvmppc_set_papr(PowerPCCPU *cpu) { CPUState *cs = CPU(cpu); |