summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorDr. David Alan Gilbert <dgilbert@redhat.com>2015-11-05 18:10:33 +0000
committerJuan Quintela <quintela@redhat.com>2015-11-10 14:51:48 +0100
commite3dd74934f2d2c8c67083995928ff68e8c1d0030 (patch)
treed02d77903f79e38a107939894c5d4b3819cc395f /exec.c
parent422148d3e56c3c9a07c0cf36c1e0a0b76f09c357 (diff)
downloadqemu-e3dd74934f2d2c8c67083995928ff68e8c1d0030.tar.gz
qemu_ram_block_by_name
Add a function to find a RAMBlock by name; use it in two of the places that already open code that loop; we've got another use later in postcopy. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/exec.c b/exec.c
index 53d384873b..36886eeba2 100644
--- a/exec.c
+++ b/exec.c
@@ -1946,6 +1946,26 @@ found:
return block;
}
+/*
+ * Finds the named RAMBlock
+ *
+ * name: The name of RAMBlock to find
+ *
+ * Returns: RAMBlock (or NULL if not found)
+ */
+RAMBlock *qemu_ram_block_by_name(const char *name)
+{
+ RAMBlock *block;
+
+ QLIST_FOREACH_RCU(block, &ram_list.blocks, next) {
+ if (!strcmp(name, block->idstr)) {
+ return block;
+ }
+ }
+
+ return NULL;
+}
+
/* Some of the softmmu routines need to translate from a host pointer
(typically a TLB entry) back to a ram offset. */
MemoryRegion *qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr)