* [PATCHv3] nvme/pci: Provide SR-IOV support
@ 2016-06-20 15:41 Keith Busch
2016-06-22 16:02 ` Christoph Hellwig
0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2016-06-20 15:41 UTC (permalink / raw)
This registers an sr-iov callback for nvme.
Signed-off-by: Keith Busch <keith.busch at intel.com>
---
v2 -> v3:
Removed the pci dependency part, instead checking pci_vfs_assigned
in nvme.
drivers/nvme/host/pci.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index dc39924..6d33f77 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -2008,6 +2008,24 @@ 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)
{
@@ -2108,6 +2126,7 @@ static struct pci_driver nvme_driver = {
.driver = {
.pm = &nvme_dev_pm_ops,
},
+ .sriov_configure = nvme_pci_sriov_configure,
.err_handler = &nvme_err_handler,
};
--
2.7.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCHv3] nvme/pci: Provide SR-IOV support
2016-06-20 15:41 [PATCHv3] nvme/pci: Provide SR-IOV support Keith Busch
@ 2016-06-22 16:02 ` Christoph Hellwig
2016-07-19 1:31 ` Keith Busch
0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2016-06-22 16:02 UTC (permalink / raw)
Looks fine (well, at least as fine as the current SR-IOV infrastructure
allows..):
Reviewed-by: Christoph Hellwig <hch at lst.de>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCHv3] nvme/pci: Provide SR-IOV support
2016-06-22 16:02 ` Christoph Hellwig
@ 2016-07-19 1:31 ` Keith Busch
2016-07-21 3:30 ` Jens Axboe
0 siblings, 1 reply; 4+ messages in thread
From: Keith Busch @ 2016-07-19 1:31 UTC (permalink / raw)
On Wed, Jun 22, 2016@09:02:33AM -0700, Christoph Hellwig wrote:
> Looks fine (well, at least as fine as the current SR-IOV infrastructure
> allows..):
>
> Reviewed-by: Christoph Hellwig <hch at lst.de>
Hi Jens,
Could we get this SRIOV patch applied for 4.8?
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCHv3] nvme/pci: Provide SR-IOV support
2016-07-19 1:31 ` Keith Busch
@ 2016-07-21 3:30 ` Jens Axboe
0 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2016-07-21 3:30 UTC (permalink / raw)
On 07/18/2016 07:31 PM, Keith Busch wrote:
> On Wed, Jun 22, 2016@09:02:33AM -0700, Christoph Hellwig wrote:
>> Looks fine (well, at least as fine as the current SR-IOV infrastructure
>> allows..):
>>
>> Reviewed-by: Christoph Hellwig <hch at lst.de>
>
> Hi Jens,
> Could we get this SRIOV patch applied for 4.8?
Added, thanks.
--
Jens Axboe
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-07-21 3:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-20 15:41 [PATCHv3] nvme/pci: Provide SR-IOV support Keith Busch
2016-06-22 16:02 ` Christoph Hellwig
2016-07-19 1:31 ` Keith Busch
2016-07-21 3:30 ` Jens Axboe
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).