mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 06:13:46 +08:00
qdev: Fix -device and device_add to handle unsuitable bus gracefully
"device_add isa-serial,bus=pci.0" kills QEMU. Not good.
This commit is contained in:
parent
0f0bc3f1d5
commit
327867b62a
@ -204,6 +204,11 @@ DeviceState *qdev_device_add(QemuOpts *opts)
|
||||
path = qemu_opt_get(opts, "bus");
|
||||
if (path != NULL) {
|
||||
bus = qbus_find(path);
|
||||
if (bus && bus->info != info->bus_info) {
|
||||
error_report("Device '%s' can't go on a %s bus",
|
||||
driver, bus->info->name);
|
||||
return NULL;
|
||||
}
|
||||
} else {
|
||||
bus = qbus_find_recursive(main_system_bus, NULL, info->bus_info);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user