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

Hi Ferruh,

You can drop it then. I  encountered the same porting bug in another
project and came across dpdk's code and patchwork comments which helped me
debugging. I just thought I would contribute the fix back. If it's not
functional then just drop it :)

Andy

On Mon, Feb 5, 2018 at 11:05 AM Ferruh Yigit <ferruh.yigit@intel.com> wrote:

> 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:46 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
2018-02-05 19:46   ` Andy Roulin [this message]

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='CAJd=Rsp4fSQMsDKsURwGDYz8yHzoqt8GW1jzgOKKv1uLavZv9Q@mail.gmail.com' \
    --to=aroulin@cumulusnetworks.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --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).