mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
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>
This commit is contained in:
parent
e1e686c1fa
commit
463a4ac23b
2 changed files with 6 additions and 0 deletions
5
exec.c
5
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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue