Re: [PATCH v2] build: add missing arch define for Arm

2022-01-19 Thread Thomas Monjalon
17/01/2022 08:15, Ruifeng Wang: > --- a/config/arm/meson.build > +++ b/config/arm/meson.build > @@ -49,6 +49,7 @@ implementer_generic = { > ['RTE_ARCH_ARM_NEON_MEMCPY', false], > ['RTE_ARCH_STRICT_ALIGN', true], > ['RTE_ARCH_ARMv8_AARCH32', true],

Re: [PATCH 2/2] net/cnxk: ethdev Rx/Tx queue status callbacks

2022-01-19 Thread Jerin Jacob
On Fri, Dec 3, 2021 at 10:06 PM Rahul Bhansali wrote: > > Provides ethdev callback support of rx_queue_count, > rx_descriptor_status and tx_descriptor_status. > > Signed-off-by: Rahul Bhansali Missed to update doc/guides/nics/features/cnxk* for "Rx descriptor status" and "Tx descriptor status".

[PATCH v2] net/bonding: fix RSS not work for bonding

2022-01-19 Thread Yu Wenjun
RSS don't work when bond_ethdev_configure called before rte_eth_bond_slave_add. e.g.: dont't work(examples/bond/main.c): rte_eth_bond_create() rte_eth_dev_configure() rte_eth_bond_slave_add() rte_eth_dev_start() work(testpmd): rte_eth_bond_create() rte_eth_bond_slave_add() rte_eth_dev_configure()

RE: [PATCH v1 2/6] net/axgbe: toggle PLL settings during rate change

2022-01-19 Thread Namburu, Chandu-babu
[Public] For series, Acked-by: Chandubabu Namburu -Original Message- From: sseba...@amd.com Sent: Monday, January 10, 2022 5:05 PM To: dev@dpdk.org Subject: [PATCH v1 2/6] net/axgbe: toggle PLL settings during rate change From: Selwin Sebastian For each rate change command submissio

[PATCH v2 1/2] common/cnxk: get head-tail of Rx and Tx queues

2022-01-19 Thread Rahul Bhansali
Adds roc APIs roc_nix_cq_head_tail_get, roc_nix_sq_head_tail_get to get head-tail of receive and transmit queue respectively. Signed-off-by: Rahul Bhansali --- v2 changes: - No change drivers/common/cnxk/roc_nix.h | 4 +++ drivers/common/cnxk/roc_nix_queue.c | 53 +++

[PATCH v2 2/2] net/cnxk: ethdev Rx/Tx queue status callbacks

2022-01-19 Thread Rahul Bhansali
Provides ethdev callback support of rx_queue_count, rx_descriptor_status and tx_descriptor_status. Signed-off-by: Rahul Bhansali --- v2 changes: - Updated doc/guides/nics/features/cnxk* for "Rx descriptor status" and "Tx descriptor status" doc/guides/nics/features/cnxk.ini | 2 + doc/g

RE: [PATCH] build: add missing arch define for Arm

2022-01-19 Thread Ruifeng Wang
> -Original Message- > From: Juraj Linkeš > Sent: Monday, January 17, 2022 9:12 PM > To: Ruifeng Wang ; tho...@monjalon.net > Cc: dev@dpdk.org; sta...@dpdk.org; vikto...@rehivetech.com; > bruce.richard...@intel.com; step...@networkplumber.org; Honnappa > Nagarahalli ; nd ; nd > > Subject:

RE: [PATCH v2] build: add missing arch define for Arm

2022-01-19 Thread Ruifeng Wang
> -Original Message- > From: Thomas Monjalon > Sent: Wednesday, January 19, 2022 5:01 PM > To: Ruifeng Wang > Cc: dev@dpdk.org; sta...@dpdk.org; vikto...@rehivetech.com; > bruce.richard...@intel.com; step...@networkplumber.org; > juraj.lin...@pantheon.tech; Honnappa Nagarahalli > ; nd ; s

Re: [RFC 1/3] ethdev: support GRE optional fields

2022-01-19 Thread Ferruh Yigit
On 12/30/2021 3:08 AM, Sean Zhang wrote: Add flow pattern items and header format for matching optional fields (checksum/key/sequence) in GRE header. And the flags in gre item should be correspondingly set with the new added items. Signed-off-by: Sean Zhang --- doc/guides/prog_guide/rte_flow.

Re: [RFC 1/3] ethdev: support GRE optional fields

2022-01-19 Thread Thomas Monjalon
19/01/2022 10:53, Ferruh Yigit: > On 12/30/2021 3:08 AM, Sean Zhang wrote: > > --- a/lib/ethdev/rte_flow.h > > +++ b/lib/ethdev/rte_flow.h > > /** > > + * RTE_FLOW_ITEM_TYPE_GRE_OPTION. > > + * > > + * Matches GRE optional fields in header. > > + */ > > +struct rte_gre_hdr_option { > > + rte_be

Re: [PATCH v5 1/2] eal: add API for bus close

2022-01-19 Thread Thomas Monjalon
Hi, 10/01/2022 06:26, rohit@nxp.com: > From: Rohit Raj > > As per the current code we have API for bus probe, but the > bus close API is missing. This breaks the multi process > scenarios as objects are not cleaned while terminating the > secondary processes. > > This patch adds a new API r

RE: [PATCH v1] raw/ifpga: fix pthread cannot join

2022-01-19 Thread Xu, Rosen
Hi Wei, Some ci/iol-intel-Functional issues, pls check. Thanks a lot. > -Original Message- > From: Huang, Wei > Sent: Wednesday, January 19, 2022 13:54 > To: dev@dpdk.org; Xu, Rosen ; Zhang, Qi Z > > Cc: sta...@dpdk.org; Zhang, Tianfei ; Yigit, Ferruh > > Subject: [PATCH v1] raw/ifpga:

RE: [PATCH v1] raw/ifpga/base: fix SPI transaction

2022-01-19 Thread Xu, Rosen
Hi, > -Original Message- > From: Huang, Wei > Sent: Wednesday, January 19, 2022 9:45 > To: dev@dpdk.org; Xu, Rosen ; Zhang, Qi Z > > Cc: sta...@dpdk.org; Zhang, Tianfei ; Yigit, Ferruh > > Subject: [PATCH v1] raw/ifpga/base: fix SPI transaction > > From: Tianfei Zhang > > When EOP is

[PATCH] net/cnxk: resolve mbuf data length update issue

2022-01-19 Thread Rahul Bhansali
If multi-segment is enabled and single segment/packet is received, then mbuf data_len is not updated in cn9k_nix_cqe_to_mbuf function. Also, in case of timestamp is enabled, mbuf data_len and pkt_len will be updated for all packets including multi segmented packets. Signed-off-by: Rahul Bhansali

Re: [PATCH v2 1/2] common/cnxk: get head-tail of Rx and Tx queues

2022-01-19 Thread Ray Kinsella
Rahul Bhansali writes: > Adds roc APIs roc_nix_cq_head_tail_get, roc_nix_sq_head_tail_get > to get head-tail of receive and transmit queue respectively. > > Signed-off-by: Rahul Bhansali > --- > v2 changes: > - No change > > drivers/common/cnxk/roc_nix.h | 4 +++ > drivers/common/cnxk

RE: [RFC 1/3] ethdev: support GRE optional fields

2022-01-19 Thread Ori Kam
Hi, > -Original Message- > From: Thomas Monjalon > Subject: Re: [RFC 1/3] ethdev: support GRE optional fields > > 19/01/2022 10:53, Ferruh Yigit: > > On 12/30/2021 3:08 AM, Sean Zhang wrote: > > > --- a/lib/ethdev/rte_flow.h > > > +++ b/lib/ethdev/rte_flow.h > > > /** > > > + * RTE_FLO

[PATCH] mempool: test performance with constant n

2022-01-19 Thread Morten Brørup
"What gets measured gets done." This patch adds mempool performance tests where the number of objects to put and get is constant at compile time, which may significantly improve the performance of these functions. [*] Also, it is ensured that the array holding the object used for testing is cache

[dpdk-dev] [PATCH] net/nfp: free HW rings memzone on queue release

2022-01-19 Thread heinrich . kuhn
From: Heinrich Kuhn During rx/tx queue setup, memory is reserved for the hardware rings. This memory zone should subsequently be freed in the queue release logic. This commit also adds a call to the release logic in the dev_close() callback so that the ring memzone may be freed during port close

Re: [PATCH] common/cnxk: enable lmtst burst for batch free

2022-01-19 Thread Jerin Jacob
On Sat, Dec 4, 2021 at 4:02 PM Ashwin Sekhar T K wrote: > > Use lmtst burst when more than 15 pointers is requested > to be freed. > > Signed-off-by: Ashwin Sekhar T K Acked-by: Jerin Jacob Applied to dpdk-next-net-mrvl/for-next-net. Thanks Changed the commit as: common/cnxk: enable LMTST

[Bug 921] meson build warnings with 0.61.1

2022-01-19 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=921 Bug ID: 921 Summary: meson build warnings with 0.61.1 Product: DPDK Version: 21.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal Priority: N

[PATCH v1] doc: fix KNI PMD name typo

2022-01-19 Thread Haiyue Wang
The KNI PMD name should be "net_kni". Fixes: 75e2bc54c018 ("net/kni: add KNI PMD") Cc: sta...@dpdk.org Signed-off-by: Haiyue Wang --- doc/guides/nics/kni.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/kni.rst b/doc/guides/nics/kni.rst index 37c5411a32..2

Re: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints

2022-01-19 Thread Ivan Malov
Hi, +Rules management configuration +-- + +Configure flow rules management. It is either "management OF ruleS" or "rule management". Perhaps fix similar occurrences across the series. + /** +* Number of counter actions pre-configured. +* If s

[PATCH v1] gpu/cuda: add NVIDIA GPU A100 identifier for DPU

2022-01-19 Thread eagostini
From: Elena Agostini Adding a new NVIDIA GPU identifier to let driver recognize the A100 on a DPU card. Signed-off-by: Elena Agostini --- drivers/gpu/cuda/cuda.c | 5 + 1 file changed, 5 insertions(+) diff --git a/drivers/gpu/cuda/cuda.c b/drivers/gpu/cuda/cuda.c index 882df08e56..c295e7c

Re: [PATCH 01/12] net: add string to IPv4 parse function

2022-01-19 Thread Thomas Monjalon
14/12/2021 15:12, Ronan Randles: > --- a/lib/net/rte_ip.h > +++ b/lib/net/rte_ip.h > +/** > + * IP address parser. > + * > + * @param src_ip > + * The IP address to be parsed. > + * @param output_addr > + * The array in which the parsed digits will be saved. > + * > + * @retval 0 > + * Succes

Re: [PATCH 02/12] net: add function to pretty print IPv4

2022-01-19 Thread Thomas Monjalon
15/12/2021 14:06, Ananyev, Konstantin: > > > > From: Stephen Hemminger [mailto:step...@networkplumber.org] > > > Sent: Wednesday, 15 December 2021 04.21 > > > > > > On Wed, 15 Dec 2021 01:06:14 + > > > "Ananyev, Konstantin" wrote: > > > > > > --- a/lib/net/rte_ip.h > > > > > > +++ b/lib/net/r

mellanox connect x 5 drops when cache full

2022-01-19 Thread Yaron Illouz
Hi I am using multiqueue with RSS to read from MT27800 Family [ConnectX-5] 1017 My application receive traffic, and write some data to disk. As a result I/O write is cached in linux memory. When the server memory is completely cache ( I know it is still available) I start seeing drops at nic. I

RE: [PATCH 02/12] net: add function to pretty print IPv4

2022-01-19 Thread Van Haaren, Harry
> -Original Message- > From: Thomas Monjalon > Sent: Wednesday, January 19, 2022 2:24 PM > To: Morten Brørup ; Stephen Hemminger > ; Randles, Ronan ; > Van Haaren, Harry ; Ananyev, Konstantin > > Cc: dev@dpdk.org > Subject: Re: [PATCH 02/12] net: add function to pretty print IPv4 > > 15/

[PATCH] bus/pci: assign driver's pointer before mapping

2022-01-19 Thread Michal Krawczyk
Patch changing the way of accessing interrupt handle also changed order of the rte_pci_map_device() call and rte_pci_device:driver assignment. It was causing issues with Write Combine mapping on the Linux platform if it was used with the igb_uio module. Linux implementation of pci_uio_map_resource

[PATCH v2] mempool: fix put objects to mempool with cache

2022-01-19 Thread Morten Brørup
This patch optimizes the rte_mempool_do_generic_put() caching algorithm, and fixes a bug in it. The existing algorithm was: 1. Add the objects to the cache 2. Anything greater than the cache size (if it crosses the cache flush threshold) is flushed to the ring. Please note that the descript

Re: [PATCH 05/12] gen: add raw packet data API and tests

2022-01-19 Thread Thomas Monjalon
20/12/2021 11:21, Van Haaren, Harry: > From: Thomas Monjalon > > 17/12/2021 12:40, Van Haaren, Harry: > > > I could ramble on a bit more, but mostly diminishing returns I think... > > > I'll just use this email as a reply to Thomas' tweet; > > > https://twitter.com/tmonjalo/status/1337313985662771

[PATCH v3] mempool: fix put objects to mempool with cache

2022-01-19 Thread Morten Brørup
mempool: fix put objects to mempool with cache This patch optimizes the rte_mempool_do_generic_put() caching algorithm, and fixes a bug in it. The existing algorithm was: 1. Add the objects to the cache 2. Anything greater than the cache size (if it crosses the cache flush threshold) is flu

Re: [PATCH v2 02/10] ethdev: add flow item/action templates

2022-01-19 Thread Ivan Malov
Hi, +Oftentimes in an application, many flow rules share a common structure +(the same pattern and/or action list) so they can be grouped and classified +together. This knowledge may be used as a source of optimization by a PMD/HW. +The flow rule creation is done by selecting a table, an it

Re: [PATCH 1/1] mempool: implement index-based per core cache

2022-01-19 Thread Dharmik Thakkar
Hi Konstatin, > On Jan 13, 2022, at 4:37 AM, Ananyev, Konstantin > wrote: > > > Hi Dharmik, > >>> Current mempool per core cache implementation stores pointers to mbufs On 64b architectures, each pointer consumes 8B This patch replaces it with index-based implementation,

Re: [PATCH 1/8] common/cnxk: fix shift offset for tl3 length disable

2022-01-19 Thread Jerin Jacob
On Thu, Dec 9, 2021 at 2:43 PM Nithin Dabilpuram wrote: > > Fix shift offset for length disable flag in NIXX_AF_TL3X_SHAPE > register to be 24 instead of zero similar to other level SHAPE > registers. Also mask unused bits in adjust value. > > Fixes: 0885429c3028 ("common/cnxk: add NIX TM hierarch

Re: [PATCH 2/8] common/cnxk: use for loop in shaper profiles cleanup

2022-01-19 Thread Jerin Jacob
On Thu, Dec 9, 2021 at 2:44 PM Nithin Dabilpuram wrote: > > From: Gowrishankar Muthukrishnan > > In shaper profiles cleanup, KW reports infinite loop although existing > loop condition is alright. False positive may be due to tqh_first not > checked in loop, hence switching to FOREACH_SAFE to mak

Re: [PATCH 3/8] common/cnxk: change order of frag sizes and infos

2022-01-19 Thread Jerin Jacob
On Thu, Dec 9, 2021 at 2:44 PM Nithin Dabilpuram wrote: > > Change the order of frag sizes and infos to match HW > implementation. > > Signed-off-by: Nithin Dabilpuram > Signed-off-by: Vidya Sagar Velumuri Since it a fix, change git log following and Applied to dpdk-next-net-mrvl/for-next-net.

Re: [PATCH 4/8] common/cnxk: reset stale values on error debug registers

2022-01-19 Thread Jerin Jacob
On Thu, Dec 9, 2021 at 2:44 PM Nithin Dabilpuram wrote: > > From: Harman Kalra > > LF's error debug registers like NIX_LF_SQ_OP_ERR_DBG, > NIX_LF_MNQ_ERR_DBG, NIX_LF_SEND_ERR_DBG captures debug > info for an error detected during LMT operation or meta > enqueue or after meta enqueue granted respe

Re: [PATCH 5/8] common/cnxk: always use single qint with NIX

2022-01-19 Thread Jerin Jacob
On Thu, Dec 9, 2021 at 2:44 PM Nithin Dabilpuram wrote: > > From: Harman Kalra > > An errata exists whereby, in certain cases NIX may use an > incorrect QINT_IDX for SQ interrupts. As a result, the > interrupt may not be delivered to software, or may not be > associated with the correct SQ. > Whe

Re: [PATCH 6/8] common/cnxk: handle issues from static analysis

2022-01-19 Thread Jerin Jacob
On Thu, Dec 9, 2021 at 2:44 PM Nithin Dabilpuram wrote: > > From: Gowrishankar Muthukrishnan > > Handle issues reported by static analysis tool such as > null pointer dereferences, variable initialization, etc. > > Signed-off-by: Gowrishankar Muthukrishnan > Signed-off-by: Nithin Dabilpuram Ac

Re: [PATCH 8/8] net/cnxk: synchronize inline session create and destroy

2022-01-19 Thread Jerin Jacob
On Thu, Dec 9, 2021 at 2:44 PM Nithin Dabilpuram wrote: > > Synchronize inline session create and destroy using spinlock. > Also move security related error prints outside the spinlock. > > Signed-off-by: Nithin Dabilpuram Fixed the following issue CHECK:OPEN_ENDED_LINE: Lines should not end wi

Re: [PATCH 2/6] app/test: link unit test binary against all available libs

2022-01-19 Thread David Marchand
On Thu, Jan 13, 2022 at 6:40 PM Bruce Richardson wrote: > > Rather than maintaining a list of the libraries the unit tests need, and > having to conditionally include/omit optional libs from the list, we can > just link against all available libraries, simplifying the code > considerably. > > Sign

Re: [PATCH 0/6] allow more DPDK libraries to be disabled on build

2022-01-19 Thread David Marchand
On Thu, Jan 13, 2022 at 6:40 PM Bruce Richardson wrote: > > A common request on-list has been to allow more of the DPDK build to be > disabled by those who are > doing their own builds and only use a subset of the libraries. To this end, > this patchset makes some > infrastructure changes [first

Re: [PATCH] bus/ifpga: remove useless check while browsing devices

2022-01-19 Thread Thomas Monjalon
> > reported by code analysis tool C++test (version 10.4): > > > > > /build/dpdk-20.11/drivers/bus/ifpga/ifpga_bus.c > > > 67Condition "afu_dev" is always evaluated to true > > > 81Condition "afu_dev" is always evaluated to true > > > > The "for" loop already checks that afu_dev is not NU

Re: [PATCH v6 00/26] Net/SPNIC: support SPNIC into DPDK 22.03

2022-01-19 Thread Ferruh Yigit
On 12/30/2021 6:08 AM, Yanling Song wrote: The patchsets introduce SPNIC driver for Ramaxel's SPNxx serial NIC cards into DPDK 22.03. Ramaxel Memory Technology is a company which supply a lot of electric products: storage, communication, PCB... SPNxxx is a serial PCIE interface NIC cards: SPN110

Re: [PATCH v6 01/26] drivers/net: introduce a new PMD driver

2022-01-19 Thread Ferruh Yigit
On 12/30/2021 6:08 AM, Yanling Song wrote: Introduce a new PMD driver which names spnic. PMD stands for "Poll mode driver", so "PMD driver" usage is wrong, can you please update it in the patch title too? Also domain for patch title can be "net/spnic: ". Now, this driver only implements modu

iavf/ice seem to report incorrect ol_flags in certain cases

2022-01-19 Thread Thomas Tsakiris
Hi All, iavf and ice seem to report ol_flags for inner checksum even when not configured to do so. This results in packet with good outer/wrong inner ip checksums having flag RTE_MBUF_F_RX_IP_CKSUM_BAD And packet with wrong outer/good inner checksums having both RTE_MBUF_F_RX_IP_CKSUM_GOOD and RTE

Re: [PATCH v6 02/26] net/spnic: initialize the HW interface

2022-01-19 Thread Ferruh Yigit
On 12/30/2021 6:08 AM, Yanling Song wrote: Add HW interface registers and initialize the HW interface. Signed-off-by: Yanling Song <...> diff --git a/drivers/net/spnic/base/spnic_hwdev.h b/drivers/net/spnic/base/spnic_hwdev.h new file mode 100644 index 00..c89a4fa840 --- /dev/null

Re: [PATCH v6 05/26] net/spnic: add mgmt module

2022-01-19 Thread Ferruh Yigit
On 12/30/2021 6:08 AM, Yanling Song wrote: Mgmt module manage the message gerenated from the hardware. This patch implements mgmt module initialization, related event processing and message command definition. Signed-off-by: Yanling Song <...> +static void spnic_get_port_link_info(u8 link_s

Re: [PATCH v6 09/26] net/spnic: support MAC and link event handling

2022-01-19 Thread Ferruh Yigit
On 12/30/2021 6:08 AM, Yanling Song wrote: This commit adds interfaces to add/remove MAC addresses and registers related ops to struct eth_dev_ops. Furthermore, this commit adds callback to handle link events. The patch also adds the VF dev_ops. It would be more clear to support PF first and

Re: [PATCH 2/6] app/test: link unit test binary against all available libs

2022-01-19 Thread Bruce Richardson
On Wed, Jan 19, 2022 at 05:51:20PM +0100, David Marchand wrote: > On Thu, Jan 13, 2022 at 6:40 PM Bruce Richardson > wrote: > > > > Rather than maintaining a list of the libraries the unit tests need, and > > having to conditionally include/omit optional libs from the list, we can > > just link ag

Re: [PATCH v6 25/26] net/spnic: add doc infrastructure

2022-01-19 Thread Ferruh Yigit
On 12/30/2021 6:09 AM, Yanling Song wrote: This patch adds doc infrastructure for spnic PMD driver. Signed-off-by: Yanling Song <...> diff --git a/doc/guides/nics/spnic.rst b/doc/guides/nics/spnic.rst new file mode 100644 index 00..fd04178f8a --- /dev/null +++ b/doc/guides/nics/spni

Re: [PATCH v6 26/26] net/spnic: fixes unsafe C style code

2022-01-19 Thread Ferruh Yigit
On 12/30/2021 6:09 AM, Yanling Song wrote: Use the hardware structure instead of void* as parameter of function to keep the type information Hi Yanling, This is a new driver and first patchset for it. Instead of fixing it in the set, why not update old patches to introduce them correct at firs

Re: [PATCH v1] doc: fix KNI PMD name typo

2022-01-19 Thread Ferruh Yigit
On 1/19/2022 12:26 PM, Haiyue Wang wrote: The KNI PMD name should be "net_kni". Fixes: 75e2bc54c018 ("net/kni: add KNI PMD") Cc: sta...@dpdk.org Signed-off-by: Haiyue Wang Acked-by: Ferruh Yigit

[PATCH v2 0/6] allow more DPDK libs to be disabled on build

2022-01-19 Thread Bruce Richardson
*A common request on-list has been to allow more of the DPDK build to be disabled by those who are doing their own builds and only use a subset of the libraries. To this end, this patchset makes some infrastructure changes [first two patches] to make it easier to have libraries disabled, and the

[PATCH v2 1/6] lib: allow recursive disabling of libs in build

2022-01-19 Thread Bruce Richardson
Align the code in lib/meson.build with that in drivers/meson.build to enable recursive disabling of libraries, i.e. if library b depends on library a, disable library b if a is disabled (either explicitly or implicitly). This allows libraries to be optional even if other DPDK libs depend on them, s

[PATCH v2 2/6] app/test: link unit test binary against all available libs

2022-01-19 Thread Bruce Richardson
Rather than maintaining a list of the libraries the unit tests need, and having to conditionally include/omit optional libs from the list, we can just link against all available libraries, simplifying the code considerably. Signed-off-by: Bruce Richardson Acked-by: Stephen Hemminger Acked-by: Mo

[PATCH v2 3/6] build: add node library to optional list

2022-01-19 Thread Bruce Richardson
Allow the 'node' library to be disabled in builds Signed-off-by: Bruce Richardson Acked-by: Stephen Hemminger Acked-by: Morten Brørup --- lib/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/meson.build b/lib/meson.build index af4662e942..dd20fe70a6 100644 --- a/lib/meson.bu

[PATCH v2 4/6] build: add flow classification library to optional list

2022-01-19 Thread Bruce Richardson
Add the flow_classify library to the list of optional libraries, and ensure tests can build with it disabled. Signed-off-by: Bruce Richardson Acked-by: Stephen Hemminger Acked-by: Morten Brørup --- app/test/meson.build | 7 +-- lib/meson.build | 1 + 2 files changed, 6 insertions(+),

[PATCH v2 5/6] build: add "packet framework" libs to optional list

2022-01-19 Thread Bruce Richardson
Add port, table and pipeline libraries - collectively often known as the "packet framework" - to the list of optional libraries, and ensure tests can build with them disabled. Signed-off-by: Bruce Richardson Acked-by: Stephen Hemminger Acked-by: Morten Brørup --- app/test/meson.build | 20 +++

[PATCH v2 6/6] build: add cfgfile library to optional list

2022-01-19 Thread Bruce Richardson
Allow disabling of the cfgfile library in builds. Signed-off-by: Bruce Richardson Acked-by: Stephen Hemminger Acked-by: Morten Brørup --- lib/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/meson.build b/lib/meson.build index dcc1b4d835..8e5acd7819 100644 --- a/lib/meson.bu

[PATCH 1/4] net/ark: add device capabilities record

2022-01-19 Thread John Miller
Add static record of supported device capabilities. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 58 +--- 1 file changed, 48 insertions(+), 10 deletions(-) diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c index b618cba3f0.

[PATCH 2/4] net/ark: support arbitrary mbuf size

2022-01-19 Thread John Miller
Support arbitrary mbuf size per queue. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c| 8 drivers/net/ark/ark_ethdev_rx.c | 23 +++ drivers/net/ark/ark_udm.h | 2 +- 3 files changed, 20 insertions(+), 13 deletions(-) diff --git a/drivers/net

[PATCH 3/4] net/ark: publish include file for external access

2022-01-19 Thread John Miller
publish rte_pmd_ark.h for external access to extension Signed-off-by: John Miller --- doc/guides/nics/ark.rst | 4 ++-- drivers/net/ark/meson.build | 2 ++ drivers/net/ark/{ark_ext.h => rte_pmd_ark.h} | 8 ++-- 3 files changed, 10 insertions(+), 4 deleti

[PATCH 4/4] net/ark: support chunk DMA transfers

2022-01-19 Thread John Miller
Add support for chunk DMA transfers. Signed-off-by: John Miller --- drivers/net/ark/ark_ddm.c | 1 + drivers/net/ark/ark_ethdev_rx.c | 16 +--- drivers/net/ark/ark_mpu.c | 1 + drivers/net/ark/ark_pktchkr.c | 2 +- drivers/net/ark/ark_pktgen.c| 2 +- drivers/net

[PATCH v2 0/6] Fast restart with many hugepages

2022-01-19 Thread Dmitry Kozlyuk
This patchset is a new design and implementation of [1]. v2: * Fix hugepage file removal when they are no longer used. Disable removal with --huge-unlink=never as intended. Document this behavior difference. (Bruce) * Improve documentation, commit messages, and naming. (Thomas) # Prob

[PATCH v2 2/6] app/test: add allocator performance benchmark

2022-01-19 Thread Dmitry Kozlyuk
Memory allocator performance is crucial to applications that deal with large amount of memory or allocate frequently. DPDK allocator performance is affected by EAL options, API used and, at least, allocation size. New autotest is intended to be run with different EAL options. It measures performanc

[PATCH v2 3/6] mem: add dirty malloc element support

2022-01-19 Thread Dmitry Kozlyuk
EAL malloc layer assumed all free elements content is filled with zeros ("clean"), as opposed to uninitialized ("dirty"). This assumption was ensured in two ways: 1. EAL memalloc layer always returned clean memory. 2. Freed memory was cleared before returning into the heap. Clearing the memory can

[PATCH v2 4/6] eal: refactor --huge-unlink storage

2022-01-19 Thread Dmitry Kozlyuk
In preparation to extend --huge-unlink option semantics refactor how it is stored in the internal configuration. It makes future changes more isolated. Signed-off-by: Dmitry Kozlyuk Acked-by: Thomas Monjalon --- lib/eal/common/eal_common_options.c | 9 + lib/eal/common/eal_internal_cfg.

[PATCH v2 1/6] doc: add hugepage mapping details

2022-01-19 Thread Dmitry Kozlyuk
Hugepage mapping is a layer of EAL malloc builds upon. There were implicit references to its details, like mentions of segment file descriptors, but no explicit description of its modes and operation. Add an overview of mechanics used on ech supported OS. Convert memory management subsections from

[PATCH v2 6/6] eal: extend --huge-unlink for hugepage file reuse

2022-01-19 Thread Dmitry Kozlyuk
Expose Linux EAL ability to reuse existing hugepage files via --huge-unlink=never switch. Default behavior is unchanged, it can also be specified using --huge-unlink=existing for consistency. Old --huge-unlink switch is kept, it is an alias for --huge-unlink=always. Add a test case for the --huge-u

[PATCH v2 5/6] eal/linux: allow hugepage file reuse

2022-01-19 Thread Dmitry Kozlyuk
Linux EAL ensured that mapped hugepages are clean by always mapping from newly created files: existing hugepage backing files were always removed. In this case, the kernel clears the page to prevent data leaks, because the mapped memory may contain leftover data from the previous process that was u

RE: [PATCH v1 0/6] Fast restart with many hugepages

2022-01-19 Thread Dmitry Kozlyuk
Hi Bruce, > From: Bruce Richardson > [...] > this seems really interesting, but in the absense of TB of memory > being > used, is it easily possible to see the benefits of this work? I've > been > playing with adding large memory allocations to helloworld example and > checking the runtime. Alloc

RE: [PATCH v1 2/6] app/test: add allocator performance benchmark

2022-01-19 Thread Dmitry Kozlyuk
> From: Bruce Richardson > [...] > > What is the expected running time of this test? When I tried it out > on my > > machine it appears to hang after the following output: > > [...] It always runs within 50 seconds on my machine (E5-1650 v3 @ 3.50GHz). Judging by the output, it runs faster than y

DTS WG meeting minutes - 1/12/22

2022-01-19 Thread Honnappa Nagarahalli
Hello, Please find the minutes below. The history of minutes is at [1]. Thanks, Honnappa [1] https://docs.google.com/document/d/1E2mkTHNQ5vyln1JvnJTil15cjacUTXP7LXb9K960Vxs/edit?usp=sharing Attendees: -- Honnappa Nagarahalli Owen Hilyard Lijuan Tu Ali Alnubani Vladislav Gris

[PATCH] net/cxgbe: rework mailbox access to fix gcc12 -Wdangling-pointer

2022-01-19 Thread Rahul Lakkireddy
Rework mailbox access serialization to dynamically allocate and free mbox entry. Also remove unnecessary temp memory and macros. Observed with: gcc-12.0 (GCC) 12.0.1 20220118 (experimental) In file included from ../lib/eal/linux/include/rte_os.h:14, from ../lib/eal/include/rte_co

Re: [PATCH] net/cxgbe: fix dangling pointer for gcc12

2022-01-19 Thread Rahul Lakkireddy
Hi Ferruh, On Monday, January 01/17/22, 2022 at 14:36:30 +, Ferruh Yigit wrote: > Observed with: gcc (GCC) 12.0.0 20220116 (experimental) > > In file included from ../lib/eal/linux/include/rte_os.h:14, > from ../lib/eal/include/rte_common.h:28, > from ../lib/

[PATCH v3] build: add missing arch define for Arm

2022-01-19 Thread Ruifeng Wang
As per design document, RTE_ARCH is the name of the architecture. However, the definition was missing on Arm with meson build. It impacts applications that refers to this string. Added for Arm builds. Fixes: b1d48c41189a ("build: support ARM with meson") Cc: sta...@dpdk.org Reported-by: Stephen

[PATCH v2] raw/ifpga: fix pthread cannot join

2022-01-19 Thread Wei Huang
From: Tianfei Zhang When we want to close a thread, we should set a flag to notify thread handler function. Fixes: 9c006c45 ("raw/ifpga: scan PCIe BDF device tree") Cc: sta...@dpdk.org Signed-off-by: Tianfei Zhang --- v2: update commit log --- drivers/raw/ifpga/ifpga_rawdev.c | 8 1

[PATCH 0/2] add module EEPROM ops for ice

2022-01-19 Thread Steve Yang
Added the following 2 items of ice_eth_dev_ops for ice: - ice_get_module_info - ice_get_module_eeprom Fixed stack overflow error when displaying a large size info. Steve Yang (2): net/ice: add module EEPROM ops for ice app/testpmd: fix stack overflow for EEPROM display app/test-pmd/config.c

[PATCH 1/2] net/ice: add module EEPROM ops for ice

2022-01-19 Thread Steve Yang
Add new callbacks for eth_dev_ops of ice to get the information and data of plugin module EEPROM. Signed-off-by: Steve Yang --- drivers/net/ice/ice_ethdev.c | 160 +++ drivers/net/ice/ice_ethdev.h | 25 ++ 2 files changed, 185 insertions(+) diff --git a/driv

[PATCH 2/2] app/testpmd: fix stack overflow for EEPROM display

2022-01-19 Thread Steve Yang
When the size of EEPROM exceeds the default thread stack size(8MB), e.g.: 10Mb size, it will be cashed with stack overflow. Allocate the data of EPPROM information on the heap. Fixes: 6b67721dee2a ("app/testpmd: add EEPROM command") Signed-off-by: Steve Yang --- app/test-pmd/config.c | 22

Re: [PATCH 2/8] net/cnxk: add CN9K template Rx functions to build

2022-01-19 Thread Jerin Jacob
On Mon, Dec 13, 2021 at 1:52 PM wrote: > > From: Pavan Nikhilesh > > Add CN9K seggeregated Rx and event dequeue functions to build, Fix typo > add macros to make future modifications simpler. > > Signed-off-by: Pavan Nikhilesh Please rebase to latest next-net-mrvl. There is a build issue now.

[PATCH] net/virtio: fix incorrect slots number when indirect feature on

2022-01-19 Thread Marvin Liu
Virtio driver only occupies one slot for enqueuing chained mbufs when indirect feature is on. Required slots calculation should depend on indirect feature status at the end. Fixes: 0eaf7fc2fe8e ("net/virtio: separate AVX Rx/Tx") Cc: sta...@dpdk.org Signed-off-by: Marvin Liu diff --git a/drivers

[PATCH v3] raw/ifpga: fix pthread cannot join

2022-01-19 Thread Wei Huang
From: Tianfei Zhang When we want to close a thread, we should set a flag to notify thread handler function. Fixes: 9c006c45 ("raw/ifpga: scan PCIe BDF device tree") Cc: sta...@dpdk.org Signed-off-by: Tianfei Zhang --- v2: update commit log --- v3: set thread id to 0 after pthread_join --- dri

Re: [PATCH v2 1/2] common/cnxk: get head-tail of Rx and Tx queues

2022-01-19 Thread Jerin Jacob
On Wed, Jan 19, 2022 at 3:14 PM Rahul Bhansali wrote: > > Adds roc APIs roc_nix_cq_head_tail_get, roc_nix_sq_head_tail_get > to get head-tail of receive and transmit queue respectively. > > Signed-off-by: Rahul Bhansali Series Acked-by: Jerin Jacob Series applied to dpdk-next-net-mrvl/for-next-

Re: [dpdk-dev] [PATCH v2 1/4] drivers: add support for switch header type pre L2

2022-01-19 Thread Jerin Jacob
On Mon, Jan 3, 2022 at 11:49 AM wrote: > > From: Kiran Kumar K > > Adding changes to configure switch header type pre L2 for cnxk. > Along with switch header type user needs to provide the > offset with in the custom header that holds the size of the > custom header and mask for the size with in