[Stable-11.0.4 v2 132/161] pc-bios/s390-ccw/virtio.c: Fix missing break for PCI notifications
Michael Tokarev <[email protected]>
| Newsgroups | gmane.comp.emulators.qemu.stable,gmane.comp.emulators.qemu |
|---|---|
| Message-ID | <[email protected]> |
From: Jared Rossi <[email protected]> Add a break after calling the PCI specific notification function instead of falling through to the default case. Signed-off-by: Jared Rossi <[email protected]> Reviewed-by: Matthew Rosato <[email protected]> Fixes: d72fb5e6b2 ("pc-bios/s390-ccw: Add support for virtio-blk-pci IPL") Reviewed-by: Eric Farman <[email protected]> Tested-by: Matthew Rosato <[email protected]> Message-ID: <[email protected]> Signed-off-by: Cornelia Huck <[email protected]> (cherry picked from commit 730173107a9849be18130cf65ff5254e1a63f7ad) Signed-off-by: Michael Tokarev <[email protected]> diff --git a/pc-bios/s390-ccw/virtio.c b/pc-bios/s390-ccw/virtio.c index a448dc96e26..7883871033c 100644 --- a/pc-bios/s390-ccw/virtio.c +++ b/pc-bios/s390-ccw/virtio.c @@ -115,6 +115,7 @@ bool vring_notify(VRing *vr) break; case S390_IPL_TYPE_PCI: vr->cookie = virtio_pci_notify(vr->id); + break; default: return 1; } -- 2.47.3