[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180312172337.3487.95817.stgit@localhost.localdomain>
Date: Mon, 12 Mar 2018 10:23:43 -0700
From: Alexander Duyck <alexander.duyck@...il.com>
To: bhelgaas@...gle.com, alexander.h.duyck@...el.com,
linux-pci@...r.kernel.org
Cc: virtio-dev@...ts.oasis-open.org, kvm@...r.kernel.org,
netdev@...r.kernel.org, dan.daly@...el.com,
linux-kernel@...r.kernel.org, linux-nvme@...ts.infradead.org,
keith.busch@...el.com, netanel@...zon.com, mheyne@...zon.de,
liang-min.wang@...el.com, mark.d.rustad@...el.com,
dwmw2@...radead.org, hch@....de, dwmw@...zon.co.uk
Subject: [pci PATCH v5 4/4] nvme: Migrate over to unmanaged SR-IOV support
From: Alexander Duyck <alexander.h.duyck@...el.com>
Instead of implementing our own version of a SR-IOV configuration stub in
the nvme driver we can just reuse the existing
pci_sriov_configure_simple function.
Signed-off-by: Alexander Duyck <alexander.h.duyck@...el.com>
---
v5: Replaced call to pci_sriov_configure_unmanaged with
pci_sriov_configure_simple
drivers/nvme/host/pci.c | 22 +++-------------------
1 file changed, 3 insertions(+), 19 deletions(-)
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index 5933a5c732e8..3b582f9f8cac 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -2580,24 +2580,6 @@ static void nvme_remove(struct pci_dev *pdev)
nvme_put_ctrl(&dev->ctrl);
}
-static int nvme_pci_sriov_configure(struct pci_dev *pdev, int numvfs)
-{
- int ret = 0;
-
- if (numvfs == 0) {
- if (pci_vfs_assigned(pdev)) {
- dev_warn(&pdev->dev,
- "Cannot disable SR-IOV VFs while assigned\n");
- return -EPERM;
- }
- pci_disable_sriov(pdev);
- return 0;
- }
-
- ret = pci_enable_sriov(pdev, numvfs);
- return ret ? ret : numvfs;
-}
-
#ifdef CONFIG_PM_SLEEP
static int nvme_suspend(struct device *dev)
{
@@ -2716,7 +2698,9 @@ static void nvme_error_resume(struct pci_dev *pdev)
.driver = {
.pm = &nvme_dev_pm_ops,
},
- .sriov_configure = nvme_pci_sriov_configure,
+#ifdef CONFIG_PCI_IOV
+ .sriov_configure = pci_sriov_configure_simple,
+#endif
.err_handler = &nvme_err_handler,
};
Powered by blists - more mailing lists