summary refs log tree commit diff stats
path: root/system/qdev-monitor.c
diff options
context:
space:
mode:
authorAkihiko Odaki <akihiko.odaki@daynix.com>2024-02-18 15:57:11 +0900
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2025-01-13 17:16:03 +0100
commitccaca8929d53b23e2f7acc45cc88d05fc0479a1b (patch)
tree7179d8b11ea4fd7f8b7cfede06bdaa1c56b444dd /system/qdev-monitor.c
parent1bff035be76cc30ff0fc4e8f0b0fbda84db7d1dc (diff)
downloadfocaccia-qemu-ccaca8929d53b23e2f7acc45cc88d05fc0479a1b.tar.gz
focaccia-qemu-ccaca8929d53b23e2f7acc45cc88d05fc0479a1b.zip
hw/qdev: Check qbus_is_hotpluggable in hotplug_unplug_allowed_common
Check the same code once in the common helper.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
[PMD: Split from bigger patch, part 5/6]
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Message-Id: <20250110091908.64454-6-philmd@linaro.org>
Diffstat (limited to 'system/qdev-monitor.c')
-rw-r--r--system/qdev-monitor.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/system/qdev-monitor.c b/system/qdev-monitor.c
index 81f747b38f..e27d25c585 100644
--- a/system/qdev-monitor.c
+++ b/system/qdev-monitor.c
@@ -675,11 +675,6 @@ DeviceState *qdev_device_add_from_qdict(const QDict *opts,
         return NULL;
     }
 
-    if (phase_check(PHASE_MACHINE_READY) && bus && !qbus_is_hotpluggable(bus)) {
-        error_setg(errp, "Bus '%s' does not support hotplugging", bus->name);
-        return NULL;
-    }
-
     if (migration_is_running()) {
         error_setg(errp, "device_add not allowed while migrating");
         return NULL;
@@ -911,12 +906,6 @@ void qdev_unplug(DeviceState *dev, Error **errp)
         return;
     }
 
-    if (dev->parent_bus && !qbus_is_hotpluggable(dev->parent_bus)) {
-        error_setg(errp, "Bus '%s' does not support hotplugging",
-                   dev->parent_bus->name);
-        return;
-    }
-
     if (migration_is_running() && !dev->allow_unplug_during_migration) {
         error_setg(errp, "device_del not allowed while migrating");
         return;