On Wed, Jan 24, 2024 at 1:17 PM Morten Brørup
wrote:
> > diff --git a/lib/dmadev/rte_dmadev.c b/lib/dmadev/rte_dmadev.c
> > index 5953a77bd6..dbaa14f262 100644
> > --- a/lib/dmadev/rte_dmadev.c
> > +++ b/lib/dmadev/rte_dmadev.c
> > @@ -35,8 +35,7 @@ RTE_LOG_REGISTER_DEFAULT(rte_dma_logtype, INFO)
> From: David Marchand [mailto:david.march...@redhat.com]
> Sent: Thursday, 25 January 2024 09.14
>
> On Wed, Jan 24, 2024 at 1:17 PM Morten Brørup
> wrote:
> > > diff --git a/lib/dmadev/rte_dmadev.c b/lib/dmadev/rte_dmadev.c
> > > index 5953a77bd6..dbaa14f262 100644
> > > --- a/lib/dmadev/rte_dm
Hi,
> -Original Message-
> From: Michael Baum
> Sent: Sunday, December 3, 2023 7:25 PM
> To: dev@dpdk.org
> Cc: Matan Azrad ; Raslan Darawsheh
> ; Slava Ovsiienko ; Ori Kam
> ; Suanming Mou
> Subject: [PATCH v1 00/23] net/mlx5: support Geneve and options for HWS
>
> Add HWS support for
https://bugs.dpdk.org/show_bug.cgi?id=1369
Bug ID: 1369
Summary: net/mlx5: RX packet metadata altered/incorrect after
reception
Product: DPDK
Version: 22.11
Hardware: x86
OS: Linux
Status: UNCONF
On 1/25/2024 3:39 AM, Sivaramakrishnan Venkat wrote:
> Maintainers remove the Cc author line when merging the patch.
> So, the guidelines is updated with a suggestion for the placement
> of Cc lines in a commit message for easy merging.
>
> Signed-off-by: Sivaramakrishnan Venkat
> ---
> doc/guid
Introduce argparse library (which was inspired by the thread [1]),
compared with getopt, it makes it easy to write user-friendly
command-like program.
Note: the 2nd commit contains usage examples.
[1]
https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/
Introduce macros:
1. RTE_SHIFT_VAL64: get the uint64_t value which shifted by nr.
2. RTE_SHIFT_VAL32: get the uint32_t value which shifted by nr.
3. RTE_GENMASK64: generate a contiguous 64bit bitmask starting at bit
position low and ending at position high.
4. RTE_GENMASK32: gener
Introduce argparse library (which was inspired by the thread [1]). This
commit provides public API and doc.
[1]
https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/
Signed-off-by: Chengwen Feng
---
MAINTAINERS| 4 +
doc/api
This commit supports verify argument config.
Signed-off-by: Chengwen Feng
---
MAINTAINERS | 1 +
app/test/meson.build| 1 +
app/test/test_argparse.c| 327
lib/argparse/rte_argparse.c | 307 -
4 f
This commit supports parse parameters which described in [argc, argv].
Signed-off-by: Chengwen Feng
---
app/test/test_argparse.c| 437
lib/argparse/rte_argparse.c | 289 +++-
2 files changed, 723 insertions(+), 3 deletions(-)
diff --g
Provide API which could parsing the value from the input string based
on the value type. This API could used in user callback when parsing
string by argparse or kvargs library.
Signed-off-by: Chengwen Feng
---
app/test/test_argparse.c| 22 ++
lib/argparse/rte_argparse.c |
This commit supports parsing unsigned base type (u8/u16/u32/u64).
Signed-off-by: Chengwen Feng
---
app/test/test_argparse.c| 59 --
lib/argparse/rte_argparse.c | 116
lib/argparse/rte_argparse.h | 10 +++-
3 files changed, 179 insertions
This commit aligns help info.
Take dmafwd as an example, previous:
options:
-h, --help: show this help message and exit.
--mac-updating: Enable MAC addresses updating
--no-mac-updating: Disable MAC addresses updating
-p, --portmask: hexadecimal bitmask of ports to configure
-q, --nb-queue: n
Replace getopt with argparse.
Signed-off-by: Chengwen Feng
---
examples/dma/dmafwd.c| 269 +--
examples/dma/meson.build | 2 +-
2 files changed, 117 insertions(+), 154 deletions(-)
diff --git a/examples/dma/dmafwd.c b/examples/dma/dmafwd.c
index f27317a
Add support for matching random value using the "rte_flow_item_random"
structure.
v2:
- Rebase.
- Move release notes to the new release file.
v3:
- Fix typos in commit message and release notes.
- Update limitations.
v4:
- Fix using same value for both "MLX5_FLOW_ITEM_NSH" and
"MLX5_FLOW
From: Erez Shitrit
The HW adds a random number per each hash, this value can be used for
statistic calculation over the packets, for example by setting one bit in
the mask of that field we will get half of the traffic in the flow, and
so on with the rest of the mask.
Signed-off-by: Erez Shitrit
Add support for random item in HWS mode.
Signed-off-by: Michael Baum
Acked-by: Dariusz Sosnowski
---
doc/guides/nics/features/mlx5.ini | 1 +
doc/guides/nics/mlx5.rst | 9 +
doc/guides/rel_notes/release_24_03.rst | 1 +
drivers/net/mlx5/mlx5_flow_dv.c| 5 +
LGTM
Acked-by: Chengwen Feng
Thanks
On 2023/11/22 19:06, Gowrishankar Muthukrishnan wrote:
> Add SG copy support.
>
> Signed-off-by: Gowrishankar Muthukrishnan
> Acked-by: Anoob Joseph
> ---
> app/test-dma-perf/benchmark.c | 274 +-
> app/test-dma-perf/config.
Series-acked-by: Chengwen Feng
On 2024/1/25 7:17, Tyler Retzlaff wrote:
> Replace use of __alignof__(T) and __alignof__(e) with C11 alignof(T)
> and alignof(typeof(e)) respectively to improve portability of the code
> between toolchains.
>
> Tyler Retzlaff (9):
> ring: use C11 alignof
> mbuf
RTE_LOG() macros prefixe the log messages based on the logtype.
This results in logs like:
TMTY: TELEMETRY: Attempting socket bind to path '/run/user/...'
TMTY: TELEMETRY: Socket creation and binding ok
TMTY: TELEMETRY: Telemetry initialized ok
Remove redundancy in some libraries following their
Series-acked-by: Chengwen Feng
On 2024/1/25 6:17, Tyler Retzlaff wrote:
> Replace some missed zero length arrays not captured in the
> original series.
> https://patchwork.dpdk.org/project/dpdk/list/?series=30410&state=*
>
> Zero length arrays are a GNU extension that has been
> superseded by fl
Please doc this command in doc/guides/testpmd_app_ug/testpmd_funcs.rst
Also why not extend "show port rxq xxx" command to support txq ?
On 2024/1/24 20:18, skotesh...@marvell.com wrote:
> From: Satha Rao
>
> Fastpath API to get txq used count.
>
>testpmd> show port 0 txq 0 desc count
>
> S
Add HWS support for both GENEVE and GENEVE TLV option headers.
This patchset supports:
- Add HW support for "RTE_FLOW_ITEM_TYPE_GENEVE" flow item.
- Add HW support for "RTE_FLOW_ITEM_TYPE_GENEVE_OPT" flow item.
- Add HW support for "RTE_FLOW_FIELD_GENEVE_VNI" for modify field flow
action.
-
General object types support is indicated in bitmap general_obj_types,
which is part of HCA capabilities list.
This bitmap was read multiple times, and each time a different bit was
extracted.
Previous patch optimized the code, reading the bitmap once into a local
variable, and then extracting the
Query sample info operation might be used by either Geneve TLV option or
parse graph. Each operations can be supported regardless to another
according the configured profile.
In current implementation, the query sample info capability is turn on
only when parse graph operation is supported adding
From: Alex Vesker
Align GRE, GTPU and VXLAN tunnel protocols to fail
in case the packet is already tunneled. Also use local
defines for protocol UDP ports for better layering of
mlx5dr API.
Fixes: c55c2bf35333 ("net/mlx5/hws: add definer layer")
Fixes: 5bf14a4beb1a ("net/mlx5/hws: support matchi
The "flow_dv_translate_item_geneve_opt()" function is called twice per
flow rule, for either matcher focusing the mask or value focusing the
spec.
The spec is always provided and its field "option_len" indicates the
data size for both spec and mask. For using it, function has another
pointer "genev
GENEVE header has field named "opt_len" describing the total length of
all GENEVE options in 4-byte granularity.
In SW sreering implementation, only single option with single DW data is
supported. When matching on GENEVE option data is requested, matching on
"opt_len" field is added according to g
Add to the "system_image_guid" filed describing uniquely the physical
device into "mlx5_hca_attr" structure.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
drivers/common/mlx5/mlx5_devx_cmds.c | 10 ++
drivers/common/mlx5/mlx5_devx_cmds.h | 1 +
2 files changed, 7 insertions(+)
Add a new structure "mlx5_devx_geneve_tlv_option_attr" to use in GENEVE
TLV option creation.
Later this structure will be used by GENEVE TLV option query operation
as well.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
drivers/common/mlx5/mlx5_devx_cmds.c | 28 +
Add GENEVE TLV sample fields in 2 places:
1. New HCA capabilities indicating GENEVE TLV sample is supported.
2. New fields in "mlx5_ifc_geneve_tlv_option_bits" structure.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
drivers/common/mlx5/mlx5_devx_cmds.c | 18 --
drivers
Move "mlx5_devx_cmd_match_sample_info_query()" function to use
"DEVX_DRV_LOG" in case of "devx_general_cmd" failure.
This macro contains syndrome report and used by all other function
calling "devx_general_cmd".
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
drivers/common/mlx5/mlx5_dev
This patch adds the GENEVE option sample ID into HCA attribute
structure.
This sample ID is used as the input of
"mlx5_devx_cmd_match_sample_info_query" function when flex parser
profile is 0.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
drivers/common/mlx5/mlx5_devx_cmds.c | 2 ++
dr
Add a new function to query information about GENEVE TLV option parser.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
drivers/common/mlx5/mlx5_devx_cmds.c | 50
drivers/common/mlx5/mlx5_devx_cmds.h | 6
drivers/common/mlx5/mlx5_prm.h | 5 +++
d
Add structure describing physical device, and manage physical device
global list.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
drivers/net/mlx5/mlx5.c | 77 -
drivers/net/mlx5/mlx5.h | 13 +++
2 files changed, 82 insertions(+), 8 deletions(-
Add a new API to expose GENEVE option FW information to DR layer.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
drivers/net/mlx5/mlx5_flow.h| 28 +
drivers/net/mlx5/mlx5_flow_geneve.c | 94 +
2 files changed, 122 insertions(+)
diff --git a/d
Add GENEVE TLV parser support for mlx5 testpmd using following commands:
1. Add single option to the global option list:
testpmd> mlx5 set tlv_option class (class) type (type) len (length) \
offset (sample_offset) sample_len (sample_len) \
class_mode (ignore|fixed|match
From: Alex Vesker
In some cases we rely on header layout DW offset from FW caps,
this is done in case of future HW which may support current
flex fields natively, for this we must increase header layout to
255 DWs, which is the limit in current definer creation.
Signed-off-by: Alex Vesker
Acked
Add a new private API to create/destroy parser for GENEVE TLV options.
Signed-off-by: Michael Baum
Signed-off-by: Viacheslav Ovsiienko
Acked-by: Suanming Mou
---
doc/guides/nics/mlx5.rst| 122 ++
doc/guides/platform/mlx5.rst| 6 +-
drivers/net/mlx5/meson.build
From: Alex Vesker
Add matching for GENEVE tunnel header.
Signed-off-by: Alex Vesker
Acked-by: Suanming Mou
---
drivers/net/mlx5/hws/mlx5dr_definer.c | 91 +++
drivers/net/mlx5/hws/mlx5dr_definer.h | 19 ++
2 files changed, 110 insertions(+)
diff --git a/drivers/ne
Add support for HWS GENEVE options for flex parser profile 0 and group
0.
This patch avoids parser creation during matcher/flow preparation for HW
steering (MLX5_SET_MATCHER_HS) and removes some logic done in
"flow_dev_geneve_tlv_option_resource_*()" functions when dv_flow_en=2.
After this change
Add support for GENEVE VNI field modification.
The support is only using HW steering.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
doc/guides/nics/mlx5.rst | 6 +-
doc/guides/rel_notes/release_24_03.rst | 1 +
drivers/net/mlx5/mlx5_flow_dv.c| 4 +---
drive
From: Alex Vesker
Add support for matching multiple GENEVE options. Options
header introduces new complexities since there can be more
than one GENEVE option. This requires us to track the total
DWs used for matching. Current code supports 8DWs for data
including type, class, length. There is als
Add support for matching and modifying GENEVE option for
FLEX_PARSER_PROFILE_ENABLE=0.
Before this patch it is supported when FLEX_PARSER_PROFILE_ENABLE=8 in
HW steering and when FLEX_PARSER_PROFILE_ENABLE=0 in SW steering.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
doc/guides/nics/
Add HW steering support for both "RTE_FLOW_ITEM_TYPE_GENEVE" and
"RTE_FLOW_ITEM_TYPE_GENEVE_OPT".
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
doc/guides/nics/mlx5.rst | 15 ++-
doc/guides/rel_notes/release_24_03.rst | 5 +
drivers/net/mlx5/mlx5_flow.h | 21
Add support for GENEVE option fields modification.
Only fields configured in parser creation can be modified.
Signed-off-by: Michael Baum
Acked-by: Suanming Mou
---
doc/guides/nics/mlx5.rst | 4 +
doc/guides/rel_notes/release_24_03.rst | 3 +
drivers/net/mlx5/mlx5_flow.h
[AMD Official Use Only - General]
On an Ubuntu systems I ran
apt-get install dpdk
I still could not get to any of the dpdk tools for example dpdk-devbind.
What did I do wrong.
Sincerely,
John Hare
Hi Kaiwenx
I came across the below DPDK iavf error message during the initialization
of X710 NICs in ESX. It seems the functionality works fine, but with below
error messages.
DPDK Version: 22.11.2
2023-12-08T09:58:00.901 |9322| MSG [NET] dpdk_port_configure:1717
Configure port eth3/1. lsc_
Address Sanitizer detects a buffer overflow caused by an incorrect
ptypes list. Missing "RTE_PTYPE_UNKNOWN" ptype causes buffer overflow.
Fix the ptypes list for drivers.
Fixes: 0849ac3b6122 ("net/tap: add packet type management")
Fixes: a7bdc3bd4244 ("net/dpaa: support packet type parsing")
Fixes
Missing "RTE_PTYPE_UNKNOWN" ptype causes buffer overflow.
Enhance code such that the dev_supported_ptypes_get()
function pointer now returns the number of elements to
eliminate the need for "RTE_PTYPE_UNKNOWN" as the last item.
Signed-off-by: Sivaramakrishnan Venkat
---
v6:
- missed driv
Release status meeting minutes 2024-01-25
=
Agenda:
* Release Dates
* Subtrees
* Roadmaps
* LTS
* Defects
* Opens
Participants:
* AMD
* Intel
* Marvell
* Nvidia [No]
* Red Hat
Release Dates
-
The following are the current working dates for 24.
https://bugs.dpdk.org/show_bug.cgi?id=1370
Bug ID: 1370
Summary: DTS: configure hugepage size as well as quantity
Product: DPDK
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: norm
ping.
Please review this thread if you have time, the main point of discussion
I would like to receive consensus on the following questions.
1. Should we continue to expand common alignments behind an __rte_macro
i.e. what do we prefer to appear in code
alignas(RTE_CACHE_LINE_MIN_SIZE)
-
ping for Windows maintainers
thanks!
On Mon, Jan 08, 2024 at 03:38:09PM -0800, Tyler Retzlaff wrote:
> When EAL is built with MSVC it is possible to dynamically load plugins
> on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC
> and provide code to load plugins on Windows.
>
Why do rte_stdatomic.h functions have the suffix "_explicit"? Especially
since there aren't any wrappers for the implicit variants.
More to type, more to read.
When was this API introduced? Shouldn't it say "experimental" somewhere?
Hi.
When DPDK is built configured with b_lto=true, it seems like
-fno-semantic-interposition is not passed to GCC.
Is this intentional?
Not providing this flag prevents most cross-unit optimizations for
shared objects.
Best regards,
Mattias
Add two new per-service counters.
RTE_SERVICE_ATTR_IDLE_CALL_COUNT tracks the number of service function
invocations where no work was performed.
RTE_SERVICE_ATTR_ERROR_CALL_COUNT tracks the number invocations
resulting in an error.
The semantics of RTE_SERVICE_ATTR_CALL_COUNT remains the same (
https://bugs.dpdk.org/show_bug.cgi?id=1371
Bug ID: 1371
Summary: Add function to start "simple" testpmd with default
params for DTS
Product: DPDK
Version: unspecified
Hardware: All
OS: All
Status
https://bugs.dpdk.org/show_bug.cgi?id=1372
Bug ID: 1372
Summary: Add function for packing packet payload with a generic
payload.
Product: DPDK
Version: unspecified
Hardware: All
OS: All
Status: U
https://bugs.dpdk.org/show_bug.cgi?id=1373
Bug ID: 1373
Summary: Make docstrings less verbose, or reduce repeats
Product: DPDK
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: norma
https://bugs.dpdk.org/show_bug.cgi?id=1374
Bug ID: 1374
Summary: Stop using xmlrpc server for handling scapy on the TG,
move to sending scapy commands via a remote shell.
Product: DPDK
Version: unspecified
Hardware: All
https://bugs.dpdk.org/show_bug.cgi?id=1375
Bug ID: 1375
Summary: Make limited use of "per testsuite" conf files.
Product: DPDK
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: norma
Hi Venkat,
> -Original Message-
> From: Sivaramakrishnan, VenkatX
> Sent: Friday, January 19, 2024 11:40 AM
> To: Ji, Kai ; De Lara Guarch, Pablo
>
> Cc: dev@dpdk.org; Sivaramakrishnan, VenkatX
>
> Subject: [PATCH v1] crypto/ipsec_mb: upgrade IPsec Multi-buffer to 1.4
Could you change
2024-01-08 15:38 (UTC-0800), Tyler Retzlaff:
> Include winapifamily.h for WINAPI_FAMILY macro and provide a definition
> of WINAPI_FAMILY_PHONE_APP if not present (happens compiling under
> mingw)
Given this explanation, I think the subject should be:
eal/windows: make dirent.h shim compa
> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se]
> Sent: Thursday, 25 January 2024 19.54
>
> Why do rte_stdatomic.h functions have the suffix "_explicit"?
> Especially
> since there aren't any wrappers for the implicit variants.
>
> More to type, more to read.
They have the "_explicit" su
On Thu, Jan 25, 2024 at 11:10:47PM +0100, Morten Brørup wrote:
> > From: Mattias Rönnblom [mailto:hof...@lysator.liu.se]
> > Sent: Thursday, 25 January 2024 19.54
> >
> > Why do rte_stdatomic.h functions have the suffix "_explicit"?
> > Especially
> > since there aren't any wrappers for the implic
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com]
> Sent: Thursday, 25 January 2024 19.37
>
> ping.
>
> Please review this thread if you have time, the main point of
> discussion
> I would like to receive consensus on the following questions.
>
> 1. Should we continue to expand common
2024-01-08 15:38 (UTC-0800), Tyler Retzlaff:
> When EAL is built with MSVC it is possible to dynamically load plugins
> on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC
> and provide code to load plugins on Windows.
Windows implementation does not check directory permissions
> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com]
> Sent: Thursday, 25 January 2024 20.15
>
> Add two new per-service counters.
>
> RTE_SERVICE_ATTR_IDLE_CALL_COUNT tracks the number of service function
> invocations where no work was performed.
>
> RTE_SERVICE_ATTR_ERROR_CALL_COUN
On Thu, Jan 25, 2024 at 11:53:04PM +0100, Morten Brørup wrote:
> > From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com]
> > Sent: Thursday, 25 January 2024 19.37
> >
> > ping.
> >
> > Please review this thread if you have time, the main point of
> > discussion
> > I would like to receive co
> Subject: Re: [PATCH] net/mana: use rte_pktmbuf_alloc_bulk for allocating RX
> WQEs
>
> On Wed, 24 Jan 2024 18:42:42 -0800
> lon...@linuxonhyperv.com wrote:
>
> > + struct rte_mbuf **mbufs;
> > +
> > + mbufs = rte_calloc("mana_rx_mbufs", count, sizeof(struct rte_mbuf *),
> > 0);
> > + if
https://bugs.dpdk.org/show_bug.cgi?id=1327
Jiale Song (songx.ji...@intel.com) changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNC
>
> On Thu, Jan 25, 2024 at 11:10:47PM +0100, Morten Br�rup wrote:
> > > From: Mattias R�nnblom [mailto:hof...@lysator.liu.se]
> > > Sent: Thursday, 25 January 2024 19.54
> > >
> > > Why do rte_stdatomic.h functions have the suffix "_explicit"?
> > > Especially
> > > since there aren't any w
On multi-process scenario, each process creates flows based on the
number of queues. When nbcore is greater than 1, multiple cores may
use the same queue to forward packet, like:
dpdk-testpmd -a BDF --proc-type=auto -- -i --rxq=4 --txq=4
--nb-cores=2 --num-procs=2 --proc-id=0
testpmd> start
mac pac
Introduce macros:
1. RTE_SHIFT_VAL64: get the uint64_t value which shifted by nr.
2. RTE_SHIFT_VAL32: get the uint32_t value which shifted by nr.
3. RTE_GENMASK64: generate a contiguous 64bit bitmask starting at bit
position low and ending at position high.
4. RTE_GENMASK32: gener
Introduce argparse library (which was inspired by the thread [1]),
compared with getopt, it makes it easy to write user-friendly
command-like program.
Note: the 2nd commit contains usage examples.
[1]
https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/
Provide API which could parsing the value from the input string based
on the value type. This API could used in user callback when parsing
string by argparse or kvargs library.
Signed-off-by: Chengwen Feng
---
app/test/test_argparse.c| 22 ++
lib/argparse/rte_argparse.c |
This commit supports parse parameters which described in [argc, argv].
Signed-off-by: Chengwen Feng
---
app/test/test_argparse.c| 437
lib/argparse/rte_argparse.c | 295 +++-
2 files changed, 729 insertions(+), 3 deletions(-)
diff --g
Introduce argparse library (which was inspired by the thread [1]). This
commit provides public API and doc.
[1]
https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/
Signed-off-by: Chengwen Feng
---
MAINTAINERS| 4 +
doc/api
This commit aligns help info.
Take dmafwd as an example, previous:
options:
-h, --help: show this help message and exit.
--mac-updating: Enable MAC addresses updating
--no-mac-updating: Disable MAC addresses updating
-p, --portmask: hexadecimal bitmask of ports to configure
-q, --nb-queue: n
This commit supports verify argument config.
Signed-off-by: Chengwen Feng
---
MAINTAINERS | 1 +
app/test/meson.build| 1 +
app/test/test_argparse.c| 345
lib/argparse/rte_argparse.c | 307 +++-
4 fi
Replace getopt with argparse.
Signed-off-by: Chengwen Feng
---
examples/dma/dmafwd.c| 269 +--
examples/dma/meson.build | 2 +-
2 files changed, 117 insertions(+), 154 deletions(-)
diff --git a/examples/dma/dmafwd.c b/examples/dma/dmafwd.c
index f27317a
This commit supports parsing unsigned base type (u8/u16/u32/u64).
Signed-off-by: Chengwen Feng
---
app/test/test_argparse.c| 63 ++--
lib/argparse/rte_argparse.c | 116
lib/argparse/rte_argparse.h | 10 +++-
3 files changed, 183 insertio
Hi Dengdui,
On 2024/1/26 10:41, Dengdui Huang wrote:
> On multi-process scenario, each process creates flows based on the
> number of queues. When nbcore is greater than 1, multiple cores may
> use the same queue to forward packet, like:
> dpdk-testpmd -a BDF --proc-type=auto -- -i --rxq=4 --txq=4
84 matches
Mail list logo