diff options
author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2017-03-07 18:36:36 +0000 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2017-03-16 09:00:58 +0100 |
commit | 463a4ac23bcf0f0b65c850fa66f5ae6e43edd243 (patch) | |
tree | 1909e8b2d3d4e68b4025be83d536e6aeac765dd2 /include/exec | |
parent | e1e686c1fad6f4c4f7c98565c130526f64e7f02c (diff) | |
download | qemu-463a4ac23bcf0f0b65c850fa66f5ae6e43edd243.zip qemu-463a4ac23bcf0f0b65c850fa66f5ae6e43edd243.tar.gz qemu-463a4ac23bcf0f0b65c850fa66f5ae6e43edd243.tar.bz2 |
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 'include/exec')
-rw-r--r-- | include/exec/cpu-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h index b62f0d8..4d45a72 100644 --- a/include/exec/cpu-common.h +++ b/include/exec/cpu-common.h @@ -69,6 +69,7 @@ RAMBlock *qemu_ram_block_from_host(void *ptr, bool round_offset, void qemu_ram_set_idstr(RAMBlock *block, const char *name, DeviceState *dev); void qemu_ram_unset_idstr(RAMBlock *block); const char *qemu_ram_get_idstr(RAMBlock *rb); +bool qemu_ram_is_shared(RAMBlock *rb); size_t qemu_ram_pagesize(RAMBlock *block); size_t qemu_ram_pagesize_largest(void); |