bdaf61259a
Update to v2.4.0 OBS-URL: https://build.opensuse.org/request/show/329598 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=271
33 lines
1.0 KiB
Diff
33 lines
1.0 KiB
Diff
From 2fc3bebad0110c2578f4db9e0f4dae1613000843 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Graf <agraf@suse.de>
|
|
Date: Fri, 6 Jan 2012 01:05:55 +0100
|
|
Subject: [PATCH] PPC: KVM: Disable mmu notifier check
|
|
|
|
When using hugetlbfs (which is required for HV mode KVM on 970), we
|
|
check for MMU notifiers that on 970 can not be implemented properly.
|
|
|
|
So disable the check for mmu notifiers on PowerPC guests, making
|
|
KVM guests work there, even if possibly racy in some odd circumstances.
|
|
---
|
|
exec.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/exec.c b/exec.c
|
|
index 0a4a0c5..03054a8 100644
|
|
--- a/exec.c
|
|
+++ b/exec.c
|
|
@@ -1183,11 +1183,13 @@ static void *file_ram_alloc(RAMBlock *block,
|
|
goto error;
|
|
}
|
|
|
|
+#ifndef TARGET_PPC
|
|
if (kvm_enabled() && !kvm_has_sync_mmu()) {
|
|
error_setg(errp,
|
|
"host lacks kvm mmu notifiers, -mem-path unsupported");
|
|
goto error;
|
|
}
|
|
+#endif
|
|
|
|
/* Make name safe to use with mkstemp by replacing '/' with '_'. */
|
|
sanitized_name = g_strdup(memory_region_name(block->mr));
|