summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorDr. David Alan Gilbert <dgilbert@redhat.com>2017-03-07 18:36:36 +0000
committerJuan Quintela <quintela@redhat.com>2017-03-16 09:00:58 +0100
commit463a4ac23bcf0f0b65c850fa66f5ae6e43edd243 (patch)
tree1909e8b2d3d4e68b4025be83d536e6aeac765dd2 /exec.c
parente1e686c1fad6f4c4f7c98565c130526f64e7f02c (diff)
downloadqemu-463a4ac23bcf0f0b65c850fa66f5ae6e43edd243.tar.gz
RAMBlocks: qemu_ram_is_shared
Provide a helper to say whether a RAMBlock was created as a shared mapping. 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.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/exec.c b/exec.c
index a22f5a0385..e57a8a2178 100644
--- a/exec.c
+++ b/exec.c
@@ -1561,6 +1561,11 @@ const char *qemu_ram_get_idstr(RAMBlock *rb)
return rb->idstr;
}
+bool qemu_ram_is_shared(RAMBlock *rb)
+{
+ return rb->flags & RAM_SHARED;
+}
+
/* Called with iothread lock held. */
void qemu_ram_set_idstr(RAMBlock *new_block, const char *name, DeviceState *dev)
{