mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
memory: Move owner-less MemoryRegions to /machine/unattached
This cleans up the official /machine namespace. In particular /machine/system[0] and /machine/io[0], as well as entries with non-sanitized node names such as "/machine/qemu extended regs[0]". The actual MemoryRegion names remain unchanged. Acked-by: Paolo Bonzini <pbonzini@redhat.com> Tested-by: Alistair Francis <alistair.francis@xilinx.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
a01ff75fcd
commit
210eb9364b
1 changed files with 1 additions and 1 deletions
2
memory.c
2
memory.c
|
@ -868,7 +868,7 @@ void memory_region_init(MemoryRegion *mr,
|
|||
uint64_t size)
|
||||
{
|
||||
if (!owner) {
|
||||
owner = qdev_get_machine();
|
||||
owner = container_get(qdev_get_machine(), "/unattached");
|
||||
}
|
||||
|
||||
object_initialize(mr, sizeof(*mr), TYPE_MEMORY_REGION);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue