mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 14:53:54 -06:00
memory: introduce memory_region_name()
Trivial accessor for the name attribute. Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
f3c6a169a3
commit
8991c79b57
2 changed files with 14 additions and 0 deletions
5
memory.c
5
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue