From: fengchengwen <fengchengwen@huawei.com>
To: Bruce Richardson <bruce.richardson@intel.com>
Cc: <thomas@monjalon.net>, <kevin.laatz@intel.com>, <dev@dpdk.org>
Subject: Re: [PATCH 4/4] examples/dma: add minimal copy size parameter
Date: Mon, 11 Apr 2022 20:23:27 +0800 [thread overview]
Message-ID: <e4435126-a44b-797f-476e-6abd945b8a06@huawei.com> (raw)
In-Reply-To: <YlP0asy0Z4bGHuQd@bricha3-MOBL.ger.corp.intel.com>
Hi Bruce, already fix in v2, Thanks.
On 2022/4/11 17:27, Bruce Richardson wrote:
> On Mon, Apr 11, 2022 at 10:56:34AM +0800, Chengwen Feng wrote:
>> This patch adds minimal copy size parameter(-m/--min-copy-size), so
>> when do copy by CPU or DMA, the real copy size will be the maximum of
>> mbuf's data_len and this parameter.
>>
>> This parameter was designed to compare the performance between CPU copy
>> and DMA copy. User could send small packets with a high rate to drive
>> the performance test.
>>
>> Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
>
> Hi,
>
> few comments inline below.
>
> /Bruce
>
>> ---
>> examples/dma/dmafwd.c | 27 ++++++++++++++++++++++++---
>> 1 file changed, 24 insertions(+), 3 deletions(-)
>>
>> diff --git a/examples/dma/dmafwd.c b/examples/dma/dmafwd.c
>> index 6b1b777cb8..83094ba378 100644
>> --- a/examples/dma/dmafwd.c
>> +++ b/examples/dma/dmafwd.c
>> @@ -25,6 +25,7 @@
>> #define CMD_LINE_OPT_RING_SIZE "ring-size"
>> #define CMD_LINE_OPT_BATCH_SIZE "dma-batch-size"
>> #define CMD_LINE_OPT_FRAME_SIZE "max-frame-size"
>> +#define CMD_LINE_OPT_COPY_SIZE "min-copy-size"
>
> While I'm not sure this strictly belongs in an example app to show use of
> dmadev, I can see the value of it. However, I suggest we need to make it
> clearer that it's not directly relevant to the normal use of the app. I
> suggest making the parameter "force-min-copy-size" to make it clearer that
> it's an explicit override.
>
>> #define CMD_LINE_OPT_STATS_INTERVAL "stats-interval"
>>
>> /* configurable number of RX/TX ring descriptors */
>> @@ -119,6 +120,7 @@ static volatile bool force_quit;
>>
>> static uint32_t dma_batch_sz = MAX_PKT_BURST;
>> static uint32_t max_frame_size;
...
>> @@ -576,6 +585,7 @@ dma_usage(const char *prgname)
>> printf("%s [EAL options] -- -p PORTMASK [-q NQ]\n"
>> " -b --dma-batch-size: number of requests per DMA batch\n"
>> " -f --max-frame-size: max frame size\n"
>> + " -m --min-copy-size: minimum copy length\n"
>
> The help text needs to be expanded, again to make clear that this is for
> perf comparison and the like. Something like "Force a minimum copy length,
> even for smaller packets"
>
>
> .
>
next prev parent reply other threads:[~2022-04-11 12:23 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-11 2:56 [PATCH 0/4] bugfix and enhance features for DMA example Chengwen Feng
2022-04-11 2:56 ` [PATCH 1/4] examples/dma: fix MTU configuration Chengwen Feng
2022-04-11 2:56 ` [PATCH 2/4] examples/dma: fix Tx drop statistic is not collected Chengwen Feng
2022-04-11 2:56 ` [PATCH 3/4] examples/dma: support enqueue drop statistic Chengwen Feng
2022-04-11 2:56 ` [PATCH 4/4] examples/dma: add minimal copy size parameter Chengwen Feng
2022-04-11 9:27 ` Bruce Richardson
2022-04-11 12:23 ` fengchengwen [this message]
2022-04-11 12:14 ` [PATCH v2 0/4] bugfix and enhance features for DMA example Chengwen Feng
2022-04-11 12:14 ` [PATCH v2 1/4] examples/dma: fix MTU configuration Chengwen Feng
2022-04-11 12:14 ` [PATCH v2 2/4] examples/dma: fix Tx drop statistic is not collected Chengwen Feng
2022-04-13 14:57 ` Bruce Richardson
2022-04-11 12:14 ` [PATCH v2 3/4] examples/dma: support enqueue drop statistic Chengwen Feng
2022-04-13 15:01 ` Bruce Richardson
2022-04-16 6:19 ` fengchengwen
2022-04-19 8:45 ` Bruce Richardson
2022-04-19 12:09 ` fengchengwen
2022-04-24 3:55 ` fengchengwen
2022-04-11 12:14 ` [PATCH v2 4/4] examples/dma: add force minimal copy size parameter Chengwen Feng
2022-04-13 15:04 ` Bruce Richardson
2022-04-24 6:07 ` [PATCH v3 0/3] bugfix and enhance features for DMA example Chengwen Feng
2022-04-24 6:07 ` [PATCH v3 1/3] examples/dma: fix MTU configuration Chengwen Feng
2022-05-11 2:26 ` fengchengwen
2022-04-24 6:07 ` [PATCH v3 2/3] examples/dma: fix Tx drop statistic is not collected Chengwen Feng
2022-04-27 10:54 ` Kevin Laatz
2022-04-24 6:07 ` [PATCH v3 3/3] examples/dma: add force minimal copy size parameter Chengwen Feng
2022-04-27 10:54 ` Kevin Laatz
2022-06-06 21:35 ` [PATCH v3 0/3] bugfix and enhance features for DMA example Thomas Monjalon
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=e4435126-a44b-797f-476e-6abd945b8a06@huawei.com \
--to=fengchengwen@huawei.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
--cc=kevin.laatz@intel.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;
as well as URLs for NNTP newsgroup(s).