Message ID | 24a4bb34f5a8b5ca964fb063688c24549e8a3b5d.1405533479.git.agordeev@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
On Wed, Jul 16, 2014 at 08:05:14PM +0200, Alexander Gordeev wrote: > As result of deprecation of MSI-X/MSI enablement functions > pci_enable_msix() and pci_enable_msi_block() all drivers > using these two interfaces need to be updated to use the > new pci_enable_msi_range() or pci_enable_msi_exact() > and pci_enable_msix_range() or pci_enable_msix_exact() > interfaces. Artur, Dave, Could you please review isci patches in this series? Thanks! > Signed-off-by: Alexander Gordeev <agordeev@redhat.com> > Cc: Lukasz Dorau <lukasz.dorau@intel.com> > Cc: Maciej Patelczyk <maciej.patelczyk@intel.com> > Cc: Dave Jiang <dave.jiang@intel.com> > Cc: intel-linux-scu@intel.com > Cc: linux-scsi@vger.kernel.org > Cc: linux-pci@vger.kernel.org > Acked-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> > --- > drivers/scsi/isci/init.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c > index 695b34e..4198e45 100644 > --- a/drivers/scsi/isci/init.c > +++ b/drivers/scsi/isci/init.c > @@ -356,7 +356,7 @@ static int isci_setup_interrupts(struct pci_dev *pdev) > for (i = 0; i < num_msix; i++) > pci_info->msix_entries[i].entry = i; > > - err = pci_enable_msix(pdev, pci_info->msix_entries, num_msix); > + err = pci_enable_msix_exact(pdev, pci_info->msix_entries, num_msix); > if (err) > goto intx; > > -- > 1.7.7.6 > -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
> -----Original Message----- > From: Alexander Gordeev [mailto:agordeev@redhat.com] > Sent: Monday, August 11, 2014 12:57 AM > To: intel-linux-scu; Paszkiewicz, Artur; Jiang, Dave > Cc: Dorau, Lukasz; Patelczyk, Maciej; intel-linux-scu; linux- > scsi@vger.kernel.org; linux-pci@vger.kernel.org; Christoph Hellwig > Subject: Re: [PATCH v2 RESEND 10/23] isci: Use pci_enable_msix_exact() > instead of pci_enable_msix() > > On Wed, Jul 16, 2014 at 08:05:14PM +0200, Alexander Gordeev wrote: > > As result of deprecation of MSI-X/MSI enablement functions > > pci_enable_msix() and pci_enable_msi_block() all drivers using these > > two interfaces need to be updated to use the new > > pci_enable_msi_range() or pci_enable_msi_exact() and > > pci_enable_msix_range() or pci_enable_msix_exact() interfaces. > > Artur, Dave, > > Could you please review isci patches in this series? > > Thanks! Sorry. For some reason my spam filter decided to pick this up. Acked-by: Dave Jiang <dave.jiang@intel.com> > > Signed-off-by: Alexander Gordeev <agordeev@redhat.com> > > Cc: Lukasz Dorau <lukasz.dorau@intel.com> > > Cc: Maciej Patelczyk <maciej.patelczyk@intel.com> > > Cc: Dave Jiang <dave.jiang@intel.com> > > Cc: intel-linux-scu@intel.com > > Cc: linux-scsi@vger.kernel.org > > Cc: linux-pci@vger.kernel.org > > Acked-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> > > --- > > drivers/scsi/isci/init.c | 2 +- > > 1 files changed, 1 insertions(+), 1 deletions(-) > > > > diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c index > > 695b34e..4198e45 100644 > > --- a/drivers/scsi/isci/init.c > > +++ b/drivers/scsi/isci/init.c > > @@ -356,7 +356,7 @@ static int isci_setup_interrupts(struct pci_dev > *pdev) > > for (i = 0; i < num_msix; i++) > > pci_info->msix_entries[i].entry = i; > > > > - err = pci_enable_msix(pdev, pci_info->msix_entries, num_msix); > > + err = pci_enable_msix_exact(pdev, pci_info->msix_entries, > num_msix); > > if (err) > > goto intx; > > > > -- > > 1.7.7.6 > > -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c index 695b34e..4198e45 100644 --- a/drivers/scsi/isci/init.c +++ b/drivers/scsi/isci/init.c @@ -356,7 +356,7 @@ static int isci_setup_interrupts(struct pci_dev *pdev) for (i = 0; i < num_msix; i++) pci_info->msix_entries[i].entry = i; - err = pci_enable_msix(pdev, pci_info->msix_entries, num_msix); + err = pci_enable_msix_exact(pdev, pci_info->msix_entries, num_msix); if (err) goto intx;