diff options
author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2025-01-16 18:01:00 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2025-02-20 18:23:19 -0500 |
commit | b85901e728d048c931d110bfd5ff8f119cc97df7 (patch) | |
tree | 03fd38ed7d1cbe74b828fad4d730ffd19292e3a9 /hw/pci | |
parent | cab1398a60eb0cb2d2d1998c9b46aaa5e0bf3ee8 (diff) | |
download | qemu-b85901e728d048c931d110bfd5ff8f119cc97df7.zip qemu-b85901e728d048c931d110bfd5ff8f119cc97df7.tar.gz qemu-b85901e728d048c931d110bfd5ff8f119cc97df7.tar.bz2 |
pcie_sriov: Release VFs failed to realize
Release VFs failed to realize just as we do in unregister_vfs().
Fixes: 7c0fa8dff811 ("pcie: Add support for Single Root I/O Virtualization (SR/IOV)")
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Message-Id: <20250116-reuse-v20-9-7cb370606368@daynix.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci')
-rw-r--r-- | hw/pci/pcie_sriov.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/pci/pcie_sriov.c b/hw/pci/pcie_sriov.c index f1993bc..db087bb 100644 --- a/hw/pci/pcie_sriov.c +++ b/hw/pci/pcie_sriov.c @@ -93,6 +93,8 @@ bool pcie_sriov_pf_init(PCIDevice *dev, uint16_t offset, vf->exp.sriov_vf.vf_number = i; if (!qdev_realize(&vf->qdev, bus, errp)) { + object_unparent(OBJECT(vf)); + object_unref(vf); unparent_vfs(dev, i); return false; } |