Hello, Alexander.

On Fri, Oct 18, 2013 at 07:12:12PM +0200, Alexander Gordeev wrote:
> So i.e. the request loop described in the documentation...
> 
>       int foo_driver_enable_msix(struct foo_adapter *adapter,
>                                  int nvec)
>       {
>               while (nvec >= FOO_DRIVER_MINIMUM_NVEC) {
>                       rc = pci_enable_msix(adapter->pdev,
>                                            adapter->msix_entries,
>                                            nvec);
>                       if (rc > 0)
>                               nvec = rc;
>                       else
>                               return rc;
>               }
> 
>               return -ENOSPC;
>       }
> 
> ...would turn into a single helper call....
> 
>       rc = pcim_enable_msix_range(adapter->pdev,
>                                   adapter->msix_entries,
>                                   nvec,
>                                   FOO_DRIVER_MINIMUM_NVEC);

I haven't looked into any details but, if the above works for most use
cases, it looks really good to me.

Thanks!

-- 
tejun
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to