diff options
author | Paolo Bonzini | 2020-11-12 15:38:36 +0100 |
---|---|---|
committer | Paolo Bonzini | 2020-12-15 18:51:52 +0100 |
commit | 2f181fbd5a9d456d1da291bea61d7e3ad10ec7d1 (patch) | |
tree | f6be4e559a9b9a95a2870caf0fc323e7ca6778e7 /hw/usb | |
parent | chardev: do not use machine_init_done (diff) | |
download | qemu-2f181fbd5a9d456d1da291bea61d7e3ad10ec7d1.tar.gz qemu-2f181fbd5a9d456d1da291bea61d7e3ad10ec7d1.tar.xz qemu-2f181fbd5a9d456d1da291bea61d7e3ad10ec7d1.zip |
machine: introduce MachineInitPhase
Generalize the qdev_hotplug variable to the different phases of
machine initialization. We would like to allow different
monitor commands depending on the phase.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/usb')
-rw-r--r-- | hw/usb/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/core.c b/hw/usb/core.c index 5234dcc73f..e960036f4d 100644 --- a/hw/usb/core.c +++ b/hw/usb/core.c @@ -97,7 +97,7 @@ void usb_wakeup(USBEndpoint *ep, unsigned int stream) USBDevice *dev = ep->dev; USBBus *bus = usb_bus_from_device(dev); - if (!qdev_hotplug) { + if (!phase_check(PHASE_MACHINE_READY)) { /* * This is machine init cold plug. No need to wakeup anyone, * all devices will be reset anyway. And trying to wakeup can |