PPC: KVM: Disable mmu notifier check
authorAlexander Graf <agraf@suse.de>
Fri, 6 Jan 2012 00:05:55 +0000 (01:05 +0100)
committerChanho Park <parkch98@gmail.com>
Tue, 9 Sep 2014 02:32:50 +0000 (11:32 +0900)
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

diff --git a/exec.c b/exec.c
index 765bd94..33818c1 100644 (file)
--- a/exec.c
+++ b/exec.c
@@ -1037,11 +1037,13 @@ static void *file_ram_alloc(RAMBlock *block,
         return NULL;
     }
 
+#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(block->mr->name);