qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] ksm support


From: Izik Eidus
Subject: [Qemu-devel] [PATCH] ksm support
Date: Thu, 08 Oct 2009 16:39:39 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.4pre) Gecko/20090922 Fedora/3.0-2.7.b4.fc11 Thunderbird/3.0b4

Attached patch add ksm support

(below is inline version)

From cd20e52d0542b5f8716333b8abfcb8112684502b Mon Sep 17 00:00:00 2001
From: Izik Eidus <address@hidden>
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 <address@hidden>
---
 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: 0001-qemu-ksm-support.patch
Description: Text document


reply via email to

[Prev in Thread] Current Thread [Next in Thread]