From: Jie Hai <haijie1@huawei.com>
To: Stephen Hemminger <stephen@networkplumber.org>,
fengchengwen <fengchengwen@huawei.com>
Cc: Ferruh Yigit <ferruh.yigit@amd.com>,
Thomas Monjalon <thomas@monjalon.net>, <dev@dpdk.org>,
Anatoly Burakov <anatoly.burakov@intel.com>,
Tyler Retzlaff <roretzla@linux.microsoft.com>,
Amit Prakash Shukla <amitprakashs@marvell.com>,
<lihuisong@huawei.com>, <huangdengdui@huawei.com>
Subject: Re: [PATCH v4 02/13] eal: replace strtok with reentrant version
Date: Thu, 7 Nov 2024 20:29:13 +0800 [thread overview]
Message-ID: <f72ff1b7-77d5-e58e-9b02-d53c9dd54aeb@huawei.com> (raw)
In-Reply-To: <20241028195112.463f4a6b@hermes.local>
Hi, Stephen Hemminger,
Thanks for your reviews.
I'll replace all strtok with strtok_r, and Cc to stable only the
necessary ones.
Best regards,
Jie Hai
On 2024/10/29 10:51, Stephen Hemminger wrote:
> On Tue, 29 Oct 2024 08:56:20 +0800
> fengchengwen <fengchengwen@huawei.com> wrote:
>
>>>>>
>>>>> This doesn't need to go to stable. parse_params is always single threaded.
>>>>
>>>> I recommend replacing all, based on:
>>>> 1\ almost at no cost.
>>>> 2\ reduce analysis costs, if don't we have to analyze the callers of strtok when you encounter it.
>>>>
>>>
>>> Yes but. The replacement should not go to stable.
>>> One of the rules of stable is that changes should be minimized, and fixes should
>>> not be accepted for things that can not ever happen with current code.
>>
>> Hope more opinion from TB members.
>
> My assumption is that DPDK operates under similar rules as the Linux kernel.
> Linux kernel rules are:
>
> Rules on what kind of patches are accepted, and which ones are not, into the “-stable” tree:
> • It or an equivalent fix must already exist in Linux mainline (upstream).
> • It must be obviously correct and tested.
> • It cannot be bigger than 100 lines, with context.
> • It must follow the Documentation/process/submitting-patches.rst rules.
> • It must either fix a real bug that bothers people or just add a device ID. To elaborate on the former:
> ◦ It fixes a problem like an oops, a hang, data corruption, a real security issue, a hardware quirk, a build error (but not for things marked CONFIG_BROKEN), or some “oh, that’s not good” issue.
> ◦ Serious issues as reported by a user of a distribution kernel may also be considered if they fix a notable performance or interactivity issue. As these fixes are not as obvious and have a higher risk of a subtle regression they should only be submitted by a distribution kernel maintainer and include an addendum linking to a bugzilla entry if it exists and additional information on the user-visible impact.
> ◦ No “This could be a problem...” type of things like a “theoretical race condition”, unless an explanation of how the bug can be exploited is also provided.
> ◦ No “trivial” fixes without benefit for users (spelling changes, whitespace cleanups, etc).
> .
next prev parent reply other threads:[~2024-11-07 12:29 UTC|newest]
Thread overview: 152+ 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 [this message]
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
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=f72ff1b7-77d5-e58e-9b02-d53c9dd54aeb@huawei.com \
--to=haijie1@huawei.com \
--cc=amitprakashs@marvell.com \
--cc=anatoly.burakov@intel.com \
--cc=dev@dpdk.org \
--cc=fengchengwen@huawei.com \
--cc=ferruh.yigit@amd.com \
--cc=huangdengdui@huawei.com \
--cc=lihuisong@huawei.com \
--cc=roretzla@linux.microsoft.com \
--cc=stephen@networkplumber.org \
--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;
as well as URLs for NNTP newsgroup(s).