All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] bnxt patch series
@ 2016-09-29 17:03 Ajit Khaparde
  2016-09-29 17:32 ` Ferruh Yigit
  0 siblings, 1 reply; 3+ messages in thread
From: Ajit Khaparde @ 2016-09-29 17:03 UTC (permalink / raw)
  To: dev

Please consider applying this patch series.
This series is expected to be applied over the previous patchset
once it is accepted.
Depends on: [v2,15/15] bnxt: Update struct definitions to use the 1.5.1
HWRM API
http://dpdk.org/dev/patchwork/patch/16154/

Ajit Khaparde (4):
  testpmd: Add support to configure 25G and 50G speeds
  bnxt: Fix a segfault encountered during KNI exit
  bnxt: Add support for Async Link Notification
  bnxt: Update the Broadcom PMD driver documentation

 app/test-pmd/cmdline.c                      |  14 ++-
 doc/guides/nics/bnxt.rst                    |  18 ++--
 doc/guides/testpmd_app_ug/testpmd_funcs.rst |   2 +-
 drivers/net/bnxt/Makefile                   |   1 +
 drivers/net/bnxt/bnxt.h                     |   7 +-
 drivers/net/bnxt/bnxt_cpr.c                 |  21 ++--
 drivers/net/bnxt/bnxt_ethdev.c              | 148 +++++++++++++++++++++-----
 drivers/net/bnxt/bnxt_hwrm.c                |  93 +++++++++--------
 drivers/net/bnxt/bnxt_irq.c                 | 156 ++++++++++++++++++++++++++++
 drivers/net/bnxt/bnxt_irq.h                 |  51 +++++++++
 10 files changed, 409 insertions(+), 102 deletions(-)
 create mode 100644 drivers/net/bnxt/bnxt_irq.c
 create mode 100644 drivers/net/bnxt/bnxt_irq.h

-- 
2.4.3

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/4] bnxt patch series
  2016-09-29 17:03 [PATCH 0/4] bnxt patch series Ajit Khaparde
@ 2016-09-29 17:32 ` Ferruh Yigit
  2016-10-13  9:56   ` Bruce Richardson
  0 siblings, 1 reply; 3+ messages in thread
From: Ferruh Yigit @ 2016-09-29 17:32 UTC (permalink / raw)
  To: Ajit Khaparde, DPDK

On 9/29/2016 6:03 PM, Ajit Khaparde wrote:
> Please consider applying this patch series.
> This series is expected to be applied over the previous patchset
> once it is accepted.
> Depends on: [v2,15/15] bnxt: Update struct definitions to use the 1.5.1
> HWRM API
> http://dpdk.org/dev/patchwork/patch/16154/
> 
> Ajit Khaparde (4):
>   testpmd: Add support to configure 25G and 50G speeds
>   bnxt: Fix a segfault encountered during KNI exit
>   bnxt: Add support for Async Link Notification
>   bnxt: Update the Broadcom PMD driver documentation
> 
>  app/test-pmd/cmdline.c                      |  14 ++-
>  doc/guides/nics/bnxt.rst                    |  18 ++--
>  doc/guides/testpmd_app_ug/testpmd_funcs.rst |   2 +-
>  drivers/net/bnxt/Makefile                   |   1 +
>  drivers/net/bnxt/bnxt.h                     |   7 +-
>  drivers/net/bnxt/bnxt_cpr.c                 |  21 ++--
>  drivers/net/bnxt/bnxt_ethdev.c              | 148 +++++++++++++++++++++-----
>  drivers/net/bnxt/bnxt_hwrm.c                |  93 +++++++++--------
>  drivers/net/bnxt/bnxt_irq.c                 | 156 ++++++++++++++++++++++++++++
>  drivers/net/bnxt/bnxt_irq.h                 |  51 +++++++++
>  10 files changed, 409 insertions(+), 102 deletions(-)
>  create mode 100644 drivers/net/bnxt/bnxt_irq.c
>  create mode 100644 drivers/net/bnxt/bnxt_irq.h
> 

Hi Ajit,

Can you please prefer sending patches in a threaded manner, that helps
keeping them organized.

All other patches in patchset should be as reply to first patch of
patchset (and if it is a patchset, first patch is most probably a
cover-letter):

[0/x] ...
     [1/x] ...
     ....
     [x/x] ...

if you use git send-email, it does this automatically for you (with
proper configuration), more details on:
http://dpdk.org/doc/guides/contributing/patches.html#sending-patches


Thanks,
ferruh

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/4] bnxt patch series
  2016-09-29 17:32 ` Ferruh Yigit
@ 2016-10-13  9:56   ` Bruce Richardson
  0 siblings, 0 replies; 3+ messages in thread
From: Bruce Richardson @ 2016-10-13  9:56 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: Ajit Khaparde, DPDK

On Thu, Sep 29, 2016 at 06:32:59PM +0100, Ferruh Yigit wrote:
> On 9/29/2016 6:03 PM, Ajit Khaparde wrote:
> > Please consider applying this patch series.
> > This series is expected to be applied over the previous patchset
> > once it is accepted.
> > Depends on: [v2,15/15] bnxt: Update struct definitions to use the 1.5.1
> > HWRM API
> > http://dpdk.org/dev/patchwork/patch/16154/
> > 
> > Ajit Khaparde (4):
> >   testpmd: Add support to configure 25G and 50G speeds
> >   bnxt: Fix a segfault encountered during KNI exit
> >   bnxt: Add support for Async Link Notification
> >   bnxt: Update the Broadcom PMD driver documentation
> > 
> >  app/test-pmd/cmdline.c                      |  14 ++-
> >  doc/guides/nics/bnxt.rst                    |  18 ++--
> >  doc/guides/testpmd_app_ug/testpmd_funcs.rst |   2 +-
> >  drivers/net/bnxt/Makefile                   |   1 +
> >  drivers/net/bnxt/bnxt.h                     |   7 +-
> >  drivers/net/bnxt/bnxt_cpr.c                 |  21 ++--
> >  drivers/net/bnxt/bnxt_ethdev.c              | 148 +++++++++++++++++++++-----
> >  drivers/net/bnxt/bnxt_hwrm.c                |  93 +++++++++--------
> >  drivers/net/bnxt/bnxt_irq.c                 | 156 ++++++++++++++++++++++++++++
> >  drivers/net/bnxt/bnxt_irq.h                 |  51 +++++++++
> >  10 files changed, 409 insertions(+), 102 deletions(-)
> >  create mode 100644 drivers/net/bnxt/bnxt_irq.c
> >  create mode 100644 drivers/net/bnxt/bnxt_irq.h
> > 
> 
> Hi Ajit,
> 
> Can you please prefer sending patches in a threaded manner, that helps
> keeping them organized.
> 
> All other patches in patchset should be as reply to first patch of
> patchset (and if it is a patchset, first patch is most probably a
> cover-letter):
> 
> [0/x] ...
>      [1/x] ...
>      ....
>      [x/x] ...
> 
> if you use git send-email, it does this automatically for you (with
> proper configuration), more details on:
> http://dpdk.org/doc/guides/contributing/patches.html#sending-patches
> 
> 
> Thanks,
> ferruh

Patches 2 and 4 of this V1 set applied, along with V2 of patch 3, to 
dpdk-next-net/rel_16_11. [Remaining patch has been resubmitted as a separate
testpmd patch: http://dpdk.org/dev/patchwork/patch/16526/]

/Bruce

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-10-13  9:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-29 17:03 [PATCH 0/4] bnxt patch series Ajit Khaparde
2016-09-29 17:32 ` Ferruh Yigit
2016-10-13  9:56   ` Bruce Richardson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.