public inbox for dev@dpdk.org
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: liujie5@linkdatatechnology.com
Cc: dev@dpdk.org
Subject: Re: [PATCH v19 00/13] net/sxe: added Linkdata sxe ethernet driver
Date: Tue, 17 Mar 2026 20:04:41 -0700	[thread overview]
Message-ID: <20260317200441.1e2f3a83@stephen-xps.local> (raw)
In-Reply-To: <20260314085205.2419952-1-liujie5@linkdatatechnology.com>

On Sat, 14 Mar 2026 16:51:52 +0800
liujie5@linkdatatechnology.com wrote:

> From: Jie Liu <liujie5@linkdatatechnology.com>
> 
> This patch set implements core functionality for the SXE PMD,
> including basic driver framework, data path setup, and advanced
> offload features (VLAN, RSS, DCB, PTP etc.).
> 
> V19:
>  - Addressed AI comments
> 
> v18:
>  - Addressed AI comments
> 
> Jie Liu (13):
>   net/sxe: add base driver directory and doc
>   net/sxe: add ethdev probe and remove
>   net/sxe: add tx rx setup and data path
>   net/sxe: add link and mac layer operations
>   net/sxe: support vlan filter
>   net/sxe: add filter function
>   net/sxe: support rss offload
>   net/sxe: add dcb function
>   net/sxe: support ptp
>   net/sxe: add xstats function
>   net/sxe: add custom cmd led ctrl
>   net/sxe: add simd function
>   net/sxe: add virtual function
> 
>  MAINTAINERS                                |    6 +
>  doc/guides/nics/features/sxe.ini           |   51 +
>  doc/guides/nics/features/sxe_vf.ini        |   37 +
>  doc/guides/nics/index.rst                  |    1 +
>  doc/guides/nics/sxe.rst                    |   71 +
>  doc/guides/rel_notes/release_26_03.rst     |    6 +
>  drivers/net/meson.build                    |    1 +
>  drivers/net/sxe/base/sxe_common.c          |   45 +
>  drivers/net/sxe/base/sxe_common.h          |   13 +
>  drivers/net/sxe/base/sxe_compat_platform.h |   73 +
>  drivers/net/sxe/base/sxe_compat_version.h  |   34 +
>  drivers/net/sxe/base/sxe_errno.h           |   61 +
>  drivers/net/sxe/base/sxe_hw.c              | 3271 ++++++++++++++++++++
>  drivers/net/sxe/base/sxe_hw.h              | 1010 ++++++
>  drivers/net/sxe/base/sxe_logs.h            |  105 +
>  drivers/net/sxe/base/sxe_offload_common.c  |   54 +
>  drivers/net/sxe/base/sxe_offload_common.h  |   14 +
>  drivers/net/sxe/base/sxe_queue_common.c    |  450 +++
>  drivers/net/sxe/base/sxe_queue_common.h    |  240 ++
>  drivers/net/sxe/base/sxe_rx_common.c       |  358 +++
>  drivers/net/sxe/base/sxe_rx_common.h       |   17 +
>  drivers/net/sxe/base/sxe_tx_common.c       |   40 +
>  drivers/net/sxe/base/sxe_tx_common.h       |   12 +
>  drivers/net/sxe/base/sxe_types.h           |   40 +
>  drivers/net/sxe/base/sxevf_hw.c            |  819 +++++
>  drivers/net/sxe/base/sxevf_hw.h            |  318 ++
>  drivers/net/sxe/base/sxevf_regs.h          |  119 +
>  drivers/net/sxe/include/drv_msg.h          |   18 +
>  drivers/net/sxe/include/sxe/sxe_cli.h      |  218 ++
>  drivers/net/sxe/include/sxe/sxe_hdc.h      |   43 +
>  drivers/net/sxe/include/sxe/sxe_ioctl.h    |   21 +
>  drivers/net/sxe/include/sxe/sxe_msg.h      |  135 +
>  drivers/net/sxe/include/sxe/sxe_regs.h     | 1270 ++++++++
>  drivers/net/sxe/include/sxe_type.h         |  795 +++++
>  drivers/net/sxe/include/sxe_version.h      |   29 +
>  drivers/net/sxe/meson.build                |   65 +
>  drivers/net/sxe/pf/rte_pmd_sxe.h           |   19 +
>  drivers/net/sxe/pf/sxe.h                   |   93 +
>  drivers/net/sxe/pf/sxe_dcb.c               |  945 ++++++
>  drivers/net/sxe/pf/sxe_dcb.h               |   99 +
>  drivers/net/sxe/pf/sxe_ethdev.c            |  928 ++++++
>  drivers/net/sxe/pf/sxe_ethdev.h            |   28 +
>  drivers/net/sxe/pf/sxe_filter.c            |  923 ++++++
>  drivers/net/sxe/pf/sxe_filter.h            |  109 +
>  drivers/net/sxe/pf/sxe_flow_ctrl.c         |   98 +
>  drivers/net/sxe/pf/sxe_flow_ctrl.h         |   16 +
>  drivers/net/sxe/pf/sxe_irq.c               |  516 +++
>  drivers/net/sxe/pf/sxe_irq.h               |   48 +
>  drivers/net/sxe/pf/sxe_main.c              |  196 ++
>  drivers/net/sxe/pf/sxe_offload.c           |  336 ++
>  drivers/net/sxe/pf/sxe_offload.h           |   51 +
>  drivers/net/sxe/pf/sxe_phy.c               |  953 ++++++
>  drivers/net/sxe/pf/sxe_phy.h               |  117 +
>  drivers/net/sxe/pf/sxe_pmd_hdc.c           |  661 ++++
>  drivers/net/sxe/pf/sxe_pmd_hdc.h           |   42 +
>  drivers/net/sxe/pf/sxe_ptp.c               |  209 ++
>  drivers/net/sxe/pf/sxe_ptp.h               |   26 +
>  drivers/net/sxe/pf/sxe_queue.c             |  774 +++++
>  drivers/net/sxe/pf/sxe_queue.h             |  132 +
>  drivers/net/sxe/pf/sxe_rx.c                | 1459 +++++++++
>  drivers/net/sxe/pf/sxe_rx.h                |  188 ++
>  drivers/net/sxe/pf/sxe_stats.c             |  586 ++++
>  drivers/net/sxe/pf/sxe_stats.h             |   69 +
>  drivers/net/sxe/pf/sxe_tx.c                | 1051 +++++++
>  drivers/net/sxe/pf/sxe_tx.h                |   50 +
>  drivers/net/sxe/pf/sxe_vec_common.h        |  321 ++
>  drivers/net/sxe/pf/sxe_vec_neon.c          |  600 ++++
>  drivers/net/sxe/pf/sxe_vec_sse.c           |  622 ++++
>  drivers/net/sxe/pf/sxe_vf.c                | 1199 +++++++
>  drivers/net/sxe/pf/sxe_vf.h                |  200 ++
>  drivers/net/sxe/sxe_drv_type.h             |   15 +
>  drivers/net/sxe/sxe_testpmd.c              |  196 ++
>  drivers/net/sxe/vf/sxevf.h                 |   42 +
>  drivers/net/sxe/vf/sxevf_ethdev.c          |  752 +++++
>  drivers/net/sxe/vf/sxevf_ethdev.h          |   16 +
>  drivers/net/sxe/vf/sxevf_filter.c          |  493 +++
>  drivers/net/sxe/vf/sxevf_filter.h          |   70 +
>  drivers/net/sxe/vf/sxevf_irq.c             |  432 +++
>  drivers/net/sxe/vf/sxevf_irq.h             |   34 +
>  drivers/net/sxe/vf/sxevf_main.c            |   82 +
>  drivers/net/sxe/vf/sxevf_msg.c             |  624 ++++
>  drivers/net/sxe/vf/sxevf_msg.h             |  201 ++
>  drivers/net/sxe/vf/sxevf_offload.c         |   30 +
>  drivers/net/sxe/vf/sxevf_offload.h         |   16 +
>  drivers/net/sxe/vf/sxevf_queue.c           |  208 ++
>  drivers/net/sxe/vf/sxevf_queue.h           |   69 +
>  drivers/net/sxe/vf/sxevf_rx.c              |  162 +
>  drivers/net/sxe/vf/sxevf_rx.h              |   18 +
>  drivers/net/sxe/vf/sxevf_stats.c           |  162 +
>  drivers/net/sxe/vf/sxevf_stats.h           |   31 +
>  drivers/net/sxe/vf/sxevf_tx.c              |   46 +
>  drivers/net/sxe/vf/sxevf_tx.h              |   14 +
>  92 files changed, 27237 insertions(+)
>  create mode 100644 doc/guides/nics/features/sxe.ini
>  create mode 100644 doc/guides/nics/features/sxe_vf.ini
>  create mode 100644 doc/guides/nics/sxe.rst
>  create mode 100644 drivers/net/sxe/base/sxe_common.c
>  create mode 100644 drivers/net/sxe/base/sxe_common.h
>  create mode 100644 drivers/net/sxe/base/sxe_compat_platform.h
>  create mode 100644 drivers/net/sxe/base/sxe_compat_version.h
>  create mode 100644 drivers/net/sxe/base/sxe_errno.h
>  create mode 100644 drivers/net/sxe/base/sxe_hw.c
>  create mode 100644 drivers/net/sxe/base/sxe_hw.h
>  create mode 100644 drivers/net/sxe/base/sxe_logs.h
>  create mode 100644 drivers/net/sxe/base/sxe_offload_common.c
>  create mode 100644 drivers/net/sxe/base/sxe_offload_common.h
>  create mode 100644 drivers/net/sxe/base/sxe_queue_common.c
>  create mode 100644 drivers/net/sxe/base/sxe_queue_common.h
>  create mode 100644 drivers/net/sxe/base/sxe_rx_common.c
>  create mode 100644 drivers/net/sxe/base/sxe_rx_common.h
>  create mode 100644 drivers/net/sxe/base/sxe_tx_common.c
>  create mode 100644 drivers/net/sxe/base/sxe_tx_common.h
>  create mode 100644 drivers/net/sxe/base/sxe_types.h
>  create mode 100644 drivers/net/sxe/base/sxevf_hw.c
>  create mode 100644 drivers/net/sxe/base/sxevf_hw.h
>  create mode 100644 drivers/net/sxe/base/sxevf_regs.h
>  create mode 100644 drivers/net/sxe/include/drv_msg.h
>  create mode 100644 drivers/net/sxe/include/sxe/sxe_cli.h
>  create mode 100644 drivers/net/sxe/include/sxe/sxe_hdc.h
>  create mode 100644 drivers/net/sxe/include/sxe/sxe_ioctl.h
>  create mode 100644 drivers/net/sxe/include/sxe/sxe_msg.h
>  create mode 100644 drivers/net/sxe/include/sxe/sxe_regs.h
>  create mode 100644 drivers/net/sxe/include/sxe_type.h
>  create mode 100644 drivers/net/sxe/include/sxe_version.h
>  create mode 100644 drivers/net/sxe/meson.build
>  create mode 100644 drivers/net/sxe/pf/rte_pmd_sxe.h
>  create mode 100644 drivers/net/sxe/pf/sxe.h
>  create mode 100644 drivers/net/sxe/pf/sxe_dcb.c
>  create mode 100644 drivers/net/sxe/pf/sxe_dcb.h
>  create mode 100644 drivers/net/sxe/pf/sxe_ethdev.c
>  create mode 100644 drivers/net/sxe/pf/sxe_ethdev.h
>  create mode 100644 drivers/net/sxe/pf/sxe_filter.c
>  create mode 100644 drivers/net/sxe/pf/sxe_filter.h
>  create mode 100644 drivers/net/sxe/pf/sxe_flow_ctrl.c
>  create mode 100644 drivers/net/sxe/pf/sxe_flow_ctrl.h
>  create mode 100644 drivers/net/sxe/pf/sxe_irq.c
>  create mode 100644 drivers/net/sxe/pf/sxe_irq.h
>  create mode 100644 drivers/net/sxe/pf/sxe_main.c
>  create mode 100644 drivers/net/sxe/pf/sxe_offload.c
>  create mode 100644 drivers/net/sxe/pf/sxe_offload.h
>  create mode 100644 drivers/net/sxe/pf/sxe_phy.c
>  create mode 100644 drivers/net/sxe/pf/sxe_phy.h
>  create mode 100644 drivers/net/sxe/pf/sxe_pmd_hdc.c
>  create mode 100644 drivers/net/sxe/pf/sxe_pmd_hdc.h
>  create mode 100644 drivers/net/sxe/pf/sxe_ptp.c
>  create mode 100644 drivers/net/sxe/pf/sxe_ptp.h
>  create mode 100644 drivers/net/sxe/pf/sxe_queue.c
>  create mode 100644 drivers/net/sxe/pf/sxe_queue.h
>  create mode 100644 drivers/net/sxe/pf/sxe_rx.c
>  create mode 100644 drivers/net/sxe/pf/sxe_rx.h
>  create mode 100644 drivers/net/sxe/pf/sxe_stats.c
>  create mode 100644 drivers/net/sxe/pf/sxe_stats.h
>  create mode 100644 drivers/net/sxe/pf/sxe_tx.c
>  create mode 100644 drivers/net/sxe/pf/sxe_tx.h
>  create mode 100644 drivers/net/sxe/pf/sxe_vec_common.h
>  create mode 100644 drivers/net/sxe/pf/sxe_vec_neon.c
>  create mode 100644 drivers/net/sxe/pf/sxe_vec_sse.c
>  create mode 100644 drivers/net/sxe/pf/sxe_vf.c
>  create mode 100644 drivers/net/sxe/pf/sxe_vf.h
>  create mode 100644 drivers/net/sxe/sxe_drv_type.h
>  create mode 100644 drivers/net/sxe/sxe_testpmd.c
>  create mode 100644 drivers/net/sxe/vf/sxevf.h
>  create mode 100644 drivers/net/sxe/vf/sxevf_ethdev.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_ethdev.h
>  create mode 100644 drivers/net/sxe/vf/sxevf_filter.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_filter.h
>  create mode 100644 drivers/net/sxe/vf/sxevf_irq.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_irq.h
>  create mode 100644 drivers/net/sxe/vf/sxevf_main.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_msg.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_msg.h
>  create mode 100644 drivers/net/sxe/vf/sxevf_offload.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_offload.h
>  create mode 100644 drivers/net/sxe/vf/sxevf_queue.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_queue.h
>  create mode 100644 drivers/net/sxe/vf/sxevf_rx.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_rx.h
>  create mode 100644 drivers/net/sxe/vf/sxevf_stats.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_stats.h
>  create mode 100644 drivers/net/sxe/vf/sxevf_tx.c
>  create mode 100644 drivers/net/sxe/vf/sxevf_tx.h

This driver is large and requires more detail human review so it won't
make 25.03 release.

Some more automated review feedback (some of this is false positives like complaining
about u8, etc).

Review of [PATCH v19 01/13] through [PATCH v19 13/13] net/sxe driver series
=============================================================================

Reviewed-by: Stephen Hemminger <stephen@networkplumber.org>

Patch 02/13: net/sxe: add ethdev probe and remove
--------------------------------------------------

Error: Blocking calls (mdelay) under spinlock in HDC command path.

In sxe_pmd_hdc.c, sxe_hdc_cmd_process() acquires g_hdc_lock (an
rte_spinlock_t) then calls sxe_hdc_packet_trans(), which calls
sxe_poll_fw_ack() containing mdelay(10) in a loop up to 1000
iterations (SXE_HDC_WAIT_TIME). That is up to 10 seconds of
blocking while holding a spinlock. Spinlocks are busy-wait locks;
blocking under them wastes CPU on any other thread trying to
acquire the lock and causes massive latency spikes.

Replace g_hdc_lock with a pthread_mutex_t, which is a sleeping
lock and appropriate for operations that block for milliseconds.

Error: Global HDC state re-initialized on every probe.

sxe_hdc_channel_init() is called from sxe_probe() and
re-initializes the global g_hdc_lock spinlock and resets the
global sxe_trace_id counter. If two SXE PCI devices are probed,
the second probe reinitializes the lock while the first device
may be using it. This is a race condition.

Move the HDC channel initialization to a one-time constructor
(RTE_INIT) or use rte_thread_once / an initialization flag.

Error: Non-atomic store to atomic variable.

In sxe_common.c, sxe_trace_id_gen() writes sxe_trace_id with a
plain assignment (sxe_trace_id = 0) despite sxe_trace_id being
declared RTE_ATOMIC(uint64_t) and read elsewhere via
rte_atomic_fetch_add_explicit(). This is a data race. Use
rte_atomic_store_explicit(&sxe_trace_id, 0,
rte_memory_order_relaxed).

Warning: sxe_compat_version.h defines SXE_GET_FRAME_SIZE using
dev->data->mtu + SXE_ETH_OVERHEAD, where SXE_ETH_OVERHEAD is
RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN (18 bytes). The feature
set claims VLAN and QinQ support. The scatter decision in
sxe_rx_queue_attr_configure (patch 03) correctly adds
2*SXE_VLAN_TAG_SIZE separately, but the SXE_GET_FRAME_SIZE macro
does not include VLAN overhead. This inconsistency means callers
of SXE_GET_FRAME_SIZE that don't add VLAN overhead themselves
will underestimate frame size. Consider making the overhead
device-specific or using SXE_ETH_DEAD_LOAD consistently.


Patch 03/13: net/sxe: add tx rx setup and data path
----------------------------------------------------

Error: mtu_set does not re-select the Rx burst function.

In sxe_mtu_set() (sxe_ethdev.c), when the device is started and
scatter is not enabled, the function rejects the MTU change with
-EINVAL and tells the user to "stop port first." However, even
if the port is stopped and restarted, the mtu_set callback itself
stores the new MTU in adapter->mtu but never updates
dev->data->scattered_rx or re-selects the Rx burst function.
The Rx function selection only happens in sxe_rx_configure()
during dev_start, but it reads dev->data->mtu, not adapter->mtu.
If adapter->mtu and dev->data->mtu diverge, the scatter decision
at restart will use the wrong value.

The adapter->mtu field appears to shadow dev->data->mtu without
a clear purpose. The ethdev layer already writes dev->data->mtu
before calling the mtu_set callback. Either remove adapter->mtu
and use dev->data->mtu everywhere, or ensure they stay in sync.

Warning: dev_infos_get reports max_mtu using SXE_ETH_OVERHEAD
(18 bytes) but the device supports VLAN/QinQ, so the true maximum
frame overhead is larger. This means max_mtu is slightly
overestimated — the ethdev layer would allow an MTU that, with
VLAN tags, exceeds max_rx_pktlen. This is a minor inconsistency
with the scatter Rx decision which does account for VLAN tags.


Patch 04/13: net/sxe: add link and mac layer operations
--------------------------------------------------------

No correctness issues found.


Patch 12/13: net/sxe: add virtual function
-------------------------------------------

Error: Missing NULL check after malloc.

In sxe_vf_rss_hash_conf_get(), rss_conf.rss_key is allocated
with malloc(SXE_RSS_KEY_SIZE) but the return value is never
checked for NULL. If malloc fails, the subsequent
sxe_rss_hash_conf_get() and memcpy() will dereference a NULL
pointer.

  rss_conf.rss_key = malloc(SXE_RSS_KEY_SIZE);
  +if (rss_conf.rss_key == NULL)
  +    return -ENOMEM;
  sxe_rss_hash_conf_get(dev, &rss_conf);


Series-wide observations
------------------------

Warning: The driver defines its own integer typedefs (u8, u16,
u32, u64, s32 etc.) in sxe_types.h. DPDK convention is to use
standard C types (uint8_t, uint16_t, uint32_t, uint64_t, int32_t)
throughout. While this is a style issue and the base/ directory
has some latitude for cross-platform shared code, the pf/ and
vf/ code that is purely DPDK should prefer standard types.

Warning: Many functions use the goto-label pattern with labels
like l_end, l_out, l_ret, l_up, l_error, l_free, etc. Some
functions have goto targets that simply return 0 unconditionally
(e.g., sxe_hw_uc_addr_pool_disable), making the goto pattern
add complexity without benefit.

Warning: sxe_ethdev.c defines local constants SXE_ETH_HLEN (14),
SXE_ETH_FRAME_LEN (1514), SXE_ETH_FCS_LEN (4) that duplicate
standard RTE_ETHER_HDR_LEN, RTE_ETHER_MAX_LEN, and
RTE_ETHER_CRC_LEN. Use the rte_ constants directly.



  parent reply	other threads:[~2026-03-18  3:04 UTC|newest]

Thread overview: 338+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-25  2:36 [PATCH 01/13] net/sxe: add base driver directory and doc Jie Liu
2025-04-25  2:36 ` [PATCH 02/13] net/sxe: add ethdev probe and remove Jie Liu
2025-04-26 16:11   ` Stephen Hemminger
2025-04-26 16:11   ` Stephen Hemminger
2025-04-26 16:15   ` Stephen Hemminger
2025-04-26 16:17   ` Stephen Hemminger
2025-04-25  2:36 ` [PATCH 03/13] net/sxe: add tx rx setup and data path Jie Liu
2025-04-26 16:02   ` Stephen Hemminger
2025-04-26 16:20   ` Stephen Hemminger
2025-04-25  2:36 ` [PATCH 04/13] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-04-25  2:36 ` [PATCH 05/13] net/sxe: support vlan filter Jie Liu
2025-04-25  2:36 ` [PATCH 06/13] net/sxe: add mac layer filter function Jie Liu
2025-04-25  2:36 ` [PATCH 07/13] net/sxe: support rss offload Jie Liu
2025-04-25  2:36 ` [PATCH 08/13] net/sxe: add dcb function Jie Liu
2025-04-25  2:36 ` [PATCH 09/13] net/sxe: support ptp Jie Liu
2025-04-25  2:36 ` [PATCH 10/13] net/sxe: add xstats function Jie Liu
2025-04-25  2:36 ` [PATCH 11/13] net/sxe: add custom cmd led ctrl Jie Liu
2025-04-25  2:36 ` [PATCH 12/13] net/sxe: add simd function Jie Liu
2025-04-25  2:36 ` [PATCH 13/13] net/sxe: add virtual function Jie Liu
2025-04-26 15:57 ` [PATCH 01/13] net/sxe: add base driver directory and doc Stephen Hemminger
2025-04-26 15:59 ` Stephen Hemminger
2025-04-26 16:23 ` Stephen Hemminger
2025-04-26 17:07 ` Stephen Hemminger
2025-04-26 17:08 ` Stephen Hemminger
2025-07-04  2:53 ` [PATCH v2 01/14] net/sxe: add base driver directory and doc Adding a minimum maintainable directory structure for the network driver and request maintenance of the sxe driver Jie Liu
2025-07-07 11:58   ` [PATCH v3 01/14] net/sxe: add base driver directory and doc Jie Liu
2025-07-07 11:58     ` [PATCH v3 02/14] net/sxe: add ethdev probe and remove Jie Liu
2025-07-07 14:57       ` Stephen Hemminger
2025-07-07 11:58     ` [PATCH v3 03/14] net/sxe: add tx rx setup and data path Jie Liu
2025-07-07 11:58     ` [PATCH v3 04/14] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-07-07 11:58     ` [PATCH v3 05/14] net/sxe: support vlan filter Jie Liu
2025-07-07 11:58     ` [PATCH v3 06/14] net/sxe: add filter function Jie Liu
2025-07-07 11:58     ` [PATCH v3 07/14] net/sxe: support rss offload Jie Liu
2025-07-07 11:58     ` [PATCH v3 08/14] net/sxe: add dcb function Jie Liu
2025-07-07 11:58     ` [PATCH v3 09/14] net/sxe: support ptp Jie Liu
2025-07-07 11:58     ` [PATCH v3 10/14] net/sxe: add xstats function Jie Liu
2025-07-07 11:58     ` [PATCH v3 11/14] net/sxe: add custom cmd led ctrl Jie Liu
2025-07-07 11:58     ` [PATCH v3 12/14] net/sxe: add simd function Jie Liu
2025-07-07 11:58     ` [PATCH v3 13/14] net/sxe: add virtual function Jie Liu
2025-07-07 11:58     ` [PATCH v3 14/14] net/sxe: add Solve compilation problems Jie Liu
2025-07-07 15:03       ` Stephen Hemminger
2025-07-07 15:56       ` Stephen Hemminger
2025-07-09  8:43       ` [PATCH v4 1/2] net/sxe: add base driver directory and doc Jie Liu
2025-07-09  8:43         ` [PATCH v4 2/2] net/sxe: add ethdev probe and remove Jie Liu
2025-07-09 16:13           ` Stephen Hemminger
2025-07-09  8:43         ` [PATCH v4 03/14] net/sxe: add tx rx setup and data path Jie Liu
2025-07-09 16:07           ` Stephen Hemminger
2025-07-09  8:43         ` [PATCH v4 04/14] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-07-09 16:09           ` Stephen Hemminger
2025-07-12  1:50             ` 刘洁
2025-07-09 16:11           ` Stephen Hemminger
2025-07-09  8:43         ` [PATCH v4 05/14] net/sxe: support vlan filter Jie Liu
2025-07-09  8:43         ` [PATCH v4 06/14] net/sxe: add filter function Jie Liu
2025-07-09  8:43         ` [PATCH v4 07/14] net/sxe: support rss offload Jie Liu
2025-07-09  8:43         ` [PATCH v4 08/14] net/sxe: add dcb function Jie Liu
2025-07-09  8:43         ` [PATCH v4 09/14] net/sxe: support ptp Jie Liu
2025-07-09  8:43         ` [PATCH v4 10/14] net/sxe: add xstats function Jie Liu
2025-07-09  8:43         ` [PATCH v4 11/14] net/sxe: add custom cmd led ctrl Jie Liu
2025-07-09  8:43         ` [PATCH v4 12/14] net/sxe: add simd function Jie Liu
2025-07-09  8:43         ` [PATCH v4 13/14] net/sxe: add virtual function Jie Liu
2025-07-09  8:43         ` [PATCH v4 14/14] net/sxe: add Solve compilation problems Jie Liu
2025-07-09 16:14           ` Stephen Hemminger
2025-07-10  1:20       ` [PATCH v5 01/14] net/sxe: add base driver directory and doc Jie Liu
2025-07-10  1:20         ` [PATCH v5 02/14] net/sxe: add ethdev probe and remove Jie Liu
2025-07-10  1:20         ` [PATCH v5 03/14] net/sxe: add tx rx setup and data path Jie Liu
2025-07-17 18:03           ` Stephen Hemminger
2025-07-17 18:05           ` Stephen Hemminger
2025-07-17 18:07           ` Stephen Hemminger
2025-07-17 18:09           ` Stephen Hemminger
2025-07-17 18:12           ` Stephen Hemminger
2025-07-10  1:20         ` [PATCH v5 04/14] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-07-10  1:20         ` [PATCH v5 05/14] net/sxe: support vlan filter Jie Liu
2025-07-10  1:20         ` [PATCH v5 06/14] net/sxe: add filter function Jie Liu
2025-07-10  1:20         ` [PATCH v5 07/14] net/sxe: support rss offload Jie Liu
2025-07-10  1:20         ` [PATCH v5 08/14] net/sxe: add dcb function Jie Liu
2025-07-10  1:20         ` [PATCH v5 09/14] net/sxe: support ptp Jie Liu
2025-07-10  1:20         ` [PATCH v5 10/14] net/sxe: add xstats function Jie Liu
2025-07-10  1:20         ` [PATCH v5 11/14] net/sxe: add custom cmd led ctrl Jie Liu
2025-07-10  1:20         ` [PATCH v5 12/14] net/sxe: add simd function Jie Liu
2025-07-10  1:20         ` [PATCH v5 13/14] net/sxe: add virtual function Jie Liu
2025-07-10  1:20         ` [PATCH v5 14/14] net/sxe: add Solve compilation problems Jie Liu
2025-07-12  6:18           ` [PATCH v6 01/14] net/sxe: add base driver directory and doc Jie Liu
2025-07-12  6:18             ` [PATCH v6 02/14] net/sxe: add ethdev probe and remove Jie Liu
2025-07-12  6:18             ` [PATCH v6 03/14] net/sxe: add tx rx setup and data path Jie Liu
2025-07-12  6:18             ` [PATCH v6 04/14] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-07-12  6:18             ` [PATCH v6 05/14] net/sxe: support vlan filter Jie Liu
2025-07-12  6:18             ` [PATCH v6 06/14] net/sxe: add filter function Jie Liu
2025-07-12  6:18             ` [PATCH v6 07/14] net/sxe: support rss offload Jie Liu
2025-07-12  6:18             ` [PATCH v6 08/14] net/sxe: add dcb function Jie Liu
2025-07-12  6:18             ` [PATCH v6 09/14] net/sxe: support ptp Jie Liu
2025-07-12  6:18             ` [PATCH v6 10/14] net/sxe: add xstats function Jie Liu
2025-07-12  6:18             ` [PATCH v6 11/14] net/sxe: add custom cmd led ctrl Jie Liu
2025-07-12  6:18             ` [PATCH v6 12/14] net/sxe: add simd function Jie Liu
2025-07-12  6:18             ` [PATCH v6 13/14] net/sxe: add virtual function Jie Liu
2025-07-12  6:18             ` [PATCH v6 14/14] net/sxe: add Solve compilation problems Jie Liu
2025-07-14  3:54               ` [PATCH v7 01/14] net/sxe: add base driver directory and doc Jie Liu
2025-07-14  3:54                 ` [PATCH v7 02/14] net/sxe: add ethdev probe and remove Jie Liu
2025-07-14  3:54                 ` [PATCH v7 03/14] net/sxe: add tx rx setup and data path Jie Liu
2025-07-14  3:54                 ` [PATCH v7 04/14] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-07-14  3:54                 ` [PATCH v7 05/14] net/sxe: support vlan filter Jie Liu
2025-07-14  3:54                 ` [PATCH v7 06/14] net/sxe: add filter function Jie Liu
2025-07-14  3:54                 ` [PATCH v7 07/14] net/sxe: support rss offload Jie Liu
2025-07-14  3:54                 ` [PATCH v7 08/14] net/sxe: add dcb function Jie Liu
2025-07-14  3:54                 ` [PATCH v7 09/14] net/sxe: support ptp Jie Liu
2025-07-14  3:54                 ` [PATCH v7 10/14] net/sxe: add xstats function Jie Liu
2025-07-14  3:54                 ` [PATCH v7 11/14] net/sxe: add custom cmd led ctrl Jie Liu
2025-07-14  3:54                 ` [PATCH v7 12/14] net/sxe: add simd function Jie Liu
2025-07-14  3:54                 ` [PATCH v7 13/14] net/sxe: add virtual function Jie Liu
2025-07-14  3:54                 ` [PATCH v7 14/14] net/sxe: add Solve compilation problems Jie Liu
2025-07-15  3:41                   ` [PATCH v8 01/14] net/sxe: add base driver directory and doc Jie Liu
2025-07-15  3:41                     ` [PATCH v8 02/14] net/sxe: add ethdev probe and remove Jie Liu
2025-07-15  3:41                     ` [PATCH v8 03/14] net/sxe: add tx rx setup and data path Jie Liu
2025-07-15  3:41                     ` [PATCH v8 04/14] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-07-15  3:41                     ` [PATCH v8 05/14] net/sxe: support vlan filter Jie Liu
2025-07-15  3:41                     ` [PATCH v8 06/14] net/sxe: add filter function Jie Liu
2025-07-15  3:41                     ` [PATCH v8 07/14] net/sxe: support rss offload Jie Liu
2025-07-15  3:41                     ` [PATCH v8 08/14] net/sxe: add dcb function Jie Liu
2025-07-15  3:41                     ` [PATCH v8 09/14] net/sxe: support ptp Jie Liu
2025-07-15  3:41                     ` [PATCH v8 10/14] net/sxe: add xstats function Jie Liu
2025-07-15  3:41                     ` [PATCH v8 11/14] net/sxe: add custom cmd led ctrl Jie Liu
2025-07-15  3:41                     ` [PATCH v8 12/14] net/sxe: add simd function Jie Liu
2025-07-15  3:41                     ` [PATCH v8 13/14] net/sxe: add virtual function Jie Liu
2025-07-15  3:41                     ` [PATCH v8 14/14] net/sxe: add Solve compilation problems Jie Liu
2025-07-16  8:29                       ` [PATCH v9 01/14] net/sxe: add base driver directory and doc Jie Liu
2025-07-16  8:29                         ` [PATCH v9 02/14] net/sxe: add ethdev probe and remove Jie Liu
2025-07-16 20:35                           ` Stephen Hemminger
2025-07-16 20:35                           ` Stephen Hemminger
2025-07-16 20:36                           ` Stephen Hemminger
2025-07-16 20:40                           ` Stephen Hemminger
2025-07-17 16:50                           ` Stephen Hemminger
2025-07-16  8:29                         ` [PATCH v9 03/14] net/sxe: add tx rx setup and data path Jie Liu
2025-07-16 17:42                           ` Stephen Hemminger
2025-07-16 17:49                           ` Stephen Hemminger
2025-07-16 17:51                           ` Stephen Hemminger
2025-07-16  8:29                         ` [PATCH v9 04/14] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-07-16  8:29                         ` [PATCH v9 05/14] net/sxe: support vlan filter Jie Liu
2025-07-16  8:29                         ` [PATCH v9 06/14] net/sxe: add filter function Jie Liu
2025-07-17 16:52                           ` Stephen Hemminger
2025-07-16  8:29                         ` [PATCH v9 07/14] net/sxe: support rss offload Jie Liu
2025-07-16  8:29                         ` [PATCH v9 08/14] net/sxe: add dcb function Jie Liu
2025-07-17 16:39                           ` Stephen Hemminger
2025-07-16  8:29                         ` [PATCH v9 09/14] net/sxe: support ptp Jie Liu
2025-07-16  8:29                         ` [PATCH v9 10/14] net/sxe: add xstats function Jie Liu
2025-07-16  8:29                         ` [PATCH v9 11/14] net/sxe: add custom cmd led ctrl Jie Liu
2025-07-16  8:29                         ` [PATCH v9 12/14] net/sxe: add simd function Jie Liu
2025-07-16  8:29                         ` [PATCH v9 13/14] net/sxe: add virtual function Jie Liu
2025-07-16 17:44                           ` Stephen Hemminger
2025-07-17 16:45                           ` Stephen Hemminger
2025-07-16  8:29                         ` [PATCH v9 14/14] net/sxe: add Solve compilation problems Jie Liu
2025-07-16 20:31                           ` Stephen Hemminger
2025-07-19  9:05                           ` [PATCH v10 01/14] net/sxe: add base driver directory and doc Jie Liu
2025-07-19  9:05                             ` [PATCH v10 02/14] net/sxe: add ethdev probe and remove Jie Liu
2025-07-21 15:27                               ` Stephen Hemminger
2025-07-19  9:05                             ` [PATCH v10 03/14] net/sxe: add tx rx setup and data path Jie Liu
2025-07-21 15:28                               ` Stephen Hemminger
2025-07-19  9:05                             ` [PATCH v10 04/14] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-07-19  9:05                             ` [PATCH v10 05/14] net/sxe: support vlan filter Jie Liu
2025-07-19  9:05                             ` [PATCH v10 06/14] net/sxe: add filter function Jie Liu
2025-07-19  9:05                             ` [PATCH v10 07/14] net/sxe: support rss offload Jie Liu
2025-07-19  9:05                             ` [PATCH v10 08/14] net/sxe: add dcb function Jie Liu
2025-07-19  9:05                             ` [PATCH v10 09/14] net/sxe: support ptp Jie Liu
2025-07-19  9:05                             ` [PATCH v10 10/14] net/sxe: add xstats function Jie Liu
2025-07-21 15:32                               ` Stephen Hemminger
2025-07-19  9:05                             ` [PATCH v10 11/14] net/sxe: add custom cmd led ctrl Jie Liu
2025-07-19  9:05                             ` [PATCH v10 12/14] net/sxe: add simd function Jie Liu
2025-07-19  9:05                             ` [PATCH v10 13/14] net/sxe: add virtual function Jie Liu
2025-07-21 15:34                               ` Stephen Hemminger
2025-07-19  9:05                             ` [PATCH v10 14/14] net/sxe: add Solve compilation problems Jie Liu
2025-07-21 15:25                               ` Stephen Hemminger
2025-07-21 15:37                               ` Stephen Hemminger
2025-07-25 10:48                               ` [PATCH v11 01/13] net/sxe: add base driver directory and doc Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 02/13] net/sxe: add ethdev probe and remove Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 03/13] net/sxe: add tx rx setup and data path Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 04/13] net/sxe: add link, flow ctrl, mac ops, mtu ops function Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 05/13] net/sxe: support vlan filter Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 06/13] net/sxe: add filter function Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 07/13] net/sxe: support rss offload Jie Liu
2025-07-25 15:26                                   ` Ivan Malov
2025-07-25 10:48                                 ` [PATCH v11 08/13] net/sxe: add dcb function Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 09/13] net/sxe: support ptp Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 10/13] net/sxe: add xstats function Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 11/13] net/sxe: add custom cmd led ctrl Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 12/13] net/sxe: add simd function Jie Liu
2025-07-25 10:48                                 ` [PATCH v11 13/13] net/sxe: add virtual function Jie Liu
2025-07-28  9:05                                   ` [PATCH v12 01/13] net/sxe: add base driver directory and doc liujie5
2025-07-28  9:05                                     ` [PATCH v12 02/13] net/sxe: add ethdev probe and remove liujie5
2025-10-24 17:21                                       ` Stephen Hemminger
2025-10-24 22:14                                       ` Stephen Hemminger
2025-10-25 16:36                                       ` Stephen Hemminger
2025-07-28  9:05                                     ` [PATCH v12 03/13] net/sxe: add tx rx setup and data path liujie5
2025-10-24 16:46                                       ` Stephen Hemminger
2025-07-28  9:05                                     ` [PATCH v12 04/13] net/sxe: add link, flow ctrl, mac ops, mtu ops function liujie5
2025-07-28  9:05                                     ` [PATCH v12 05/13] net/sxe: support vlan filter liujie5
2025-07-28  9:05                                     ` [PATCH v12 06/13] net/sxe: add filter function liujie5
2025-07-28  9:05                                     ` [PATCH v12 07/13] net/sxe: support rss offload liujie5
2025-07-28  9:05                                     ` [PATCH v12 08/13] net/sxe: add dcb function liujie5
2025-10-24 16:38                                       ` Stephen Hemminger
2025-10-25 18:14                                       ` Stephen Hemminger
2025-07-28  9:05                                     ` [PATCH v12 09/13] net/sxe: support ptp liujie5
2025-07-28  9:05                                     ` [PATCH v12 10/13] net/sxe: add xstats function liujie5
2025-10-24 17:05                                       ` Stephen Hemminger
2025-10-24 17:11                                       ` Stephen Hemminger
2025-07-28  9:05                                     ` [PATCH v12 11/13] net/sxe: add custom cmd led ctrl liujie5
2025-07-28  9:05                                     ` [PATCH v12 12/13] net/sxe: add simd function liujie5
2025-07-28  9:05                                     ` [PATCH v12 13/13] net/sxe: add virtual function liujie5
2025-10-24 16:59                                       ` Stephen Hemminger
2025-10-24 16:59                                       ` Stephen Hemminger
2025-10-24 17:01                                       ` Stephen Hemminger
2025-10-24 17:03                                       ` Stephen Hemminger
2025-10-24 17:03                                       ` Stephen Hemminger
2025-12-25  8:11                                       ` [PATCH v13 01/13] net/sxe: add base driver directory and doc liujie5
2025-12-25  8:11                                         ` [PATCH v13 02/13] net/sxe: add ethdev probe and remove MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit liujie5
2025-12-25  8:11                                         ` [PATCH v13 03/13] net/sxe: add tx rx setup and data path liujie5
2025-12-25  8:11                                         ` [PATCH v13 04/13] net/sxe: add link, flow ctrl, mac ops, mtu ops function liujie5
2025-12-25  8:11                                         ` [PATCH v13 05/13] net/sxe: support vlan filter liujie5
2025-12-25  8:11                                         ` [PATCH v13 06/13] net/sxe: add filter function liujie5
2025-12-25  8:11                                         ` [PATCH v13 07/13] net/sxe: support rss offload liujie5
2025-12-25  8:11                                         ` [PATCH v13 08/13] net/sxe: add dcb function liujie5
2025-12-25  8:11                                         ` [PATCH v13 09/13] net/sxe: support ptp liujie5
2025-12-25  8:11                                         ` [PATCH v13 10/13] net/sxe: add xstats function liujie5
2025-12-25  8:11                                         ` [PATCH v13 11/13] net/sxe: add custom cmd led ctrl liujie5
2025-12-25  8:12                                         ` [PATCH v13 12/13] net/sxe: add simd function liujie5
2025-12-25  8:12                                         ` [PATCH v13 13/13] net/sxe: add virtual function liujie5
2025-12-25  9:22                                           ` [PATCH v14 01/13] net/sxe: add base driver directory and doc liujie5
2025-12-25  9:22                                             ` [PATCH v14 02/13] net/sxe: add ethdev probe and remove MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit liujie5
2025-12-25  9:22                                             ` [PATCH v14 03/13] net/sxe: add tx rx setup and data path liujie5
2025-12-25  9:22                                             ` [PATCH v14 04/13] net/sxe: add link, flow ctrl, mac ops, mtu ops function liujie5
2025-12-25  9:22                                             ` [PATCH v14 05/13] net/sxe: support vlan filter liujie5
2025-12-25  9:22                                             ` [PATCH v14 06/13] net/sxe: add filter function liujie5
2025-12-25  9:22                                             ` [PATCH v14 07/13] net/sxe: support rss offload liujie5
2025-12-25  9:22                                             ` [PATCH v14 08/13] net/sxe: add dcb function liujie5
2025-12-25  9:22                                             ` [PATCH v14 09/13] net/sxe: support ptp liujie5
2025-12-25  9:22                                             ` [PATCH v14 10/13] net/sxe: add xstats function liujie5
2025-12-25  9:22                                             ` [PATCH v14 11/13] net/sxe: add custom cmd led ctrl liujie5
2025-12-25  9:22                                             ` [PATCH v14 12/13] net/sxe: add simd function liujie5
2025-12-25  9:22                                             ` [PATCH v14 13/13] net/sxe: add virtual function liujie5
2026-02-08  9:31                                               ` [PATCH v15 01/13] net/sxe: add base driver directory and doc liujie5
2026-02-08  9:31                                                 ` [PATCH v15 02/13] net/sxe: add ethdev probe and remove liujie5
2026-02-08  9:31                                                 ` [PATCH v15 03/13] net/sxe: add tx rx setup and data path liujie5
2026-02-08  9:31                                                 ` [PATCH v15 04/13] net/sxe: add link, flow ctrl, mac ops, mtu ops function liujie5
2026-02-08  9:31                                                 ` [PATCH v15 05/13] net/sxe: support vlan filter liujie5
2026-02-08  9:31                                                 ` [PATCH v15 06/13] net/sxe: add filter function liujie5
2026-02-08  9:31                                                 ` [PATCH v15 07/13] net/sxe: support rss offload liujie5
2026-02-08  9:31                                                 ` [PATCH v15 08/13] net/sxe: add dcb function liujie5
2026-02-08  9:31                                                 ` [PATCH v15 09/13] net/sxe: support ptp liujie5
2026-02-08  9:31                                                 ` [PATCH v15 10/13] net/sxe: add xstats function liujie5
2026-02-08  9:31                                                 ` [PATCH v15 11/13] net/sxe: add custom cmd led ctrl liujie5
2026-02-08  9:31                                                 ` [PATCH v15 12/13] net/sxe: add simd function liujie5
2026-02-08  9:31                                                 ` [PATCH v15 13/13] net/sxe: add virtual function liujie5
2026-02-08 11:55                                                   ` [PATCH v15 01/13] net/sxe: add base driver directory and doc liujie5
2026-02-08 11:55                                                     ` [PATCH v15 02/13] net/sxe: add ethdev probe and remove liujie5
2026-02-08 11:55                                                     ` [PATCH v15 03/13] net/sxe: add tx rx setup and data path liujie5
2026-02-08 11:55                                                     ` [PATCH v15 04/13] net/sxe: add link, flow ctrl, mac ops, mtu ops function liujie5
2026-02-08 11:55                                                     ` [PATCH v15 05/13] net/sxe: support vlan filter liujie5
2026-02-08 11:55                                                     ` [PATCH v15 06/13] net/sxe: add filter function liujie5
2026-02-08 11:55                                                     ` [PATCH v15 07/13] net/sxe: support rss offload liujie5
2026-02-08 11:55                                                     ` [PATCH v15 08/13] net/sxe: add dcb function liujie5
2026-02-08 11:55                                                     ` [PATCH v15 09/13] net/sxe: support ptp liujie5
2026-02-08 11:55                                                     ` [PATCH v15 10/13] net/sxe: add xstats function liujie5
2026-02-08 11:55                                                     ` [PATCH v15 11/13] net/sxe: add custom cmd led ctrl liujie5
2026-02-08 11:55                                                     ` [PATCH v15 12/13] net/sxe: add simd function liujie5
2026-02-08 11:55                                                     ` [PATCH v15 13/13] net/sxe: add virtual function liujie5
2026-02-08 11:56                                                   ` [PATCH v16 01/13] net/sxe: add base driver directory and doc liujie5
2026-02-08 11:56                                                     ` [PATCH v16 02/13] net/sxe: add ethdev probe and remove liujie5
2026-02-08 11:56                                                     ` [PATCH v16 03/13] net/sxe: add tx rx setup and data path liujie5
2026-02-08 11:56                                                     ` [PATCH v16 04/13] net/sxe: add link, flow ctrl, mac ops, mtu ops function liujie5
2026-02-08 11:56                                                     ` [PATCH v16 05/13] net/sxe: support vlan filter liujie5
2026-02-08 11:56                                                     ` [PATCH v16 06/13] net/sxe: add filter function liujie5
2026-02-08 11:56                                                     ` [PATCH v16 07/13] net/sxe: support rss offload liujie5
2026-02-08 11:56                                                     ` [PATCH v16 08/13] net/sxe: add dcb function liujie5
2026-02-08 11:56                                                     ` [PATCH v16 09/13] net/sxe: support ptp liujie5
2026-02-08 11:56                                                     ` [PATCH v16 10/13] net/sxe: add xstats function liujie5
2026-02-08 11:56                                                     ` [PATCH v16 11/13] net/sxe: add custom cmd led ctrl liujie5
2026-02-08 11:56                                                     ` [PATCH v16 12/13] net/sxe: add simd function liujie5
2026-02-08 11:56                                                     ` [PATCH v16 13/13] net/sxe: add virtual function liujie5
2026-02-09  1:24                                                       ` [PATCH v17 01/13] net/sxe: add base driver directory and doc liujie5
2026-02-09  1:24                                                         ` [PATCH v17 02/13] net/sxe: add ethdev probe and remove liujie5
2026-02-09 19:05                                                           ` Stephen Hemminger
2026-02-09  1:24                                                         ` [PATCH v17 03/13] net/sxe: add tx rx setup and data path liujie5
2026-02-09  1:24                                                         ` [PATCH v17 04/13] net/sxe: add link, flow ctrl, mac ops, mtu ops function liujie5
2026-02-09  1:24                                                         ` [PATCH v17 05/13] net/sxe: support vlan filter liujie5
2026-02-09  1:24                                                         ` [PATCH v17 06/13] net/sxe: add filter function liujie5
2026-02-09  1:24                                                         ` [PATCH v17 07/13] net/sxe: support rss offload liujie5
2026-02-09  1:24                                                         ` [PATCH v17 08/13] net/sxe: add dcb function liujie5
2026-02-09  1:24                                                         ` [PATCH v17 09/13] net/sxe: support ptp liujie5
2026-02-09  1:24                                                         ` [PATCH v17 10/13] net/sxe: add xstats function liujie5
2026-02-09  1:24                                                         ` [PATCH v17 11/13] net/sxe: add custom cmd led ctrl liujie5
2026-02-09  1:24                                                         ` [PATCH v17 12/13] net/sxe: add simd function liujie5
2026-02-09  1:24                                                         ` [PATCH v17 13/13] net/sxe: add virtual function liujie5
2026-03-03  9:10                                                           ` [PATCH v18 00/13] net/sxe: added Linkdata sxe ethernet driver liujie5
2026-03-03  9:10                                                             ` [PATCH v18 01/13] net/sxe: add base driver directory and doc liujie5
2026-03-03  9:10                                                             ` [PATCH v18 02/13] net/sxe: add ethdev probe and remove liujie5
2026-03-03  9:10                                                             ` [PATCH v18 03/13] net/sxe: add tx rx setup and data path liujie5
2026-03-03  9:10                                                             ` [PATCH v18 04/13] net/sxe: add link and mac layer operations liujie5
2026-03-03  9:10                                                             ` [PATCH v18 05/13] net/sxe: support vlan filter liujie5
2026-03-03  9:10                                                             ` [PATCH v18 06/13] net/sxe: add filter function liujie5
2026-03-03  9:10                                                             ` [PATCH v18 07/13] net/sxe: support rss offload liujie5
2026-03-03  9:10                                                             ` [PATCH v18 08/13] net/sxe: add dcb function liujie5
2026-03-03  9:10                                                             ` [PATCH v18 09/13] net/sxe: support ptp liujie5
2026-03-03  9:10                                                             ` [PATCH v18 10/13] net/sxe: add xstats function liujie5
2026-03-03  9:10                                                             ` [PATCH v18 11/13] net/sxe: add custom cmd led ctrl liujie5
2026-03-03  9:10                                                             ` [PATCH v18 12/13] net/sxe: add simd function liujie5
2026-03-03  9:10                                                             ` [PATCH v18 13/13] net/sxe: add virtual function liujie5
2026-03-14  8:51                                                               ` [PATCH v19 00/13] net/sxe: added Linkdata sxe ethernet driver liujie5
2026-03-14  8:51                                                                 ` [PATCH v19 01/13] net/sxe: add base driver directory and doc liujie5
2026-03-14  8:51                                                                 ` [PATCH v19 02/13] net/sxe: add ethdev probe and remove liujie5
2026-03-21 17:18                                                                   ` Stephen Hemminger
2026-03-14  8:51                                                                 ` [PATCH v19 03/13] net/sxe: add tx rx setup and data path liujie5
2026-03-14  8:51                                                                 ` [PATCH v19 04/13] net/sxe: add link and mac layer operations liujie5
2026-03-14  8:51                                                                 ` [PATCH v19 05/13] net/sxe: support vlan filter liujie5
2026-03-14  8:51                                                                 ` [PATCH v19 06/13] net/sxe: add filter function liujie5
2026-03-14  8:51                                                                 ` [PATCH v19 07/13] net/sxe: support rss offload liujie5
2026-03-14  8:52                                                                 ` [PATCH v19 08/13] net/sxe: add dcb function liujie5
2026-03-14  8:52                                                                 ` [PATCH v19 09/13] net/sxe: support ptp liujie5
2026-03-14  8:52                                                                 ` [PATCH v19 10/13] net/sxe: add xstats function liujie5
2026-03-14  8:52                                                                 ` [PATCH v19 11/13] net/sxe: add custom cmd led ctrl liujie5
2026-03-14  8:52                                                                 ` [PATCH v19 12/13] net/sxe: add simd function liujie5
2026-03-14  8:52                                                                 ` [PATCH v19 13/13] net/sxe: add virtual function liujie5
2026-03-18  3:04                                                                 ` Stephen Hemminger [this message]
2026-03-21 17:22                                                                 ` [PATCH v19 00/13] net/sxe: added Linkdata sxe ethernet driver Stephen Hemminger
2026-03-22 16:37                                                                 ` Stephen Hemminger
2026-03-03 15:42                                                             ` [PATCH v18 " Stephen Hemminger
2026-02-09 19:01                                                         ` [PATCH v17 01/13] net/sxe: add base driver directory and doc Stephen Hemminger
2026-02-09 19:07                                                         ` Stephen Hemminger
2025-12-26 22:39                                             ` [PATCH v14 " Stephen Hemminger
2025-12-25  8:32                                       ` [PATCH v13 " liujie5
2025-12-25  8:32                                         ` [PATCH v13 02/13] net/sxe: add ethdev probe and remove MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit liujie5
2025-10-24 16:42                                     ` [PATCH v12 01/13] net/sxe: add base driver directory and doc Stephen Hemminger
2025-10-24 16:49                                     ` Stephen Hemminger
2025-10-25 18:33                                     ` Stephen Hemminger
2025-10-25 18:35                                     ` Stephen Hemminger
2025-07-16  8:42                         ` [PATCH v9 01/14] " David Marchand
2025-07-16 17:46                         ` Stephen Hemminger
2025-07-16 17:47                         ` Stephen Hemminger
2025-07-07 14:58     ` [PATCH v3 " Stephen Hemminger
2025-07-07 15:00     ` Stephen Hemminger
2025-07-25 13:39 ` [PATCH 01/13] " Ivan Malov
2025-07-25 13:43   ` Ivan Malov

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=20260317200441.1e2f3a83@stephen-xps.local \
    --to=stephen@networkplumber.org \
    --cc=dev@dpdk.org \
    --cc=liujie5@linkdatatechnology.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