All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] NVMe: Only release requested regions
@ 2016-05-10 13:14 ` Johannes Thumshirn
  0 siblings, 0 replies; 18+ messages in thread
From: Johannes Thumshirn @ 2016-05-10 13:14 UTC (permalink / raw)


The NVMe driver only requests the PCIe device's memory regions but releases
all possible regions (including eventual I/O regions). This leads to a stale
warning entry in dmesg about freeing non existent resources.

Signed-off-by: Johannes Thumshirn <jthumshirn at suse.de>
---
 drivers/nvme/host/pci.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index eec73fe..6f5ad07 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -1759,9 +1759,14 @@ static int nvme_pci_enable(struct nvme_dev *dev)
 
 static void nvme_dev_unmap(struct nvme_dev *dev)
 {
+	struct pci_dev *pdev = to_pci_dev(dev->dev);
+	int bars;
+
 	if (dev->bar)
 		iounmap(dev->bar);
-	pci_release_regions(to_pci_dev(dev->dev));
+
+	bars = pci_select_bars(pdev, IORESOURCE_MEM);
+	pci_release_selected_regions(pdev, bars);
 }
 
 static void nvme_pci_disable(struct nvme_dev *dev)
@@ -1998,7 +2003,7 @@ static int nvme_dev_map(struct nvme_dev *dev)
 
        return 0;
   release:
-       pci_release_regions(pdev);
+       pci_release_selected_regions(pdev, bars);
        return -ENODEV;
 }
 
-- 
1.8.5.6

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

end of thread, other threads:[~2016-06-09 20:29 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-10 13:14 [PATCH] NVMe: Only release requested regions Johannes Thumshirn
2016-05-10 13:14 ` Johannes Thumshirn
2016-05-10 13:16 ` Hannes Reinecke
2016-05-10 13:16   ` Hannes Reinecke
2016-05-12  7:03 ` Christoph Hellwig
2016-05-12  7:03   ` Christoph Hellwig
2016-05-12  7:34   ` Johannes Thumshirn
2016-05-12  7:34     ` Johannes Thumshirn
2016-05-24  9:15 ` Johannes Thumshirn
2016-05-24  9:15   ` Johannes Thumshirn
2016-05-24  9:19   ` Christoph Hellwig
2016-05-24  9:19     ` Christoph Hellwig
2016-05-24 14:29     ` Keith Busch
2016-05-24 14:29       ` Keith Busch
2016-06-08  7:16 ` Johannes Thumshirn
2016-06-08  7:16   ` Johannes Thumshirn
2016-06-09 20:28   ` Jens Axboe
2016-06-09 20:28     ` Jens Axboe

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.