DPDK patches and discussions
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: "Renyong Wan" <wanry@yunsilicon.com>
Cc: <dev@dpdk.org>, <thomas@monjalon.net>, <qianr@yunsilicon.com>,
	<nana@yunsilicon.com>, <zhangxx@yunsilicon.com>,
	<xudw@yunsilicon.com>, <jacky@yunsilicon.com>,
	<weihg@yunsilicon.com>, <zhenghy@yunsilicon.com>
Subject: Re: [PATCH 00/14] net/xsc: PMD updates
Date: Fri, 29 Aug 2025 13:22:18 -0700	[thread overview]
Message-ID: <20250829132218.421273c1@hermes.local> (raw)
In-Reply-To: <20250829082406.24369-1-wanry@yunsilicon.com>

On Fri, 29 Aug 2025 16:24:42 +0800
"Renyong Wan" <wanry@yunsilicon.com> wrote:

> This series introduces multiple updates to the Yunsilicon xsc PMD,
> including new feature support, optimizations, bug fixes.
> Highlights include:
> 
> * Firmware version query support
> * TSO and FEC support
> * EEPROM dump and promiscuous mode
> * Link status and event support
> * Optimizations for RSS, QP/CQ allocation, and Rx path
> * Fix for Coverity-reported issue
> 
> 
> Renyong Wan (14):
>   net/xsc: add FW version get support
>   net/xsc: add TSO support
>   net/xsc: support module EEPROM dump
>   net/xsc: support promiscuous mode
>   net/xsc: add link status support
>   net/xsc: add link status event support
>   net/xsc: add FEC get and set support
>   net/xsc: optimize RSS queue creation
>   net/xsc: optimize QP and CQ memory allocation
>   net/xsc: optimize Rx path
>   net/xsc: optimize stop and close
>   net/xsc: support per port for multi-process
>   net/xsc: fix uninitialized value
>   net/xsc: update release notes for xsc PMD
> 
>  doc/guides/nics/features/xsc.ini       |   7 +
>  doc/guides/rel_notes/release_25_11.rst |  13 +
>  drivers/net/xsc/xsc_cmd.h              | 186 +++++++++++-
>  drivers/net/xsc/xsc_defs.h             |   5 +
>  drivers/net/xsc/xsc_dev.c              | 361 ++++++++++++++++++++--
>  drivers/net/xsc/xsc_dev.h              | 116 ++++++-
>  drivers/net/xsc/xsc_ethdev.c           | 334 +++++++++++++++++----
>  drivers/net/xsc/xsc_ethdev.h           |   4 -
>  drivers/net/xsc/xsc_np.c               |  89 ++++--
>  drivers/net/xsc/xsc_np.h               |  34 ++-
>  drivers/net/xsc/xsc_rx.c               | 248 +++++++++++----
>  drivers/net/xsc/xsc_rx.h               |   1 +
>  drivers/net/xsc/xsc_rxtx.h             |   3 +
>  drivers/net/xsc/xsc_tx.c               |  14 +-
>  drivers/net/xsc/xsc_tx.h               |   3 +-
>  drivers/net/xsc/xsc_vfio.c             | 399 ++++++++++++++++++++++++-
>  16 files changed, 1605 insertions(+), 212 deletions(-)
> 

Queued to next-net.
I fixed the git hash reported as warning with checkpatch.
Current checkpatch wants more hex bytes in hash.

  parent reply	other threads:[~2025-08-29 20:22 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-29  8:24 Renyong Wan
2025-08-29  8:24 ` [PATCH 01/14] net/xsc: add FW version get support Renyong Wan
2025-08-29  8:24 ` [PATCH 02/14] net/xsc: add TSO support Renyong Wan
2025-08-29  8:24 ` [PATCH 03/14] net/xsc: support module EEPROM dump Renyong Wan
2025-08-29  8:24 ` [PATCH 04/14] net/xsc: support promiscuous mode Renyong Wan
2025-08-29  8:24 ` [PATCH 05/14] net/xsc: add link status support Renyong Wan
2025-08-29  8:24 ` [PATCH 06/14] net/xsc: add link status event support Renyong Wan
2025-08-29  8:24 ` [PATCH 07/14] net/xsc: add FEC get and set support Renyong Wan
2025-08-29  8:24 ` [PATCH 08/14] net/xsc: optimize RSS queue creation Renyong Wan
2025-08-29  8:24 ` [PATCH 09/14] net/xsc: optimize QP and CQ memory allocation Renyong Wan
2025-08-29  8:24 ` [PATCH 10/14] net/xsc: optimize Rx path Renyong Wan
2025-08-29  8:24 ` [PATCH 11/14] net/xsc: optimize stop and close Renyong Wan
2025-08-29  8:24 ` [PATCH 12/14] net/xsc: support per port for multi-process Renyong Wan
2025-08-29  8:24 ` [PATCH 13/14] net/xsc: fix uninitialized value Renyong Wan
2025-08-29  8:24 ` [PATCH 14/14] net/xsc: update release notes for xsc PMD Renyong Wan
2025-08-29 20:22 ` Stephen Hemminger [this message]
2025-08-30  3:46   ` [PATCH 00/14] net/xsc: PMD updates Renyong Wan

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=20250829132218.421273c1@hermes.local \
    --to=stephen@networkplumber.org \
    --cc=dev@dpdk.org \
    --cc=jacky@yunsilicon.com \
    --cc=nana@yunsilicon.com \
    --cc=qianr@yunsilicon.com \
    --cc=thomas@monjalon.net \
    --cc=wanry@yunsilicon.com \
    --cc=weihg@yunsilicon.com \
    --cc=xudw@yunsilicon.com \
    --cc=zhangxx@yunsilicon.com \
    --cc=zhenghy@yunsilicon.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).