diff options
author | Jan Kiszka <jan.kiszka@web.de> | 2009-04-26 18:03:40 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-05-01 09:44:11 -0500 |
commit | 6f0437e8de95aebbd9e66af4d074c0d5119d86b7 (patch) | |
tree | d761a5e3bf4b2c4075415c3f880e65baf33856d8 /exec.c | |
parent | 8563d5b31d1b1b43f3304ba59535b6b878c15a2d (diff) | |
download | qemu-6f0437e8de95aebbd9e66af4d074c0d5119d86b7.tar.gz qemu-6f0437e8de95aebbd9e66af4d074c0d5119d86b7.tar.bz2 qemu-6f0437e8de95aebbd9e66af4d074c0d5119d86b7.zip |
kvm: Avoid COW if KVM MMU is asynchronous
Avi Kivity wrote:
> Suggest wrapping in a function and hiding it deep inside kvm-all.c.
>
Done in v2:
---------->
If the KVM MMU is asynchronous (kernel does not support MMU_NOTIFIER),
we have to avoid COW for the guest memory. Otherwise we risk serious
breakage when guest pages change there physical locations due to COW
after fork. Seen when forking smbd during runtime via -smb.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'exec.c')
-rw-r--r-- | exec.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2484,6 +2484,9 @@ ram_addr_t qemu_ram_alloc(ram_addr_t size) last_ram_offset += size; + if (kvm_enabled()) + kvm_setup_guest_memory(new_block->host, size); + return new_block->offset; } |