qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH v2 3/4] page_cache: fix memory leak


From: Orit Wasserman
Subject: [Qemu-devel] [PATCH v2 3/4] page_cache: fix memory leak
Date: Mon, 25 Feb 2013 19:12:03 +0200

From: Peter Lieven <address@hidden>

XBZRLE encoded migration introduced a MRU page cache
meachnism. Unfortunately, cached items where never freed in
case of a collision in the page cache on cache_insert().

This lead to out of memory conditions during XBZRLE migration
if the page cache was small and there where a lot of collisions
in the cache.

Signed-off-by: Peter Lieven <address@hidden>
Signed-off-by: Orit Wasserman <address@hidden>
---
 page_cache.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/page_cache.c b/page_cache.c
index e5717d5..809dadc 100644
--- a/page_cache.c
+++ b/page_cache.c
@@ -152,6 +152,9 @@ void cache_insert(PageCache *cache, uint64_t addr, uint8_t 
*pdata)
     /* actual update of entry */
     it = cache_get_by_addr(cache, addr);
 
+    /* free old cached data if any */
+    g_free(it->it_data);
+
     if (!it->it_data) {
         cache->num_items++;
     }
-- 
1.7.11.7




reply via email to

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