All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] ksm support
@ 2009-10-08 14:39 Izik Eidus
  0 siblings, 0 replies; only message in thread
From: Izik Eidus @ 2009-10-08 14:39 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 831 bytes --]

Attached patch add ksm support

(below is inline version)

 From cd20e52d0542b5f8716333b8abfcb8112684502b Mon Sep 17 00:00:00 2001
From: Izik Eidus <ieidus@redhat.com>
Date: Thu, 8 Oct 2009 16:31:18 +0200
Subject: [PATCH] qemu ksm support

call MADV_MERGEABLE on guest memory allocations.

Signed-off-by: Izik Eidus <ieidus@redhat.com>
---
  exec.c |    3 +++
  1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/exec.c b/exec.c
index d9be575..076d26b 100644
--- a/exec.c
+++ b/exec.c
@@ -2412,6 +2412,9 @@ ram_addr_t qemu_ram_alloc(ram_addr_t size)
      new_block = qemu_malloc(sizeof(*new_block));

      new_block->host = qemu_vmalloc(size);
+#ifdef MADV_MERGEABLE
+    madvise(new_block->host, size, MADV_MERGEABLE);
+#endif
      new_block->offset = last_ram_offset;
      new_block->length = size;

-- 
1.6.2.5


[-- Attachment #2: 0001-qemu-ksm-support.patch --]
[-- Type: text/plain, Size: 768 bytes --]

>From cd20e52d0542b5f8716333b8abfcb8112684502b Mon Sep 17 00:00:00 2001
From: Izik Eidus <ieidus@redhat.com>
Date: Thu, 8 Oct 2009 16:31:18 +0200
Subject: [PATCH] qemu ksm support

call MADV_MERGEABLE on guest memory allocations.

Signed-off-by: Izik Eidus <ieidus@redhat.com>
---
 exec.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/exec.c b/exec.c
index d9be575..076d26b 100644
--- a/exec.c
+++ b/exec.c
@@ -2412,6 +2412,9 @@ ram_addr_t qemu_ram_alloc(ram_addr_t size)
     new_block = qemu_malloc(sizeof(*new_block));
 
     new_block->host = qemu_vmalloc(size);
+#ifdef MADV_MERGEABLE
+    madvise(new_block->host, size, MADV_MERGEABLE);
+#endif
     new_block->offset = last_ram_offset;
     new_block->length = size;
 
-- 
1.6.2.5


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2009-10-08 14:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-08 14:39 [Qemu-devel] [PATCH] ksm support Izik Eidus

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.