Re: 回复: [PATCH] lib/telemetry:fix telemetry conns leak in case of socket write fail

2024-01-22 Thread Bruce Richardson
On Sat, Jan 20, 2024 at 12:18:38PM +0800, 1819846787 wrote: >I have modified my commitlog and resubmitted the patch, but I seem to >have forgotten to add a [v2] flag to the patch. Do I need to resubmit >the patch again? > It's better if the v2 is added, but it's probably not necessar

RE: [PATCH v4 1/1] ethdev: parsing multiple representor devargs string

2024-01-22 Thread Harman Kalra
Hi Chaoyong, Please see responses inline > > return ret; > > } > > > ... > > a/drivers/net/nfp/flower/nfp_flower_representor.c > > b/drivers/net/nfp/flower/nfp_flower_representor.c > > index 5f7c1fa737..63fe37c8d7 100644 > > --- a/drivers/net/nfp/flower/nfp_flow

Re: [PATCH v5 1/2] drivers/net: fix buffer overflow for ptypes list

2024-01-22 Thread Ferruh Yigit
On 1/19/2024 5:10 PM, Power, Ciara wrote: > Hi Ferruh, > >> -Original Message- >> From: Ferruh Yigit >> Sent: Friday, January 19, 2024 2:59 PM >> To: Sivaramakrishnan, VenkatX ; >> Hemant Agrawal ; Sachin Saxena >> ; Zyta Szpak ; Liron Himi >> ; Chaoyong He ; >> Gagandeep Singh ; Jerin Ja

RE: [PATCH v5 1/2] drivers/net: fix buffer overflow for ptypes list

2024-01-22 Thread Power, Ciara
Hi Ferruh, > -Original Message- > From: Ferruh Yigit > Sent: Monday, January 22, 2024 9:43 AM > To: Power, Ciara ; Sivaramakrishnan, VenkatX > ; Hemant Agrawal > ; Sachin Saxena ; Zyta > Szpak ; Liron Himi ; Chaoyong He > ; Gagandeep Singh ; Jerin > Jacob ; Maciej Czekaj > Cc: dev@dpdk.o

Re: [PATCH v5 1/2] drivers/net: fix buffer overflow for ptypes list

2024-01-22 Thread Ferruh Yigit
On 1/22/2024 9:46 AM, Power, Ciara wrote: > Hi Ferruh, > >> -Original Message- >> From: Ferruh Yigit >> Sent: Monday, January 22, 2024 9:43 AM >> To: Power, Ciara ; Sivaramakrishnan, VenkatX >> ; Hemant Agrawal >> ; Sachin Saxena ; Zyta >> Szpak ; Liron Himi ; Chaoyong He >> ; Gagandeep S

RE: [PATCH v4 1/1] ethdev: parsing multiple representor devargs string

2024-01-22 Thread Chaoyong He
> > Hi Chaoyong, > > Please see responses inline > > > > > > > return ret; > > > } > > > > > ... > > > a/drivers/net/nfp/flower/nfp_flower_representor.c > > > b/drivers/net/nfp/flower/nfp_flower_representor.c > > > index 5f7c1fa737..63fe37c8d7 100644 > > > ---

Re: [PATCH 1/2] config/arm: avoid mcpu and march conflicts

2024-01-22 Thread Juraj Linkeš
On Sun, Jan 21, 2024 at 10:37 AM wrote: > > From: Pavan Nikhilesh > > The compiler options march and mtune are a subset > of mcpu and will lead to conflicts if improper march > is chosen for a given mcpu. > To avoid conflicts, force part number march when > mcpu is available and is supported by t

Re: [v4] net/gve: enable imissed stats for GQ format

2024-01-22 Thread Ferruh Yigit
On 1/19/2024 5:09 PM, Rushil Gupta wrote: > Read from shared region to retrieve imissed statistics for GQ from device. > > Signed-off-by: Rushil Gupta > Reviewed-by: Joshua Washington > Acked-by: Ferruh Yigit Applied to dpdk-next-net/main, thanks.

Re: [PATCH 2/2] config/arm: add support for fallback march

2024-01-22 Thread Juraj Linkeš
On Sun, Jan 21, 2024 at 10:37 AM wrote: > > From: Pavan Nikhilesh > > Some ARM CPUs have specific march requirements and > are not compatible with the supported march list. > Add fallback march in case the mcpu and the march > advertised in the part_number_config are not supported > by the compil

Re: [PATCH v2] net/ice: fix tso tunnel setting to not take effect

2024-01-22 Thread Thomas Monjalon
> > The Tx offload capabilities of ICE ethdev doesn't include tso tunnel, which > > will > > result in tso tunnel setting to not take effect. > > > > The patch adds tunnel tso offload to ICE_TX_NO_VECTOR_FLAGS. > > > > This commit will add tso tunnel capabilities in ice_dev_info_get(). > > > >

RE: [EXT] Re: [PATCH 1/2] config/arm: avoid mcpu and march conflicts

2024-01-22 Thread Pavan Nikhilesh Bhagavatula
> On Sun, Jan 21, 2024 at 10:37 AM wrote: > > > > From: Pavan Nikhilesh > > > > The compiler options march and mtune are a subset > > of mcpu and will lead to conflicts if improper march > > is chosen for a given mcpu. > > To avoid conflicts, force part number march when > > mcpu is available and

[PATCH v2 0/3] dts: API docs generation

2024-01-22 Thread Juraj Linkeš
The generation is done with Sphinx, which DPDK already uses, with slightly modified configuration of the sidebar present in an if block. Dependencies are installed using Poetry from the dts directory: poetry install --with docs After installing, enter the Poetry shell: poetry shell And then ru

[PATCH v2 1/3] dts: add doc generation dependencies

2024-01-22 Thread Juraj Linkeš
Sphinx imports every Python module when generating documentation from docstrings, meaning all dts dependencies, including Python version, must be satisfied. By adding Sphinx to dts dependencies we make sure that the proper Python version and dependencies are used when Sphinx is executed. Signed-of

[PATCH v2 2/3] dts: add API doc sources

2024-01-22 Thread Juraj Linkeš
These sources could be generated with the sphinx-apidoc utility, but that doesn't give us enough flexibility. The sources included in this patch were in fact generated by said utility, but modified to improve the look of the documentation. The improvements are mainly in toctree definitions and the

[PATCH v2 3/3] dts: add API doc generation

2024-01-22 Thread Juraj Linkeš
The tool used to generate developer docs is Sphinx, which is already in use in DPDK. The same configuration is used to preserve style, but it's been augmented with doc-generating configuration. There's a change that modifies how the sidebar displays the content hierarchy that's been put into an if

RE: [EXT] Re: [PATCH 2/2] config/arm: add support for fallback march

2024-01-22 Thread Pavan Nikhilesh Bhagavatula
> On Sun, Jan 21, 2024 at 10:37 AM wrote: > > > > From: Pavan Nikhilesh > > > > Some ARM CPUs have specific march requirements and > > are not compatible with the supported march list. > > Add fallback march in case the mcpu and the march > > advertised in the part_number_config are not supported

Re: [PATCH] net/mana: rename mana_find_pmd_mr() to mana_alloc_pmd_mr()

2024-01-22 Thread Ferruh Yigit
On 1/20/2024 12:55 AM, lon...@linuxonhyperv.com wrote: > From: Long Li > > The function name mana_find_pmd_mr() is misleading as there might be > allocations to get a MR. Change function name to mana_alloc_pmd_mr(). > > Signed-off-by: Long Li > Applied to dpdk-next-net/main, thanks.

RE: [EXT] Re: [PATCH 1/2] net/virtio-user: improve kick performance with notification area mapping

2024-01-22 Thread Srujana Challa
> Hi Srujana, > > Thanks for your contribution! > Is it possible to provide information on which hardware it can be tested on? It can be tested on Marvell's Octeon DPU. > > On 12/8/23 06:31, Srujana Challa wrote: > > This patch introduces new virtio-user callback to map the vq > > notification a

RE: [EXT] Re: [PATCH 2/2] net/virtio-user: add VIRTIO_NET_F_RSS to supported features

2024-01-22 Thread Srujana Challa
> Hi, > > On 12/8/23 06:31, Srujana Challa wrote: > > This patch introduces new function to get rss device config and adds > > code to forward the RSS control command to backend through hw control > > queue if RSS feature is negotiated. > > This patch will help to negotiate VIRTIO_NET_F_RSS featur

RE: [dpdk-dev] [v2] ethdev: support Tx queue used count

2024-01-22 Thread Konstantin Ananyev
> From: Jerin Jacob > > Introduce a new API to retrieve the number of used descriptors > in a Tx queue. Applications can leverage this API in the fast path to > inspect the Tx queue occupancy and take appropriate actions based on the > available free descriptors. > > A notable use case could b

RE: [PATCH] examples/ipsec-secgw: fix cryptodev to SA mapping

2024-01-22 Thread Power, Ciara
Hi Radu, > -Original Message- > From: Nicolau, Radu > Sent: Monday, December 11, 2023 9:54 AM > To: Nicolau, Radu ; Akhil Goyal > > Cc: dev@dpdk.org; Power, Ciara ; Ku, Ting-Kai kai...@intel.com>; sta...@dpdk.org; vfia...@marvell.com > Subject: [PATCH] examples/ipsec-secgw: fix cryptode

Re: [PATCH] raw/cnxk_bphy: extend link state capabilities

2024-01-22 Thread Jerin Jacob
On Tue, Jan 16, 2024 at 8:59 PM Tomasz Duszynski wrote: > > Recent version of firmware extended capabilities of setting link state > by adding two extra parameters i.e. timeout and flag disabling auto > enable of rx/tx during linkup. > > This change adds supports for both. > > Signed-off-by: Tomas

Re: [PATCH] examples/ipsec-secgw: fix cryptodev to SA mapping

2024-01-22 Thread Ji, Kai
Acked-by: Kai Ji From: Radu Nicolau Sent: 11 December 2023 09:53 To: Nicolau, Radu ; Akhil Goyal Cc: dev@dpdk.org ; Power, Ciara ; Ku, Ting-Kai ; sta...@dpdk.org ; vfia...@marvell.com Subject: [PATCH] examples/ipsec-secgw: fix cryptodev to SA mapping There

Re: [PATCH] net/mana: prevent values overflow returned from RDMA layer

2024-01-22 Thread Ferruh Yigit
On 1/18/2024 6:05 PM, lon...@linuxonhyperv.com wrote: > From: Long Li > > The device capabilities reported from RDMA layer are in int. Those values can > overflow with the data types defined in dev_info_get(). > > Fix this by doing a upper bound before returning those values. > > Fixes: 517ed6e

[PATCH v2] mempool: test performance with larger bursts

2024-01-22 Thread Morten Brørup
Bursts of up to 64 or 128 packets are not uncommon, so increase the maximum tested get and put burst sizes from 32 to 128. Some applications keep more than 512 objects, so increase the maximum number of kept objects from 512 to 8192, still in jumps of factor four. This exceeds the typical mempool

[PATCH v2] mempool: test performance with larger bursts

2024-01-22 Thread Morten Brørup
Bursts of up to 64 or 128 packets are not uncommon, so increase the maximum tested get and put burst sizes from 32 to 128. Some applications keep more than 512 objects, so increase the maximum number of kept objects from 512 to 8192, still in jumps of factor four. This exceeds the typical mempool

RE: [PATCH v2] mempool: test performance with larger bursts

2024-01-22 Thread Morten Brørup
Replied on wrong thread. Sorry. Resubmitted with correct in-reply-to. -Morten

Re: [PATCH 0/8] optimize the firmware loading process

2024-01-22 Thread Ferruh Yigit
On 1/15/2024 2:54 AM, Chaoyong He wrote: > This patch series aims to speedup the DPDK application start by optimize > the firmware loading process in sereval places. > We also simplify the port name in multiple PF firmware case to make the > customer happy. > <...> > net/nfp: add the elf modul

Re: [EXT] Re: [PATCH 1/2] config/arm: avoid mcpu and march conflicts

2024-01-22 Thread Juraj Linkeš
On Mon, Jan 22, 2024 at 12:54 PM Pavan Nikhilesh Bhagavatula wrote: > > > On Sun, Jan 21, 2024 at 10:37 AM wrote: > > > > > > From: Pavan Nikhilesh > > > > > > The compiler options march and mtune are a subset > > > of mcpu and will lead to conflicts if improper march > > > is chosen for a given

Re: [EXT] Re: [PATCH 2/2] config/arm: add support for fallback march

2024-01-22 Thread Juraj Linkeš
On Mon, Jan 22, 2024 at 1:16 PM Pavan Nikhilesh Bhagavatula wrote: > > > On Sun, Jan 21, 2024 at 10:37 AM wrote: > > > > > > From: Pavan Nikhilesh > > > > > > Some ARM CPUs have specific march requirements and > > > are not compatible with the supported march list. > > > Add fallback march in ca

[PATCH v3 0/3] dts: API docs generation

2024-01-22 Thread Juraj Linkeš
The generation is done with Sphinx, which DPDK already uses, with slightly modified configuration of the sidebar present in an if block. Dependencies are installed using Poetry from the dts directory: poetry install --with docs After installing, enter the Poetry shell: poetry shell And then ru

[PATCH v3 1/3] dts: add doc generation dependencies

2024-01-22 Thread Juraj Linkeš
Sphinx imports every Python module when generating documentation from docstrings, meaning all dts dependencies, including Python version, must be satisfied. By adding Sphinx to dts dependencies we make sure that the proper Python version and dependencies are used when Sphinx is executed. Signed-of

[PATCH v3 2/3] dts: add API doc sources

2024-01-22 Thread Juraj Linkeš
These sources could be generated with the sphinx-apidoc utility, but that doesn't give us enough flexibility. The sources included in this patch were in fact generated by said utility, but modified to improve the look of the documentation. The improvements are mainly in toctree definitions and the

[PATCH v3 3/3] dts: add API doc generation

2024-01-22 Thread Juraj Linkeš
The tool used to generate developer docs is Sphinx, which is already in use in DPDK. The same configuration is used to preserve style, but it's been augmented with doc-generating configuration. There's a change that modifies how the sidebar displays the content hierarchy that's been put into an if

Re: DTS testpmd and SCAPY integration

2024-01-22 Thread Thomas Monjalon
08/01/2024 13:10, Luca Vizzarro: > Your proposal sounds rather interesting. Certainly enabling DTS to > accept YAML-written tests sounds more developer-friendly and should > enable quicker test-writing. As this is an extra feature though – and a > nice-to-have, it should definitely be discussed

[PATCH 0/4] dts: error and usage improvements

2024-01-22 Thread Luca Vizzarro
As mentioned in my previous DTS docs improvement patch series, here are some usage improvements to DTS. The main purpose is to give the first-time user of DTS some more meaningful messages of its usage. Secondly, report back stderr to the user when remote commands fail. For example, if DTS tries t

[PATCH 1/4] dts: constrain DPDK source flag

2024-01-22 Thread Luca Vizzarro
DTS needs an input to gather the DPDK source code from. This is then built on the remote target. This commit makes sure that this input is more constrained, separating the Git revision ID – used to create a tarball using Git – and providing tarballed source code directly, while retaining mutual exc

[PATCH 3/4] dts: show help when DTS is ran without args

2024-01-22 Thread Luca Vizzarro
This commit changes the default behaviour of DTS, making it so that the user automatically sees the help and usage page when running it without any arguments set. Instead of being welcomed by an error message. Reviewed-by: Paul Szczepanek Signed-off-by: Luca Vizzarro --- dts/framework/settings.

[PATCH 2/4] dts: customise argparse error message

2024-01-22 Thread Luca Vizzarro
This commit customises the arguments parsing class' error message, making it so the confusing usage is not displayed in these occurrences, but the user is redirected to use the help argument instead. Reviewed-by: Paul Szczepanek Signed-off-by: Luca Vizzarro --- dts/framework/settings.py | 13 ++

[PATCH 4/4] dts: log stderr with failed remote commands

2024-01-22 Thread Luca Vizzarro
Add the executed command stderr to RemoteCommandExecutionError. So that it is logged as an error, instead of just as debug. Reviewed-by: Paul Szczepanek Signed-off-by: Luca Vizzarro --- dts/framework/exception.py | 10 +++--- dts/framework/remote_session/remote_session.p

[PATCH 0/7] net/gve: RSS Support for GVE Driver

2024-01-22 Thread Joshua Washington
This patch series introduces RSS support for the GVE poll-mode driver. This series includes implementations of the following eth_dev_ops: 1) rss_hash_update 2) rss_hash_conf_get 3) reta_query 4) reta_update In rss_hash_update, the GVE driver supports the following RSS hash types: * RTE_ETH_RSS_I

[PATCH 1/7] net/gve: fully expose RSS offload support in dev_info

2024-01-22 Thread Joshua Washington
--- drivers/net/gve/gve_ethdev.c | 4 +++- drivers/net/gve/gve_ethdev.h | 8 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/drivers/net/gve/gve_ethdev.c b/drivers/net/gve/gve_ethdev.c index d162fd3864..6acdb4e13b 100644 --- a/drivers/net/gve/gve_ethdev.c +++ b/drivers/net/

[PATCH 2/7] net/gve: RSS adminq command changes

2024-01-22 Thread Joshua Washington
This change introduces admin queue changes that enable the configuration of RSS parameters for the GVE driver. --- drivers/net/gve/base/gve.h| 15 drivers/net/gve/base/gve_adminq.c | 59 +++ drivers/net/gve/base/gve_adminq.h | 29 +++ driver

[PATCH 3/7] net/gve: add gve_rss library for handling RSS-related behaviors

2024-01-22 Thread Joshua Washington
This change includes a number of helper functions to facilitate RSS configuration on the GVE DPDK driver. These methods are declared in gve_rss.h. --- drivers/net/gve/base/gve_adminq.h | 10 +- drivers/net/gve/gve_ethdev.c | 2 +- drivers/net/gve/gve_ethdev.h | 4 +- drivers/net/gve

[PATCH 4/7] net/gve: RSS configuration update support

2024-01-22 Thread Joshua Washington
This patch adds support for updating the RSS hash key and hash fields in the GVE PMD through the implementation of rss_hash_update and rss_hash_conf_get. The RSS hash key for gVNIC is required to be 40 bytes. On initial configuration of the RSS hash key, the RSS redirection table will be set to a

[PATCH 5/7] net/gve: RSS redirection table update support

2024-01-22 Thread Joshua Washington
This patch introduces support for updating the RSS redirection table in the GVE PMD through the implementation of rss_reta_update and rss_reta_query. Due to an infrastructure limitation, the RSS hash key must be manually configured before the redirection table can be updated or queried. The redire

[PATCH 6/7] net/gve: update gve.ini with RSS capabilities

2024-01-22 Thread Joshua Washington
--- doc/guides/nics/features/gve.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/nics/features/gve.ini b/doc/guides/nics/features/gve.ini index 838edd456a..bc08648dbc 100644 --- a/doc/guides/nics/features/gve.ini +++ b/doc/guides/nics/features/gve.ini @@ -15,3 +15,6 @@ Linux

[PATCH 7/7] net/gve: update GVE documentation with RSS support

2024-01-22 Thread Joshua Washington
--- doc/guides/nics/gve.rst | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/doc/guides/nics/gve.rst b/doc/guides/nics/gve.rst index 1c3eaf03ef..80991e70cf 100644 --- a/doc/guides/nics/gve.rst +++ b/doc/guides/nics/gve.rst @@ -70,6 +70,8 @@ Supported features o

RE: [PATCH 0/8] optimize the firmware loading process

2024-01-22 Thread Chaoyong He
> -Original Message- > From: Ferruh Yigit > Sent: Monday, January 22, 2024 11:09 PM > To: Chaoyong He ; dev@dpdk.org > Cc: oss-drivers > Subject: Re: [PATCH 0/8] optimize the firmware loading process > > On 1/15/2024 2:54 AM, Chaoyong He wrote: > > This patch series aims to speedup the

Re: [PATCH v6 00/20] Remove uses of PMD logtype

2024-01-22 Thread Stephen Hemminger
On Fri, 19 Jan 2024 14:59:58 +0100 David Marchand wrote: > $ git grep 'RTE_LOG_DP(.*fmt' drivers/ | grep -v '\\n' | cut -d : -f 1 > | xargs grep -B1 -w RTE_LOG_DP > drivers/baseband/la12xx/bbdev_la12xx_pmd_logs.h-#define > rte_bbdev_dp_log(level, fmt, args...) \ > drivers/baseband/la12xx/bbdev_la

RE: DTS testpmd and SCAPY integration

2024-01-22 Thread Honnappa Nagarahalli
> > 08/01/2024 13:10, Luca Vizzarro: > > Your proposal sounds rather interesting. Certainly enabling DTS to > > accept YAML-written tests sounds more developer-friendly and should > > enable quicker test-writing. As this is an extra feature though – and > > a nice-to-have, it should definitely b

RE: [PATCH v2] doc: update LTS maintenance to 3 years

2024-01-22 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Kevin Traynor > Sent: Wednesday, January 17, 2024 6:24 PM > To: dev@dpdk.org > Cc: bl...@debian.org; NBU-Contact-Thomas Monjalon (EXTERNAL) > ; david.march...@redhat.com; > christian.ehrha...@canonical.com; Xueming(Steven) Li > ; ferruh.yi...@amd.com; john