aux-bus is not hotpluggable but its instance can still be created and finalized when processing the device-list-properties QMP command. Exposing such a temporary instance to AddressSpace should be avoided because it leaks the instance.
Expose instances to the AddressSpace at their realization time so that it won't happen for the temporary instances. Signed-off-by: Akihiko Odaki <od...@rsg.ci.i.u-tokyo.ac.jp> --- hw/misc/auxbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/misc/auxbus.c b/hw/misc/auxbus.c index 877f34560626f0ef741f00bb6c7272135d264399..c47db4da985d8e81f9eb49542279499c931aac6c 100644 --- a/hw/misc/auxbus.c +++ b/hw/misc/auxbus.c @@ -74,12 +74,12 @@ AUXBus *aux_bus_init(DeviceState *parent, const char *name) /* Memory related. */ bus->aux_io = g_malloc(sizeof(*bus->aux_io)); memory_region_init(bus->aux_io, OBJECT(bus), "aux-io", 1 * MiB); - address_space_init(&bus->aux_addr_space, bus->aux_io, "aux-io"); return bus; } void aux_bus_realize(AUXBus *bus) { + address_space_init(&bus->aux_addr_space, bus->aux_io, "aux-io"); qdev_realize(DEVICE(bus->bridge), BUS(bus), &error_fatal); } -- 2.51.0