public inbox for dev@dpdk.org
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: Jie Hai <haijie1@huawei.com>
Cc: <dev@dpdk.org>, <thomas@monjalon.net>, <ferruh.yigit@amd.com>,
	<lihuisong@huawei.com>, <fengchengwen@huawei.com>,
	<huangdengdui@huawei.com>
Subject: Re: [PATCH v6 00/25] replace strtok with strtok_r
Date: Tue, 13 Jan 2026 09:27:10 -0800	[thread overview]
Message-ID: <20260113092710.5b5c95f5@phoenix.local> (raw)
In-Reply-To: <20241122110458.2156907-1-haijie1@huawei.com>

On Fri, 22 Nov 2024 19:04:32 +0800
Jie Hai <haijie1@huawei.com> wrote:

> Multiple threads calling the same function may cause condition
> race issues, which often leads to abnormal behavior and can cause
> more serious vulnerabilities such as abnormal termination, denial
> of service, and compromised data integrity.
> 
> This patchset replaces strtok with strtok_r in app, example, lib
> and drivers. And adds check for use of strtok in checkpatches.sh.
> 
> --
> v6:
> 1. adapt to the newest codes.
> 2. fix compile error.
> 
> v5:
> 1. remove CC stable for some patch.
> 2. replace strtok for all files.
> 
> v4:
> 1. fix mispellings.
> 2. add Acked-bys and Reviewd-bys.
> 3. remove some patch and add new. 
> v3:
> 1. fix compile error.
> 2. use strtok_r instead.
> v2:
> 1. fix commit log.
> 2. add check in checkpatches.sh.
> 3. replace strtok_r with strtok_s.
> 4. add Acked-by.
> --
> 
> Jie Hai (25):
>   app/bbdev: replace strtok with reentrant version
>   app/compress-perf: replace strtok with reentrant version
>   app/crypto-perf: replace strtok with reentrant version
>   app/dma-perf: replace strtok with reentrant version
>   app/flow-perf: replace strtok with reentrant version
>   app/test-mldev: replace strtok with reentrant version
>   app/test-fib: replace strtok with reentrant version
>   dmadev: replace strtok with reentrant version
>   eal: replace strtok with reentrant version
>   ethdev: replace strtok with reentrant version
>   eventdev: replace strtok with reentrant version
>   security: replace strtok with reentrant version
>   telemetry: replace strtok with reentrant version
>   bus/fslmc: replace strtok with reentrant version
>   common/cnxk: replace strtok with reentrant version
>   event/cnxk: replace strtok with reentrant version
>   net/ark: replace strtok with reentrant version
>   raw/cnxk_gpio: replace strtok with reentrant version
>   net/cnxk: replace strtok with reentrant version
>   common/qat: replace strtok with reentrant version
>   net/mlx5: replace strtok with reentrant version
>   examples/l2fwd-crypto: replace strtok with reentrant version
>   examples/vhost: replace strtok with reentrant version
>   devtools: check for some reentrant function
>   eal/linux: install rte_os_shim.h file
> 
>  app/test-bbdev/test_bbdev_vector.c            | 42 +++++++++++--------
>  .../comp_perf_options_parse.c                 | 17 ++++----
>  app/test-crypto-perf/cperf_options_parsing.c  | 17 ++++----
>  .../cperf_test_vector_parsing.c               | 11 +++--
>  app/test-dma-perf/main.c                      |  9 ++--
>  app/test-fib/main.c                           | 11 ++---
>  app/test-flow-perf/main.c                     | 23 +++++-----
>  app/test-mldev/ml_options.c                   | 19 +++++----
>  devtools/checkpatches.sh                      |  8 ++++
>  drivers/bus/fslmc/fslmc_bus.c                 |  6 ++-
>  drivers/bus/fslmc/portal/dpaa2_hw_dpio.c      |  5 ++-
>  drivers/common/cnxk/cnxk_telemetry_nix.c      | 13 +++---
>  drivers/common/qat/qat_device.c               |  6 ++-
>  drivers/event/cnxk/cnxk_eventdev.c            | 12 ++++--
>  drivers/event/cnxk/cnxk_tim_evdev.c           | 12 +++---
>  drivers/net/ark/ark_pktchkr.c                 | 11 ++---
>  drivers/net/ark/ark_pktgen.c                  | 11 ++---
>  drivers/net/cnxk/cnxk_ethdev_sec_telemetry.c  |  6 ++-
>  drivers/net/mlx5/mlx5_testpmd.c               |  5 ++-
>  drivers/raw/cnxk_gpio/cnxk_gpio.c             |  7 ++--
>  examples/l2fwd-crypto/main.c                  |  7 ++--
>  examples/vhost/main.c                         |  4 +-
>  lib/dmadev/rte_dmadev.c                       |  5 ++-
>  lib/eal/common/eal_common_memory.c            |  8 ++--
>  lib/eal/linux/include/meson.build             |  1 +
>  lib/ethdev/rte_ethdev_telemetry.c             | 10 +++--
>  lib/eventdev/rte_event_eth_rx_adapter.c       | 39 ++++++++---------
>  lib/eventdev/rte_eventdev.c                   | 18 ++++----
>  lib/security/rte_security.c                   |  4 +-
>  lib/telemetry/telemetry.c                     |  6 ++-
>  30 files changed, 208 insertions(+), 145 deletions(-)
> 


This patch series seems to have gotten lost or stalled.
Still worth fixing strtok. But it no longer merges with latest code base.
Also AI code review sees a bug that needs fixing.


## DPDK Patch Evaluation Report

**Series**: v6 strtok → strtok_r conversion (patches 1/25, 24/25, 25/25 from bundle)

---

### Patch 1/25: `app/bbdev: replace strtok with reentrant version`

#### Commit Message Analysis

| Check | Status | Notes |
|-------|--------|-------|
| Subject ≤60 chars | ✅ PASS | 47 characters |
| Lowercase after colon | ✅ PASS | |
| Imperative mood | ✅ PASS | "replace" is imperative |
| No trailing period | ✅ PASS | |
| Correct prefix | ⚠️ INFO | Uses `app/bbdev:` for `app/test-bbdev/` — acceptable shorthand |
| Body ≤75 chars/line | ✅ PASS | |
| Body doesn't start with "It" | ✅ PASS | Starts with "Multiple" |
| Signed-off-by present | ✅ PASS | Real name, valid email |
| Fixes: tag format | ✅ PASS | 12-char SHA with quoted subject |
| Tag order | ✅ PASS | Fixes → blank line → Signed-off-by → Acked-by |

#### Warnings

| Issue | Severity | Recommendation |
|-------|----------|----------------|
| Missing `Cc: stable@dpdk.org` | ⚠️ WARNING | Bug fix with `Fixes:` tags should include stable backport CC |

#### Code Quality — **CRITICAL BUG FOUND**

**Error**: Incorrect `strtok_r()` usage in multiple locations.

The patch incorrectly replaces `strtok(NULL, ...)` with `strtok_r(token, ...)` instead of `strtok_r(NULL, ...)` for continuation calls:

```c
/* Lines 187-188: BUG - should be NULL, not token */
-               tok = strtok(NULL, VALUE_DELIMITER);
+               tok = strtok_r(token, VALUE_DELIMITER, &sp);  // WRONG!
                                ^^^^^ should be NULL
```

This error appears in at least 4 locations:
- Line 188: `cs_theta_0` parsing loop
- Line 203: `cs_theta_d` parsing loop  
- Line 218: `time_offset` parsing loop
- Line 234: `fft_window_width` parsing loop

**Correct pattern**:
```c
tok = strtok_r(token, VALUE_DELIMITER, &sp);  /* Initial call: pass string */
/* ... */
tok = strtok_r(NULL, VALUE_DELIMITER, &sp);   /* Subsequent calls: pass NULL */
```

This bug would cause the parser to restart from the beginning of `token` on each iteration instead of continuing through the string, likely resulting in infinite loops or incorrect data parsing.

#### Other Code Observations

| Check | Status |
|-------|--------|
| `#include <rte_os_shim.h>` added | ✅ Correct |
| State variable `char *sp = NULL` declared | ✅ Correct |
| First strtok_r calls pass string | ✅ Correct |

---

### Patch 24/25: `devtools: check for some reentrant function`

#### Commit Message Analysis

| Check | Status | Notes |
|-------|--------|-------|
| Subject ≤60 chars | ✅ PASS | 42 characters |
| Correct prefix | ✅ PASS | `devtools:` |
| Lowercase after colon | ✅ PASS | |
| Imperative mood | ✅ PASS | |
| No trailing period | ✅ PASS | |
| Signed-off-by | ✅ PASS | |
| Cc: stable@dpdk.org | ✅ PASS | Present |
| Tag order | ✅ PASS | Cc → blank → Signed-off-by → Acked-by |

#### Code Review

| Check | Status |
|-------|--------|
| Shell script syntax | ✅ Correct |
| awk pattern for `strtok\(` | ✅ Correct |
| Consistent with existing checks | ✅ Follows established pattern |

**No issues found** — this patch looks correct.

---

### Patch 25/25: `eal/linux: install rte_os_shim.h file`

#### Commit Message Analysis

| Check | Status | Notes |
|-------|--------|-------|
| Subject ≤60 chars | ✅ PASS | 35 characters |
| Correct prefix | ✅ PASS | `eal/linux:` for `lib/eal/linux/` |
| Imperative mood | ✅ PASS | |
| Signed-off-by | ✅ PASS | |

#### Warnings

| Issue | Severity | Notes |
|-------|----------|-------|
| Missing `Cc: stable@dpdk.org` | ⚠️ WARNING | This is a build fix; if backporting the strtok_r changes, this would also be needed |
| No `Fixes:` tag | ℹ️ INFO | Could reference the commit that exposed the missing header |

#### Code Review

| Check | Status |
|-------|--------|
| Meson file syntax | ✅ Correct |
| Alphabetical ordering | ✅ Maintained (rte_os.h → rte_os_shim.h) |
| Trailing comma | ✅ Correct for multi-line list |

---

## Summary

| Patch | Verdict | Blocking Issues |
|-------|---------|-----------------|
| 01/25 app/bbdev | ❌ **NEEDS REVISION** | Critical bug: `strtok_r(token,...)` should be `strtok_r(NULL,...)` for continuation calls |
| 24/25 devtools | ✅ **ACCEPTABLE** | None |
| 25/25 eal/linux | ✅ **ACCEPTABLE** | Minor: consider adding `Cc: stable` |

### Required Actions

1. **Patch 1/25**: Fix all `strtok_r()` continuation calls to pass `NULL` instead of `token`:
   ```c
   /* Wrong */
   tok = strtok_r(token, VALUE_DELIMITER, &sp);
   
   /* Correct */
   tok = strtok_r(NULL, VALUE_DELIMITER, &sp);
   ```

2. **Patch 1/25**: Consider adding `Cc: stable@dpdk.org` since this is a bug fix.

      parent reply	other threads:[~2026-01-13 17:27 UTC|newest]

Thread overview: 179+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-13 10:45 [PATCH 00/21] replace strtok with strtok_r Jie Hai
2023-11-13 10:45 ` [PATCH 01/21] app/graph: " Jie Hai
2023-11-13 10:45 ` [PATCH 02/21] app/test-bbdev: " Jie Hai
2023-11-13 10:45 ` [PATCH 03/21] app/test-compress-perf: " Jie Hai
2023-11-13 10:45 ` [PATCH 04/21] app/test-crypto-perf: " Jie Hai
2023-11-13 10:45 ` [PATCH 05/21] app/test-dma-perf: " Jie Hai
2023-11-13 10:45 ` [PATCH 06/21] app/test-fib: " Jie Hai
2023-11-13 10:45 ` [PATCH 07/21] app/dpdk-test-flow-perf: " Jie Hai
2023-11-13 10:45 ` [PATCH 08/21] app/test-mldev: " Jie Hai
2023-11-13 10:45 ` [PATCH 09/21] lib/dmadev: " Jie Hai
2023-11-13 10:45 ` [PATCH 10/21] lib/eal: " Jie Hai
2023-11-13 16:27   ` Stephen Hemminger
2023-11-14  1:05     ` fengchengwen
2023-11-14  1:08       ` Stephen Hemminger
2023-11-13 10:45 ` [PATCH 11/21] lib/ethdev: " Jie Hai
2023-11-13 10:45 ` [PATCH 12/21] lib/eventdev: " Jie Hai
2023-11-13 10:45 ` [PATCH 13/21] lib/telemetry: " Jie Hai
2023-11-13 10:45 ` [PATCH 14/21] " Jie Hai
2023-11-13 10:45 ` [PATCH 15/21] bus/fslmc: " Jie Hai
2023-11-15  2:41   ` Sachin Saxena
2023-11-13 10:45 ` [PATCH 16/21] common/cnxk: " Jie Hai
2023-11-13 10:45 ` [PATCH 17/21] event/cnxk: " Jie Hai
2023-11-13 10:45 ` [PATCH 18/21] net/ark: " Jie Hai
2023-11-13 10:45 ` [PATCH 19/21] raw/cnxk_gpio: " Jie Hai
2023-11-13 10:45 ` [PATCH 20/21] examples/l2fwd-crypto: " Jie Hai
2023-11-13 10:45 ` [PATCH 21/21] examples/vhost: " Jie Hai
2023-11-13 16:26   ` Stephen Hemminger
2023-11-13 11:00 ` [PATCH 00/21] " Thomas Monjalon
2023-11-13 11:33 ` fengchengwen
2023-11-13 16:25 ` Stephen Hemminger
2023-11-13 17:09 ` Tyler Retzlaff
2023-11-14 12:50   ` Jie Hai
2023-11-14 17:32     ` Tyler Retzlaff
2023-11-14 17:34       ` Tyler Retzlaff
2023-11-14 17:49         ` Tyler Retzlaff
2023-11-15  3:02           ` fengchengwen
2023-11-15 11:27             ` Morten Brørup
2023-11-15 15:08               ` Stephen Hemminger
2023-11-21  3:32                 ` Jie Hai
2024-02-01 11:13                   ` David Marchand
2023-11-14  8:41 ` [PATCH v2 00/22] replace strtok with reentrant version Jie Hai
2023-11-14  8:41   ` [PATCH v2 01/22] app/graph: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 02/22] app/bbdev: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 03/22] app/compress-perf: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 04/22] app/crypto-perf: " Jie Hai
2024-01-11 17:10     ` Power, Ciara
2023-11-14  8:41   ` [PATCH v2 05/22] app/dma-perf: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 06/22] app/test-fib: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 07/22] app/flow-perf: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 08/22] app/test-mldev: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 09/22] dmadev: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 10/22] eal: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 11/22] ethdev: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 12/22] eventdev: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 13/22] security: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 14/22] telemetry: " Jie Hai
2024-01-11 17:13     ` Power, Ciara
2023-11-14  8:41   ` [PATCH v2 15/22] bus/fslmc: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 16/22] common/cnxk: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 17/22] event/cnxk: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 18/22] net/ark: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 19/22] raw/cnxk_gpio: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 20/22] examples/l2fwd-crypto: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 21/22] examples/vhost: " Jie Hai
2023-11-14  8:41   ` [PATCH v2 22/22] devtools: check for some reentrant function Jie Hai
2023-11-14 10:59 ` [PATCH v3 00/22] replace strtok with reentrant version Jie Hai
2023-11-14 10:59   ` [PATCH v3 01/22] app/graph: " Jie Hai
2023-11-15  0:07     ` Stephen Hemminger
2023-11-14 10:59   ` [PATCH v3 02/22] app/bbdev: " Jie Hai
2023-11-15  0:09     ` Stephen Hemminger
2023-11-14 10:59   ` [PATCH v3 03/22] app/compress-perf: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 04/22] app/crypto-perf: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 05/22] app/dma-perf: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 06/22] app/test-fib: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 07/22] app/flow-perf: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 08/22] app/test-mldev: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 09/22] dmadev: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 10/22] eal: " Jie Hai
2023-11-15  7:17     ` [EXT] " Amit Prakash Shukla
2023-11-14 10:59   ` [PATCH v3 11/22] ethdev: " Jie Hai
2023-12-16 10:01     ` Andrew Rybchenko
2023-11-14 10:59   ` [PATCH v3 12/22] eventdev: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 13/22] security: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 14/22] telemetry: " Jie Hai
2023-11-14 10:59   ` [PATCH v3 15/22] bus/fslmc: " Jie Hai
2023-11-14 11:00   ` [PATCH v3 16/22] common/cnxk: " Jie Hai
2023-11-14 11:00   ` [PATCH v3 17/22] event/cnxk: " Jie Hai
2023-11-14 11:00   ` [PATCH v3 18/22] net/ark: " Jie Hai
2023-11-14 11:00   ` [PATCH v3 19/22] raw/cnxk_gpio: " Jie Hai
2023-11-14 11:00   ` [PATCH v3 20/22] examples/l2fwd-crypto: " Jie Hai
2023-11-14 11:00   ` [PATCH v3 21/22] examples/vhost: " Jie Hai
2023-11-14 11:00   ` [PATCH v3 22/22] devtools: check for some reentrant function Jie Hai
2024-10-22 10:46   ` [PATCH v3 00/22] replace strtok with reentrant version Morten Brørup
2024-10-26 10:14 ` [PATCH v4 00/13] " Jie Hai
2024-10-26 10:14   ` [PATCH v4 01/13] dmadev: " Jie Hai
2024-10-27  3:00     ` Stephen Hemminger
2024-10-26 10:14   ` [PATCH v4 02/13] eal: " Jie Hai
2024-10-27  3:00     ` Stephen Hemminger
2024-10-28 13:04       ` fengchengwen
2024-10-28 15:31         ` Stephen Hemminger
2024-10-29  0:56           ` fengchengwen
2024-10-29  2:51             ` Stephen Hemminger
2024-11-07 12:29               ` Jie Hai
2024-10-26 10:14   ` [PATCH v4 03/13] ethdev: " Jie Hai
2024-10-27  3:01     ` Stephen Hemminger
2024-10-26 10:14   ` [PATCH v4 04/13] eventdev: " Jie Hai
2024-10-27  3:02     ` Stephen Hemminger
2024-10-26 10:14   ` [PATCH v4 05/13] security: " Jie Hai
2024-10-27  3:03     ` Stephen Hemminger
2024-10-26 10:14   ` [PATCH v4 06/13] telemetry: " Jie Hai
2024-10-27  3:05     ` Stephen Hemminger
2024-10-26 10:14   ` [PATCH v4 07/13] bus/fslmc: " Jie Hai
2024-10-27  3:06     ` Stephen Hemminger
2024-10-26 10:14   ` [PATCH v4 08/13] common/cnxk: " Jie Hai
2024-10-27  3:07     ` Stephen Hemminger
2024-10-26 10:14   ` [PATCH v4 09/13] event/cnxk: " Jie Hai
2024-10-27  3:08     ` Stephen Hemminger
2024-10-26 10:14   ` [PATCH v4 10/13] net/ark: " Jie Hai
2024-10-26 10:14   ` [PATCH v4 11/13] raw/cnxk_gpio: " Jie Hai
2024-10-26 10:14   ` [PATCH v4 12/13] net/cnxk: " Jie Hai
2024-10-26 10:14   ` [PATCH v4 13/13] devtools: check for some reentrant function Jie Hai
2024-10-27  3:11     ` Stephen Hemminger
2024-11-05 16:28   ` [PATCH v4 00/13] replace strtok with reentrant version Stephen Hemminger
2024-11-06 20:11   ` David Marchand
2024-11-07 12:23     ` Jie Hai
2024-11-08 11:03 ` [PATCH v5 00/25] Jie Hai
2024-11-08 11:03   ` [PATCH v5 01/25] app/graph: replace strtok with reentrant version Jie Hai
2024-11-08 11:03   ` [PATCH v5 02/25] app/bbdev: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 03/25] app/compress-perf: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 04/25] app/crypto-perf: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 05/25] app/dma-perf: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 06/25] app/flow-perf: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 07/25] app/test-mldev: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 08/25] app/test-fib: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 09/25] dmadev: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 10/25] eal: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 11/25] ethdev: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 12/25] eventdev: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 13/25] security: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 14/25] telemetry: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 15/25] bus/fslmc: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 16/25] common/cnxk: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 17/25] event/cnxk: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 18/25] net/ark: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 19/25] raw/cnxk_gpio: " Jie Hai
2024-11-08 11:03   ` [PATCH v5 20/25] net/cnxk: " Jie Hai
2024-11-08 11:04   ` [PATCH v5 21/25] common/qat: " Jie Hai
2024-11-08 11:04   ` [PATCH v5 22/25] net/mlx5: " Jie Hai
2024-11-08 11:04   ` [PATCH v5 23/25] examples/l2fwd-crypto: " Jie Hai
2024-11-08 11:04   ` [PATCH v5 24/25] examples/vhost: " Jie Hai
2024-11-08 11:04   ` [PATCH v5 25/25] devtools: check for some reentrant function Jie Hai
2024-11-08 14:39   ` [PATCH v5 00/25] David Marchand
2024-11-22 11:04 ` [PATCH v6 00/25] replace strtok with strtok_r Jie Hai
2024-11-22 11:04   ` [PATCH v6 01/25] app/bbdev: replace strtok with reentrant version Jie Hai
2024-11-22 11:04   ` [PATCH v6 02/25] app/compress-perf: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 03/25] app/crypto-perf: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 04/25] app/dma-perf: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 05/25] app/flow-perf: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 06/25] app/test-mldev: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 07/25] app/test-fib: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 08/25] dmadev: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 09/25] eal: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 10/25] ethdev: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 11/25] eventdev: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 12/25] security: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 13/25] telemetry: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 14/25] bus/fslmc: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 15/25] common/cnxk: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 16/25] event/cnxk: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 17/25] net/ark: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 18/25] raw/cnxk_gpio: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 19/25] net/cnxk: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 20/25] common/qat: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 21/25] net/mlx5: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 22/25] examples/l2fwd-crypto: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 23/25] examples/vhost: " Jie Hai
2024-11-22 11:04   ` [PATCH v6 24/25] devtools: check for some reentrant function Jie Hai
2024-11-22 11:04   ` [PATCH v6 25/25] eal/linux: install rte_os_shim.h file Jie Hai
2026-01-13 17:27   ` Stephen Hemminger [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=20260113092710.5b5c95f5@phoenix.local \
    --to=stephen@networkplumber.org \
    --cc=dev@dpdk.org \
    --cc=fengchengwen@huawei.com \
    --cc=ferruh.yigit@amd.com \
    --cc=haijie1@huawei.com \
    --cc=huangdengdui@huawei.com \
    --cc=lihuisong@huawei.com \
    --cc=thomas@monjalon.net \
    /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