qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Fix off-by-1 error in RAM migration code
@ 2012-10-31  3:43 David Gibson
  2012-10-31 11:08 ` Orit Wasserman
  0 siblings, 1 reply; 8+ messages in thread
From: David Gibson @ 2012-10-31  3:43 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-devel, David Gibson

The code for migrating (or savevm-ing) memory pages starts off by creating
a dirty bitmap and filling it with 1s.  Except, actually, because bit
addresses are 0-based it fills every bit except bit 0 with 1s and puts an
extra 1 beyond the end of the bitmap, potentially corrupting unrelated
memory.  Oops.  This patch fixes it.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
---
 arch_init.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch_init.c b/arch_init.c
index e6effe8..b75a4c5 100644
--- a/arch_init.c
+++ b/arch_init.c
@@ -568,7 +568,7 @@ static int ram_save_setup(QEMUFile *f, void *opaque)
     int64_t ram_pages = last_ram_offset() >> TARGET_PAGE_BITS;
 
     migration_bitmap = bitmap_new(ram_pages);
-    bitmap_set(migration_bitmap, 1, ram_pages);
+    bitmap_set(migration_bitmap, 0, ram_pages);
     migration_dirty_pages = ram_pages;
 
     bytes_transferred = 0;
-- 
1.7.10.4

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

end of thread, other threads:[~2012-11-21  0:42 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-31  3:43 [Qemu-devel] [PATCH] Fix off-by-1 error in RAM migration code David Gibson
2012-10-31 11:08 ` Orit Wasserman
2012-11-02  3:15   ` David Gibson
2012-11-02 10:58     ` Juan Quintela
2012-11-03 15:00       ` David Gibson
2012-11-04 19:17         ` Juan Quintela
2012-11-05  0:17           ` David Gibson
2012-11-21  0:43       ` David Gibson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).