mirror of
https://github.com/qemu/qemu.git
synced 2025-10-29 08:39:23 +00:00
When realizing a Super I/O with IDE controller [*], we get:
qom/object.c:1684: object_property_try_add_child: Assertion `!child->parent' failed.
Aborted (core dumped)
This is because the device is already realized when we try to
add the QOM property to the parent. Fix by realizing *after*
adding the QOM relationship.
[*] Set ISASuperIOClass::ide.count = N with N not zero
(no such thing currently exists; the bug is latent)
Fixes:
|
||
|---|---|---|
| .. | ||
| apm.c | ||
| i82378.c | ||
| isa-bus.c | ||
| isa-superio.c | ||
| Kconfig | ||
| lpc_ich9.c | ||
| meson.build | ||
| pc87312.c | ||
| piix3.c | ||
| piix4.c | ||
| smc37c669-superio.c | ||
| trace-events | ||
| trace.h | ||
| vt82c686.c | ||