qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/2] unset RAMBlock idstr when unregistering
@ 2014-04-02  7:13 Hu Tao
  2014-04-02  7:13 ` [Qemu-devel] [PATCH 1/2] exec: introduce qemu_ram_unset_idstr() to unset RAMBlock idstr Hu Tao
  2014-04-02  7:13 ` [Qemu-devel] [PATCH 2/2] unset RAMBlock idstr when unregister MemoryRegion Hu Tao
  0 siblings, 2 replies; 3+ messages in thread
From: Hu Tao @ 2014-04-02  7:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: Igor Mammedov, Paolo Bonzini

When hotplug an memdev that was previously plugged and unplugged,
RAMBlock idstr is not cleared and triggers an assert error in
qemu_ram_set_idstr(). This series fixes it.

Hu Tao (2):
  exec: introduce qemu_ram_unset_idstr() to unset RAMBlock idstr
  unset RAMBlock idstr when unregister MemoryRegion

 exec.c                    | 26 +++++++++++++++++++++-----
 include/exec/cpu-common.h |  1 +
 savevm.c                  |  2 +-
 3 files changed, 23 insertions(+), 6 deletions(-)

-- 
1.8.5.2.229.g4448466

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

* [Qemu-devel] [PATCH 1/2] exec: introduce qemu_ram_unset_idstr() to unset RAMBlock idstr
  2014-04-02  7:13 [Qemu-devel] [PATCH 0/2] unset RAMBlock idstr when unregistering Hu Tao
@ 2014-04-02  7:13 ` Hu Tao
  2014-04-02  7:13 ` [Qemu-devel] [PATCH 2/2] unset RAMBlock idstr when unregister MemoryRegion Hu Tao
  1 sibling, 0 replies; 3+ messages in thread
From: Hu Tao @ 2014-04-02  7:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: Igor Mammedov, Paolo Bonzini

Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
 exec.c                    | 26 +++++++++++++++++++++-----
 include/exec/cpu-common.h |  1 +
 2 files changed, 22 insertions(+), 5 deletions(-)

diff --git a/exec.c b/exec.c
index 91513c6..cbf7923 100644
--- a/exec.c
+++ b/exec.c
@@ -1202,17 +1202,24 @@ static void qemu_ram_setup_dump(void *addr, ram_addr_t size)
     }
 }
 
-void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev)
+static RAMBlock *find_ram_block(ram_addr_t addr)
 {
-    RAMBlock *new_block, *block;
+    RAMBlock *block;
 
-    new_block = NULL;
     QTAILQ_FOREACH(block, &ram_list.blocks, next) {
         if (block->offset == addr) {
-            new_block = block;
-            break;
+            return block;
         }
     }
+
+    return NULL;
+}
+
+void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev)
+{
+    RAMBlock *new_block = find_ram_block(addr);
+    RAMBlock *block;
+
     assert(new_block);
     assert(!new_block->idstr[0]);
 
@@ -1237,6 +1244,15 @@ void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev)
     qemu_mutex_unlock_ramlist();
 }
 
+void qemu_ram_unset_idstr(ram_addr_t addr)
+{
+    RAMBlock *block = find_ram_block(addr);
+
+    if (block) {
+        memset(block->idstr, 0, sizeof(block->idstr));
+    }
+}
+
 static int memory_try_enable_merging(void *addr, size_t len)
 {
     if (!qemu_opt_get_bool(qemu_get_machine_opts(), "mem-merge", true)) {
diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h
index a21b65a..89ec640 100644
--- a/include/exec/cpu-common.h
+++ b/include/exec/cpu-common.h
@@ -54,6 +54,7 @@ void qemu_ram_remap(ram_addr_t addr, ram_addr_t length);
 /* This should not be used by devices.  */
 MemoryRegion *qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr);
 void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev);
+void qemu_ram_unset_idstr(ram_addr_t addr);
 
 void cpu_physical_memory_rw(hwaddr addr, uint8_t *buf,
                             int len, int is_write);
-- 
1.8.5.2.229.g4448466

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

* [Qemu-devel] [PATCH 2/2] unset RAMBlock idstr when unregister MemoryRegion
  2014-04-02  7:13 [Qemu-devel] [PATCH 0/2] unset RAMBlock idstr when unregistering Hu Tao
  2014-04-02  7:13 ` [Qemu-devel] [PATCH 1/2] exec: introduce qemu_ram_unset_idstr() to unset RAMBlock idstr Hu Tao
@ 2014-04-02  7:13 ` Hu Tao
  1 sibling, 0 replies; 3+ messages in thread
From: Hu Tao @ 2014-04-02  7:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: Igor Mammedov, Paolo Bonzini

Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
 savevm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/savevm.c b/savevm.c
index 22123be..6f4b1a5 100644
--- a/savevm.c
+++ b/savevm.c
@@ -1208,7 +1208,7 @@ void vmstate_register_ram(MemoryRegion *mr, DeviceState *dev)
 
 void vmstate_unregister_ram(MemoryRegion *mr, DeviceState *dev)
 {
-    /* Nothing do to while the implementation is in RAMBlock */
+    qemu_ram_unset_idstr(memory_region_get_ram_addr(mr) & TARGET_PAGE_MASK);
 }
 
 void vmstate_register_ram_global(MemoryRegion *mr)
-- 
1.8.5.2.229.g4448466

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

end of thread, other threads:[~2014-04-02  7:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-02  7:13 [Qemu-devel] [PATCH 0/2] unset RAMBlock idstr when unregistering Hu Tao
2014-04-02  7:13 ` [Qemu-devel] [PATCH 1/2] exec: introduce qemu_ram_unset_idstr() to unset RAMBlock idstr Hu Tao
2014-04-02  7:13 ` [Qemu-devel] [PATCH 2/2] unset RAMBlock idstr when unregister MemoryRegion Hu Tao

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).