qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pcie: Release references of virtual functions
@ 2023-04-11  9:04 Akihiko Odaki
  2023-04-11  9:07 ` Cédric Le Goater
  2023-04-11 10:11 ` Philippe Mathieu-Daudé
  0 siblings, 2 replies; 7+ messages in thread
From: Akihiko Odaki @ 2023-04-11  9:04 UTC (permalink / raw)
  Cc: qemu-devel, Michael S. Tsirkin, Marcel Apfelbaum, Akihiko Odaki

pci_new() automatically retains a reference to a virtual function when
registering it so we need to release the reference when unregistering.

Fixes: 7c0fa8dff8 ("pcie: Add support for Single Root I/O Virtualization (SR/IOV)")
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
---
 hw/pci/pcie_sriov.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/pci/pcie_sriov.c b/hw/pci/pcie_sriov.c
index aa5a757b11..76a3b6917e 100644
--- a/hw/pci/pcie_sriov.c
+++ b/hw/pci/pcie_sriov.c
@@ -211,6 +211,7 @@ static void unregister_vfs(PCIDevice *dev)
             error_free(local_err);
         }
         object_unparent(OBJECT(vf));
+        object_unref(OBJECT(vf));
     }
     g_free(dev->exp.sriov_pf.vf);
     dev->exp.sriov_pf.vf = NULL;
-- 
2.40.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-07-02 11:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-11  9:04 [PATCH] pcie: Release references of virtual functions Akihiko Odaki
2023-04-11  9:07 ` Cédric Le Goater
2023-04-11 10:11 ` Philippe Mathieu-Daudé
2023-04-11 11:05   ` Akihiko Odaki
2023-04-21  8:09   ` Michael S. Tsirkin
2023-07-01  6:19     ` Akihiko Odaki
2023-07-02 11:21       ` Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).