> -----Original Message-----
> From: Alexander Gordeev [mailto:agord...@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-
> s...@vger.kernel.org; linux-...@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.ji...@intel.com>

 
> > Signed-off-by: Alexander Gordeev <agord...@redhat.com>
> > Cc: Lukasz Dorau <lukasz.do...@intel.com>
> > Cc: Maciej Patelczyk <maciej.patelc...@intel.com>
> > Cc: Dave Jiang <dave.ji...@intel.com>
> > Cc: intel-linux-...@intel.com
> > Cc: linux-scsi@vger.kernel.org
> > Cc: linux-...@vger.kernel.org
> > Acked-by: Artur Paszkiewicz <artur.paszkiew...@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-scsi" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to