DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Jiawen Wu" <jiawenwu@trustnetic.com>
To: <dev@dpdk.org>
Subject: RE: [PATCH 00/19] Wangxun fixes and supports
Date: Fri, 5 Jul 2024 16:11:59 +0800	[thread overview]
Message-ID: <08e601daceb3$02b846f0$0828d4d0$@trustnetic.com> (raw)
In-Reply-To: <036a01dac6a2$32a29b90$97e7d2b0$@trustnetic.com>

Hi,

> -----Original Message-----
> From: Jiawen Wu <jiawenwu@trustnetic.com>
> Sent: Tuesday, June 25, 2024 9:51 AM
> To: dev@dpdk.org
> Subject: RE: [PATCH 00/19] Wangxun fixes and supports
> 
> Hi,
> 
> > -----Original Message-----
> > From: Jiawen Wu <jiawenwu@trustnetic.com>
> > Sent: Tuesday, June 18, 2024 3:12 PM
> > To: dev@dpdk.org
> > Cc: Jiawen Wu <jiawenwu@trustnetic.com>
> > Subject: [PATCH 00/19] Wangxun fixes and supports
> >
> > Fix some bugs in txgbe/ngbe, and support new features in ngbe driver.
> >
> > Jiawen Wu (19):
> >   net/txgbe: fix to parse tunnel packets
> >   net/txgbe: fix flow filters in VT mode
> >   net/txgbe: fix Tx hang on queue disable
> >   net/txgbe: restrict the configuration of VLAN strip offload
> >   net/txgbe: reconfigure more MAC Rx registers
> >   net/txgbe: fix VF promiscuous and allmulticast
> >   net/ngbe: special config for YT8531SH-CA PHY
> >   net/ngbe: keep PHY power down while device probing
> >   net/ngbe: add WOL and NCSI capability
> >   net/txgbe: fix hotplug remove
> >   net/ngbe: fix hotplug remove
> >   net/txgbe: correct valid MTU range
> >   net/ngbe: correct valid MTU range
> >   net/txgbe: fix memory leak
> >   net/ngbe: fix memory leak
> >   net/txgbe: fix Rx interrupt
> >   net/ngbe: support Rx interrupt
> >   net/txgbe: disable LLDP by default
> >   net/ngbe: disable LLDP by default
> >
> >  doc/guides/nics/features/ngbe.ini     |   1 +
> >  doc/guides/nics/ngbe.rst              |   1 +
> >  drivers/net/ngbe/base/ngbe_devids.h   |   1 +
> >  drivers/net/ngbe/base/ngbe_eeprom.h   |   4 +
> >  drivers/net/ngbe/base/ngbe_hw.c       | 106 ++++++++++++++++++---
> >  drivers/net/ngbe/base/ngbe_hw.h       |   5 +-
> >  drivers/net/ngbe/base/ngbe_mng.c      |  46 +++++++++
> >  drivers/net/ngbe/base/ngbe_mng.h      |  14 +++
> >  drivers/net/ngbe/base/ngbe_phy.c      |   6 ++
> >  drivers/net/ngbe/base/ngbe_phy_mvl.c  |   2 +-
> >  drivers/net/ngbe/base/ngbe_phy_rtl.c  |   5 +-
> >  drivers/net/ngbe/base/ngbe_phy_yt.c   |   7 ++
> >  drivers/net/ngbe/base/ngbe_phy_yt.h   |   2 +
> >  drivers/net/ngbe/base/ngbe_regs.h     |   2 +
> >  drivers/net/ngbe/base/ngbe_type.h     |   4 +
> >  drivers/net/ngbe/ngbe_ethdev.c        |  66 ++++++++++---
> >  drivers/net/ngbe/ngbe_ethdev.h        |   1 +
> >  drivers/net/ngbe/ngbe_rxtx.c          |  13 ++-
> >  drivers/net/ngbe/ngbe_rxtx.h          |   2 +
> >  drivers/net/txgbe/base/meson.build    |   2 +-
> >  drivers/net/txgbe/base/txgbe_eeprom.h |   3 +
> >  drivers/net/txgbe/base/txgbe_hw.c     | 128 +++++++++++++++++++++----
> >  drivers/net/txgbe/base/txgbe_hw.h     |   5 +-
> >  drivers/net/txgbe/base/txgbe_mng.c    |  46 +++++++++
> >  drivers/net/txgbe/base/txgbe_mng.h    |  13 +++
> >  drivers/net/txgbe/base/txgbe_osdep.h  |   1 +
> >  drivers/net/txgbe/base/txgbe_regs.h   |   7 ++
> >  drivers/net/txgbe/base/txgbe_type.h   |   3 +
> >  drivers/net/txgbe/txgbe_ethdev.c      | 131 +++++++++++++++-----------
> >  drivers/net/txgbe/txgbe_ethdev.h      |   2 +-
> >  drivers/net/txgbe/txgbe_ethdev_vf.c   |  21 ++++-
> >  drivers/net/txgbe/txgbe_fdir.c        |   3 +
> >  drivers/net/txgbe/txgbe_rxtx.c        |  85 ++++++++++-------
> >  drivers/net/txgbe/txgbe_rxtx.h        |   2 +
> >  34 files changed, 601 insertions(+), 139 deletions(-)
> >
> > --
> > 2.27.0
> >
> 


  reply	other threads:[~2024-07-05  8:12 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-18  7:11 Jiawen Wu
2024-06-18  7:11 ` [PATCH 01/19] net/txgbe: fix to parse tunnel packets Jiawen Wu
2024-06-18  7:11 ` [PATCH 02/19] net/txgbe: fix flow filters in VT mode Jiawen Wu
2024-06-18  7:11 ` [PATCH 03/19] net/txgbe: fix Tx hang on queue disable Jiawen Wu
2024-06-18  7:11 ` [PATCH 04/19] net/txgbe: restrict the configuration of VLAN strip offload Jiawen Wu
2024-06-18  7:11 ` [PATCH 05/19] net/txgbe: reconfigure more MAC Rx registers Jiawen Wu
2024-06-18  7:11 ` [PATCH 06/19] net/txgbe: fix VF promiscuous and allmulticast Jiawen Wu
2024-06-18  7:11 ` [PATCH 07/19] net/ngbe: special config for YT8531SH-CA PHY Jiawen Wu
2024-06-18  7:11 ` [PATCH 08/19] net/ngbe: keep PHY power down while device probing Jiawen Wu
2024-06-18  7:11 ` [PATCH 09/19] net/ngbe: add WOL and NCSI capability Jiawen Wu
2024-06-18  7:11 ` [PATCH 10/19] net/txgbe: fix hotplug remove Jiawen Wu
2024-06-18  7:11 ` [PATCH 11/19] net/ngbe: " Jiawen Wu
2024-06-18  7:11 ` [PATCH 12/19] net/txgbe: correct valid MTU range Jiawen Wu
2024-06-18  7:11 ` [PATCH 13/19] net/ngbe: " Jiawen Wu
2024-06-18  7:11 ` [PATCH 14/19] net/txgbe: fix memory leak Jiawen Wu
2024-06-18  7:11 ` [PATCH 15/19] net/ngbe: " Jiawen Wu
2024-06-18  7:11 ` [PATCH 16/19] net/txgbe: fix Rx interrupt Jiawen Wu
2024-06-18  7:11 ` [PATCH 17/19] net/ngbe: support " Jiawen Wu
2024-06-18  7:11 ` [PATCH 18/19] net/txgbe: disable LLDP by default Jiawen Wu
2024-06-18  7:11 ` [PATCH 19/19] net/ngbe: " Jiawen Wu
2024-06-25  1:51 ` [PATCH 00/19] Wangxun fixes and supports Jiawen Wu
2024-07-05  8:11   ` Jiawen Wu [this message]
2024-07-06  3:39     ` Ferruh Yigit
2024-07-11 11:53       ` David Marchand
2024-07-12  9:32         ` David Marchand
2024-07-12 12:47           ` Ferruh Yigit
2024-07-12 15:30             ` Ferruh Yigit
2024-07-13  2:16               ` Jiawen Wu
2024-07-12 16:50             ` Thomas Monjalon
2024-07-16  8:16 ` [PATCH v2 1/2] net/txgbe: disable LLDP by default Jiawen Wu
2024-07-16  8:16   ` [PATCH v2 2/2] net/ngbe: " Jiawen Wu
2024-07-16 11:05     ` Ferruh Yigit
2024-07-17  2:14       ` Jiawen Wu
2024-07-17 10:22         ` Ferruh Yigit
2024-07-17 11:28   ` [PATCH v2 1/2] net/txgbe: " Ferruh Yigit
  -- strict thread matches above, loose matches on Subject: below --
2024-06-17  9:53 [PATCH 00/19] Wangxun fixes and supports Jiawen Wu

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='08e601daceb3$02b846f0$0828d4d0$@trustnetic.com' \
    --to=jiawenwu@trustnetic.com \
    --cc=dev@dpdk.org \
    /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).