DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ferruh Yigit <ferruh.yigit@intel.com>
To: Andy Roulin <aroulin@cumulusnetworks.com>, dev@dpdk.org
Cc: shm@cumulusnetworks.com
Subject: Re: [dpdk-dev] [PATCH] kni: fix pci_enable_msix_range error handling
Date: Mon, 5 Feb 2018 19:05:14 +0000	[thread overview]
Message-ID: <d6863d8a-c53b-884a-9c6e-e82907910fb0@intel.com> (raw)
In-Reply-To: <1513577790-6608-1-git-send-email-aroulin@cumulusnetworks.com>

On 12/18/2017 6:16 AM, Andy Roulin wrote:
> pci_enable_msix_range's return value has a different meaning than what
> was previously returned by pci_enable_msix.
> 
> "It returns a negative errno if an error occurs. If it succeeds, it
> returns the actual number of interrupts allocated and indicates the
> successful configuration of MSI-X capability structure with new
> allocated MSI-X interrupts."
> 
> The following commit introduced pci_enable_msix_range:
> dpdk: 9fb3cd2c ("kni: fix ethtool build with kernel 4.11")
> http://dpdk.org/dev/patchwork/patch/24076/

Hi Andy,

This is updating driver within KNI, and these drivers are used for ethtool
support and most of the driver is already not used at all.

I doubt the updated code is functional at all.

Did you encounter any problem?

These drivers are already outdated, and I am definitely not for actively
maintaining them which is not required for ethtool support.

> 
> Signed-off-by: Andy Roulin <aroulin@cumulusnetworks.com>
> ---
>  lib/librte_eal/linuxapp/kni/ethtool/igb/igb_main.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/lib/librte_eal/linuxapp/kni/ethtool/igb/igb_main.c b/lib/librte_eal/linuxapp/kni/ethtool/igb/igb_main.c
> index e0f427a..32ef3b9 100644
> --- a/lib/librte_eal/linuxapp/kni/ethtool/igb/igb_main.c
> +++ b/lib/librte_eal/linuxapp/kni/ethtool/igb/igb_main.c
> @@ -1043,14 +1043,16 @@ static void igb_set_interrupt_capability(struct igb_adapter *adapter, bool msix)
>  #ifdef HAVE_PCI_ENABLE_MSIX
>  			err = pci_enable_msix(pdev,
>  			                      adapter->msix_entries, numvecs);
> +			if (err == 0)
> +				break;
>  #else
>  			err = pci_enable_msix_range(pdev,
>  					adapter->msix_entries,
>  					numvecs,
>  					numvecs);
> -#endif
> -			if (err == 0)
> +			if (err < 0)
>  				break;
> +#endif
>  		}
>  		/* MSI-X failed, so fall through and try MSI */
>  		dev_warn(pci_dev_to_dev(pdev), "Failed to initialize MSI-X interrupts. "
> 

  reply	other threads:[~2018-02-05 19:05 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-18  6:16 Andy Roulin
2018-02-05 19:05 ` Ferruh Yigit [this message]
2018-02-05 19:46   ` Andy Roulin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d6863d8a-c53b-884a-9c6e-e82907910fb0@intel.com \
    --to=ferruh.yigit@intel.com \
    --cc=aroulin@cumulusnetworks.com \
    --cc=dev@dpdk.org \
    --cc=shm@cumulusnetworks.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).