All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH qemu] pci: Add missing drop of bus master AS reference
@ 2017-03-27  4:40 Alexey Kardashevskiy
  2017-03-27 15:28 ` Paolo Bonzini
  2017-03-29  2:40 ` Jason Wang
  0 siblings, 2 replies; 6+ messages in thread
From: Alexey Kardashevskiy @ 2017-03-27  4:40 UTC (permalink / raw)
  To: qemu-devel
  Cc: Alexey Kardashevskiy, David Gibson, Marcel Apfelbaum,
	Michael S . Tsirkin, Paolo Bonzini, Jason Wang, Peter Maydell

The recent introduction of a bus master container added
memory_region_add_subregion() into the PCI device registering path but
missed memory_region_del_subregion() in the unregistering path leaving
a reference to the root memory region of the new container.

This adds missing memory_region_del_subregion().

Fixes: 3716d5902d743 ("pci: introduce a bus master container")
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
 hw/pci/pci.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/hw/pci/pci.c b/hw/pci/pci.c
index e6b08e1988..bd8043c460 100644
--- a/hw/pci/pci.c
+++ b/hw/pci/pci.c
@@ -869,6 +869,8 @@ static void do_pci_unregister_device(PCIDevice *pci_dev)
     pci_dev->bus->devices[pci_dev->devfn] = NULL;
     pci_config_free(pci_dev);
 
+    memory_region_del_subregion(&pci_dev->bus_master_container_region,
+                                &pci_dev->bus_master_enable_region);
     address_space_destroy(&pci_dev->bus_master_as);
 }
 
-- 
2.11.0

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

end of thread, other threads:[~2017-03-29  2:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-27  4:40 [Qemu-devel] [PATCH qemu] pci: Add missing drop of bus master AS reference Alexey Kardashevskiy
2017-03-27 15:28 ` Paolo Bonzini
2017-03-28  0:06   ` David Gibson
2017-03-28  2:33     ` Michael S. Tsirkin
2017-03-28  2:47       ` David Gibson
2017-03-29  2:40 ` Jason Wang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.