public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* kvm: make --mem-path memory allocation depend on mmu notifiers
@ 2009-01-13 20:36 Marcelo Tosatti
  2009-01-13 20:38 ` Anthony Liguori
  2009-01-13 20:57 ` David S. Ahern
  0 siblings, 2 replies; 5+ messages in thread
From: Marcelo Tosatti @ 2009-01-13 20:36 UTC (permalink / raw)
  To: kvm; +Cc: Avi Kivity


Without mmu notifiers usage of hugepages to back guest memory can cause
memory corruption.

Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>


diff --git a/qemu/vl.c b/qemu/vl.c
index d0660ab..49cf066 100644
--- a/qemu/vl.c
+++ b/qemu/vl.c
@@ -4664,6 +4664,11 @@ void *alloc_mem_area(size_t memory, unsigned long *len, const char *path)
     void *area;
     int fd;
 
+    if (!kvm_has_sync_mmu()) {
+        fprintf(stderr, "host lacks mmu notifiers, disabling --mem-path\n");
+        return NULL;
+    }
+
     if (asprintf(&filename, "%s/kvm.XXXXXX", path) == -1)
 	return NULL;
 

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-01-14  0:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-13 20:36 kvm: make --mem-path memory allocation depend on mmu notifiers Marcelo Tosatti
2009-01-13 20:38 ` Anthony Liguori
2009-01-13 20:50   ` Marcelo Tosatti
2009-01-13 20:57 ` David S. Ahern
2009-01-14  0:07   ` Marcelo Tosatti

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox