diff options
author | Stefan Hajnoczi | 2021-02-22 12:49:31 +0100 |
---|---|---|
committer | Michael S. Tsirkin | 2021-03-02 15:16:18 +0100 |
commit | 1d8d014e936a49795de95a35a2a1ab8000ab2e5b (patch) | |
tree | 3aaf9f69f6b61949f3343ea8cbdc943780281e88 /hw/virtio/virtio-pci.c | |
parent | hw/pci: Have safer pcie_bus_realize() by checking error path (diff) | |
download | qemu-1d8d014e936a49795de95a35a2a1ab8000ab2e5b.tar.gz qemu-1d8d014e936a49795de95a35a2a1ab8000ab2e5b.tar.xz qemu-1d8d014e936a49795de95a35a2a1ab8000ab2e5b.zip |
vhost: simplify vhost_dev_init() fail_busyloop label
Requiring a conditional for every goto is tedious:
if (busyloop_timeout) {
goto fail_busyloop;
} else {
goto fail;
}
Move the conditional to into the fail_busyloop label so that it's safe
to jump to this label unconditionally.
This change makes the migrate_add_blocker() error case more consistent.
It jumped to fail_busyloop unconditionally whereas the memslots limits
error case was conditional.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <20210222114931.272308-1-stefanha@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio/virtio-pci.c')
0 files changed, 0 insertions, 0 deletions