aboutsummaryrefslogtreecommitdiff
path: root/memory.c
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2011-12-20 15:53:11 +0200
committerAvi Kivity <avi@redhat.com>2012-01-04 13:34:47 +0200
commit8991c79b57b75fcdeb290df89b9b0adaccb0303c (patch)
treec5ecf64f714e5f1d5e379aab405c3403506b8f6d /memory.c
parentf3c6a169a39d188e98c17a0a0ebfa7f85e5aafdd (diff)
memory: introduce memory_region_name()
Trivial accessor for the name attribute. Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'memory.c')
-rw-r--r--memory.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/memory.c b/memory.c
index a90eefd8d1..93f9569c05 100644
--- a/memory.c
+++ b/memory.c
@@ -1108,6 +1108,11 @@ uint64_t memory_region_size(MemoryRegion *mr)
return int128_get64(mr->size);
}
+const char *memory_region_name(MemoryRegion *mr)
+{
+ return mr->name;
+}
+
bool memory_region_is_ram(MemoryRegion *mr)
{
return mr->ram;