RE: [PATCH] app/pdump: make dpdk-pdump can run multiple simultaneously

2023-05-08 Thread Nole Zhang
> -Original Message- > From: Stephen Hemminger > Sent: Saturday, May 6, 2023 11:48 PM > To: Chaoyong He > Cc: dev@dpdk.org; oss-drivers ; Niklas > Soderlund ; Nole Zhang > > Subject: Re: [PATCH] app/pdump: make dpdk-pdump can run multiple > simultaneously > > On Sat, 6 May 2023 16:52

DPDK 22.11.2 released

2023-05-08 Thread Xueming Li
Hi all, Here is a new stable release: https://fast.dpdk.org/rel/dpdk-22.11.2.tar.xz The git tree is at: https://dpdk.org/browse/dpdk-stable/?h=22.11 Xueming Li --- .github/workflows/build.yml|3 +- .mailmap

RE: [PATCH 1/3] net/mlx5: support multi-packet RQ on Windows

2023-05-08 Thread Pier Damouny
> Subject: [PATCH 1/3] net/mlx5: support multi-packet RQ on Windows > > Multi-Packet RQ can further save PCIe bandwidth by posting a single large > buffer for multiple packets. > > Instead of posting a buffer per a packet, one large buffer is posted to > receive > multiple packets on the buffer.

RE: [PATCH 2/3] net/mlx5: support CQE compression on Windows

2023-05-08 Thread Pier Damouny
> Subject: [PATCH 2/3] net/mlx5: support CQE compression on Windows > > CQE Compression reduces PCI overhead by coalescing and compressing > multiple CQEs into a single merged CQE. > > Add supported for the CQE compression feature on Windows. > feature is enabled by default unless not supported b

RE: [PATCH 3/3] net/mlx5: support enhanced multi-packet write on Windows

2023-05-08 Thread Pier Damouny
> Subject: [PATCH 3/3] net/mlx5: support enhanced multi-packet write on > Windows > > Add support for enhanced multi-packet write on Windows. > > Enhanced multi-packet write allows the Tx burst function to pack up multiple > packets in a single descriptor session to save PCI bandwidth and improve

RE: [PATCH] test/crypto: fix return value from session

2023-05-08 Thread Power, Ciara
> -Original Message- > From: Tejasree Kondoj > Sent: Friday 5 May 2023 17:54 > To: Akhil Goyal ; Fan Zhang > > Cc: Anoob Joseph ; Power, Ciara > ; Jerin Jacob ; Aakash > Sasidharan ; Gowrishankar Muthukrishnan > ; Vidya Sagar Velumuri > ; dev@dpdk.org; sta...@dpdk.org > Subject: [PATCH

[PATCH] net/iavf: fix large vf queues cannot re-use.

2023-05-08 Thread Shiyang He
Multiple vfs created based on one PF. If one of the vf requests a large number of queues, the queue resources are not released when exiting the program, resulting in these queues cannot be available to other vfs. This commit fixes the issue by resetting the number of queues to default when closing

RE: [PATCH v3 5/5] config/arm: add AMD CDX

2023-05-08 Thread Gupta, Nipun
> -Original Message- > From: Yigit, Ferruh > Sent: Thursday, May 4, 2023 8:59 PM > To: Gupta, Nipun ; dev@dpdk.org; > tho...@monjalon.net; david.march...@redhat.com > Cc: Anand, Harpreet ; Agarwal, Nikhil > > Subject: Re: [PATCH v3 5/5] config/arm: add AMD CDX > > On 4/21/2023 3:54 PM,

Re: [PATCH v3 5/5] config/arm: add AMD CDX

2023-05-08 Thread Thomas Monjalon
08/05/2023 12:24, Gupta, Nipun: > From: Yigit, Ferruh > > On 4/21/2023 3:54 PM, Nipun Gupta wrote: > > > Adding support for AMD CDX devices > > > > > > Signed-off-by: Nipun Gupta > > > --- > > > config/arm/arm64_cdx_linux_gcc | 17 + > > > config/arm/meson.build | 14

RE: [PATCH v3 5/5] config/arm: add AMD CDX

2023-05-08 Thread Gupta, Nipun
> -Original Message- > From: Thomas Monjalon > Sent: Monday, May 8, 2023 4:14 PM > To: Yigit, Ferruh ; Gupta, Nipun > > Cc: dev@dpdk.org; david.march...@redhat.com; Anand, Harpreet > ; Agarwal, Nikhil > Subject: Re: [PATCH v3 5/5] config/arm: add AMD CDX > > > 08/05/2023 12:24, Gupt

[PATCH v4 0/4] Support AMD CDX bus, for FPGA based CDX devices. The CDX

2023-05-08 Thread Nipun Gupta
It uses sysfs interface and the vfio-cdx driver to discover and initialize the CDX devices. The CDX bus and VFIO support is available at Xilinx open source tree: https://github.com/Xilinx/linux-xlnx (drivers/cdx/ and drivers/vfio/cdx) Linux CDX bus patches has been added into linux next: https://

[PATCH v4 1/4] bus/cdx: introduce cdx bus

2023-05-08 Thread Nipun Gupta
CDX bus supports multiple type of devices, which can be exposed to user-space via vfio-cdx. vfio-cdx provides the MMIO IO_MEMORY regions as well as the DMA interface for the device (IOMMU). This support aims to enable the DPDK to support the cdx devices in user-space using VFIO interface. Signed

[PATCH v4 2/4] bus/cdx: add DMA map and unmap support

2023-05-08 Thread Nipun Gupta
CDX bus can use VFIO interface for mapping and unmapping of DMA addresses in the IOMMU. This change adds the callback support for map and unmap APIs as well as fetching the IOMMU class. Signed-off-by: Nipun Gupta --- drivers/bus/cdx/cdx.c | 40 1 file cha

[PATCH v4 4/4] bus/cdx: support plug unplug and dev iterator

2023-05-08 Thread Nipun Gupta
This change adds support for plugging and unplugging CDX devices on the CDX bus. Also, CDX dev iterator support has been added for the CDX bus. Signed-off-by: Nipun Gupta --- drivers/bus/cdx/bus_cdx_driver.h | 1 + drivers/bus/cdx/cdx.c| 122 +++ 2 files

[PATCH v4 3/4] bus/cdx: add support for MSI

2023-05-08 Thread Nipun Gupta
MSI's are exposed to the devices using VFIO (vfio-cdx). This patch uses the same to add support for MSI for the devices on the cdx bus. A couple of API's have been introduced in the EAL interrupt framework: - rte_intr_irq_count_set: This API is used to set the total interrupts on the interrupt

Re: [PATCH v3 5/5] config/arm: add AMD CDX

2023-05-08 Thread Ferruh Yigit
On 5/8/2023 11:24 AM, Gupta, Nipun wrote: > > >> -Original Message- >> From: Yigit, Ferruh >> Sent: Thursday, May 4, 2023 8:59 PM >> To: Gupta, Nipun ; dev@dpdk.org; >> tho...@monjalon.net; david.march...@redhat.com >> Cc: Anand, Harpreet ; Agarwal, Nikhil >> >> Subject: Re: [PATCH v3 5

[RFC PATCH v2 0/3] improve FEC API usage

2023-05-08 Thread Denis Pryazhennikov
The documentation for the FEC API is currently incomplete and contains inaccuracies in its descriptions of function parameters. Specifically, the semantics of the fec_capa parameter in rte_eth_fec_set() is not well-defined. It does not provide information on what should be done if only AUTO bit is

[RFC PATCH v2 2/3] ethdev: check that at least one FEC mode is specified

2023-05-08 Thread Denis Pryazhennikov
The behaviour is undefined in the rte_eth_fec_set() function when the fec_capa parameter is equal to zero. Add a check to handle this case. Signed-off-by: Denis Pryazhennikov Acked-by: Ivan Malov Acked-by: Viacheslav Galaktionov --- lib/ethdev/rte_ethdev.c | 5 + 1 file changed, 5 insertio

[RFC PATCH v2 1/3] ethdev: update documentation for API to set FEC

2023-05-08 Thread Denis Pryazhennikov
The documentation for the rte_eth_fec_set() is updated to provide more detailed information about how FEC modes are handled. It also includes a description of the case when only the AUTO bit is set. Signed-off-by: Denis Pryazhennikov Acked-by: Ivan Malov Acked-by: Viacheslav Galaktionov --- li

[RFC PATCH v2 3/3] ethdev: update documentation for API to get FEC

2023-05-08 Thread Denis Pryazhennikov
The documentation for the rte_eth_fec_get() is updated to clarify the description for the fec_capa parameter. The previous description implied that more than one FEC mode can be obtained. Signed-off-by: Denis Pryazhennikov --- lib/ethdev/rte_ethdev.h | 5 + 1 file changed, 1 insertion(+), 4

RE: [PATCH 0/2] vhost: add port mirroring function in the vhost lib

2023-05-08 Thread Jiang, Cheng1
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Wednesday, May 3, 2023 5:37 PM > To: Jiang, Cheng1 ; Xia, Chenbo > > Cc: dev@dpdk.org; Hu, Jiayu ; Ding, Xuan > ; Ma, WenwuX ; Wang, YuanX > ; He, Xingguang ; David > Marchand > Subject: Re: [PATCH 0/2] vhost: add port mirr

RE: [PATCH v7 4/4] eal: add nonnull and access function attributes

2023-05-08 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Monday, 6 February 2023 18.29 > > On Mon, Feb 06, 2023 at 05:49:18PM +0100, Morten Brørup wrote: > > > From: David Marchand [mailto:david.march...@redhat.com] > > > Sent: Monday, 6 February 2023 17.11 > > > > > > On Wed, Feb 1, 2

RE: [PATCH] cryptodev: clarify error codes returned

2023-05-08 Thread Power, Ciara
Hi Anoob, > -Original Message- > From: Anoob Joseph > Sent: Monday 24 April 2023 10:19 > To: Akhil Goyal ; Fan Zhang > > Cc: Jerin Jacob ; dev@dpdk.org > Subject: [PATCH] cryptodev: clarify error codes returned > > When symmetric sessions are created, it may fail due to non-critical err

[PATCH v2] ethdev: add Tx queue flow matching item

2023-05-08 Thread kirankumark
From: Kiran Kumar K Adding support for Tx queue flow matching item. This item is valid only for egress rules. An example use case would be that application can set different vlan insert rules with different PCP values based on Tx queue number. Signed-off-by: Kiran Kumar K --- app/test-pmd/cmdl

Re: [PATCH v2 0/3] vhost: add device op to offload the interrupt kick

2023-05-08 Thread Eelco Chaudron
On 5 Apr 2023, at 14:40, Eelco Chaudron wrote: > This series adds an operation callback which gets called every time the > library wants to call eventfd_write(). This eventfd_write() call could > result in a system call, which could potentially block the PMD thread. > > The callback function ca

Re: [PATCH] net/ice: fix dcf init rss blocked

2023-05-08 Thread Tyler Retzlaff
On Sat, May 06, 2023 at 02:48:22PM +0800, Kaiwen Deng wrote: > The i variable type is uint8_t which causes a dead loop, > changing it to uint32_t will solve this issue. > > Fixes: 3220d865382c ("net/ice: init RSS during DCF start") > Cc: sta...@dpdk.org > > Signed-off-by: Kaiwen Deng > --- > dr

Re: 21.11.4 patches review and test

2023-05-08 Thread Kevin Traynor
On 05/05/2023 02:42, Xu, HailinX wrote: -Original Message- From: Kevin Traynor Sent: Thursday, May 4, 2023 6:11 PM To: Xu, HailinX ; sta...@dpdk.org Cc: Stokes, Ian ; Mcnamara, John ; Luca Boccassi ; Xu, Qian Q ; Thomas Monjalon ; Peng, Yuan ; Chen, Zhaoyan ; dev@dpdk.org Subject: Re: 21

Re: [PATCH v2] net/gve: add maintainers for GVE

2023-05-08 Thread Joshua Washington
acked-by: Joshua Washington

Re: [PATCH v2] net/gve: add maintainers for GVE

2023-05-08 Thread Jeroen de Borst
acked-by: Jeroen de Borst On Mon, May 8, 2023 at 8:26 AM Joshua Washington wrote: > > acked-by: Joshua Washington

Re: [PATCH] net/gve: Check whether the driver is compatible with the device presented.

2023-05-08 Thread Ferruh Yigit
On 5/8/2023 7:23 AM, Rushil Gupta wrote: >>> +#ifndef _GVE_VERSION_H_ >>> +#define _GVE_VERSION_H_ >>> + >>> +#include >>> + >>> +#define GVE_VERSION_PREFIX "DPDK-" >>> +#define GVE_VERSION_MAJOR 1 >>> +#define GVE_VERSION_MINOR 0 >>> +#define GVE_VERSION_SUB 0 >>> + >> Is this GVE base version, o

RE: [PATCH v3 5/5] config/arm: add AMD CDX

2023-05-08 Thread Honnappa Nagarahalli
> >> > >> On 4/21/2023 3:54 PM, Nipun Gupta wrote: > >>> Adding support for AMD CDX devices > >>> > >>> Signed-off-by: Nipun Gupta > >>> --- > >>> config/arm/arm64_cdx_linux_gcc | 17 + > >>> config/arm/meson.build | 14 ++ > >>> 2 files changed, 31 insertion

Re: [PATCH v2] net/gve: add maintainers for GVE

2023-05-08 Thread Ferruh Yigit
>> On 5/8/2023 5:49 AM, Rushil Gupta wrote: Moved and accumulated acks down. >> >>> On Thu, May 4, 2023 at 7:19 PM Junfeng Guo wrote: Add maintainers from Google for GVE. Signed-off-by: Junfeng Guo Signed-off-by: Jeroen de Borst Signed-off-by: Rushil Gupta

Re: [PATCH v3 5/5] config/arm: add AMD CDX

2023-05-08 Thread Ferruh Yigit
On 5/8/2023 6:16 PM, Honnappa Nagarahalli wrote: > > On 4/21/2023 3:54 PM, Nipun Gupta wrote: > Adding support for AMD CDX devices > > Signed-off-by: Nipun Gupta > --- > config/arm/arm64_cdx_linux_gcc | 17 + > config/arm/meson.build | 1

[v2] net/gve: check driver compatibility

2023-05-08 Thread Rushil Gupta
Change gve_driver_info fields to report DPDK as OS type and DPDK RTE version as OS version, reserving driver_version fields for GVE driver version based on features. Signed-off-by: Rushil Gupta Signed-off-by: Joshua Washington Signed-off-by: Junfeng Guo Signed-off-by: Jeroen de Borst --- driv

[v2] net/gve: check driver compatibility

2023-05-08 Thread Rushil Gupta
Change gve_driver_info fields to report DPDK as OS type and DPDK RTE version as OS version, reserving driver_version fields for GVE driver version based on features. Signed-off-by: Rushil Gupta Signed-off-by: Joshua Washington Signed-off-by: Junfeng Guo Signed-off-by: Jeroen de Borst --- driv

Re: [PATCH] net/gve: Check whether the driver is compatible with the device presented.

2023-05-08 Thread Rushil Gupta
Sounds good. I will document the versioning in a separate patch. For now, the DPDK driver with DQO changes is reported as 1.0.0. I think there is some confusion here. The base code is not coming from the linux kernel driver. Linux kernel driver is in a different repository and it has nothing to do

[PATCH v5 0/3] add telemetry cmds for ring

2023-05-08 Thread Jie Hai
This patch set supports telemetry cmd to list rings and dump information of a ring by its name. v1->v2: 1. Add space after "switch". 2. Fix wrong strlen parameter. v2->v3: 1. Remove prefix "rte_" for static function. 2. Add Acked-by Konstantin Ananyev for PATCH 1. 3. Introduce functions to return

[PATCH v5 1/3] ring: fix unmatched type definition and usage

2023-05-08 Thread Jie Hai
Field 'flags' of struct rte_ring is defined as int type. However, it is used as unsigned int. To ensure consistency, change the type of flags to unsigned int. Since these two types has the same byte size, this change is not an ABI change. Fixes: cc4b218790f6 ("ring: support configurable element si

[PATCH v5 2/3] ring: add telemetry cmd to list rings

2023-05-08 Thread Jie Hai
Add a telemetry command to list the rings used in the system. An example using this command is shown below: --> /ring/list { "/ring/list": [ "HT_:7d:00.2", "MP_mb_pool_0" ] } Signed-off-by: Jie Hai Acked-by: Konstantin Ananyev Reviewed-by: Honnappa Nagarahalli Acked-by: Huisong

[PATCH v5 3/3] ring: add telemetry cmd for ring info

2023-05-08 Thread Jie Hai
This patch supports dump of ring information by its name. An example using this command is shown below: --> /ring/info,MP_mb_pool_0 { "/ring/info": { "name": "MP_mb_pool_0", "socket": 0, "flags": "0x0", "producer_type": "MP", "consumer_type": "MC", "size": 262144, "ma

[PATCH v2] net/ice: fix dcf init rss blocked

2023-05-08 Thread Kaiwen Deng
The i variable type is uint8_t which causes a dead loop, changing it to size_t will solve this issue. Signed-off-by: Kaiwen Deng --- drivers/net/ice/ice_dcf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/ice/ice_dcf.c b/drivers/net/ice/ice_dcf.c index 1c3d22a

[PATCH net] net/vmxnet3: fix drop of empty segments in tx

2023-05-08 Thread Ronak Doshi
When empty segments are dropped, some descriptor variable values are updated in the segment processing loop before it is exited. This can lead to a wedged queue where all subsequent packets are dropped for this queue. Also move the check for empty packet to catch the case of a zero length packet w

[PATCH next] net/vmxnet3: add interrupt handling for reset

2023-05-08 Thread Ronak Doshi
vmxnet3 should call the reset callback when a queue is stopped by the host. This patch also fixes a logging issue. Currently, status of only first queue is checked and logged. But status of all queues should be checked. Signed-off-by: Ronak Doshi Acked-by: Jochen Behrens --- drivers/net/vmxnet3

[PATCH net v2] net/vmxnet3: fix drop of empty segments in tx

2023-05-08 Thread Ronak Doshi
When empty segments are dropped, some descriptor variable values are updated in the segment processing loop before it is exited. This can lead to a wedged queue where all subsequent packets are dropped for this queue. Also move the check for empty packet to catch the case of a zero length packet w

RE: [EXT] [PATCH v2 4/4] app: add testgraph application

2023-05-08 Thread Sunil Kumar Kori
Is there any user guide similar to testpmd ? > -Original Message- > From: Vamsi Attunuru > Sent: Tuesday, April 25, 2023 6:45 PM > To: dev@dpdk.org; tho...@monjalon.net; Jerin Jacob Kollanukkaran > > Cc: Vamsi Krishna Attunuru ; Nithin Kumar > Dabilpuram > Subject: [EXT] [PATCH v2 4/4]

[PATCH] net/gve: support queue start and stop operations

2023-05-08 Thread Junfeng Guo
Add support for queue operations for GQI: - gve_rx_queue_start - gve_tx_queue_start - gve_rx_queue_stop - gve_tx_queue_stop Add support for queue operations for DQO: - gve_rx_queue_start_dqo - gve_tx_queue_start_dqo - gve_rx_queue_stop_dqo - gve_tx_queue_stop_dqo Also move the funcs of rx

RE: [EXT] [PATCH v2 4/4] app: add testgraph application

2023-05-08 Thread Vamsi Krishna Attunuru
> -Original Message- > From: Sunil Kumar Kori > Sent: Tuesday, May 9, 2023 8:04 AM > To: Vamsi Krishna Attunuru ; dev@dpdk.org; > tho...@monjalon.net; Jerin Jacob Kollanukkaran > Cc: Vamsi Krishna Attunuru ; Nithin Kumar > Dabilpuram > Subject: RE: [EXT] [PATCH v2 4/4] app: add testgr

RE: [PATCH v3 5/5] config/arm: add AMD CDX

2023-05-08 Thread Gupta, Nipun
[AMD Official Use Only - General] > -Original Message- > From: Yigit, Ferruh > Sent: Monday, May 8, 2023 11:17 PM > To: Honnappa Nagarahalli ; Gupta, Nipun > ; dev@dpdk.org; tho...@monjalon.net; > david.march...@redhat.com; Ruifeng Wang > Cc: Anand, Harpreet ; Agarwal, Nikhil > ; nd >

RE: [RFC 17/27] vhost: add control virtqueue support

2023-05-08 Thread Xia, Chenbo
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com

RE: [RFC 18/27] vhost: add VDUSE device creation and destruction

2023-05-08 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com; > amore...

RE: [RFC 19/27] vhost: add VDUSE callback for IOTLB miss

2023-05-08 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com; > amore...

RE: [RFC 20/27] vhost: add VDUSE callback for IOTLB entry removal

2023-05-08 Thread Xia, Chenbo
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com

RE: [RFC 22/27] vhost: add VDUSE events handler

2023-05-08 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com; > amore...

RE: [RFC 21/27] vhost: add VDUSE callback for IRQ injection

2023-05-08 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com; > amore...

RE: [RFC 23/27] vhost: add support for virtqueue state get event

2023-05-08 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com; > amore...

RE: [RFC 24/27] vhost: add support for VDUSE status set event

2023-05-08 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com; > amore...

RE: [RFC 25/27] vhost: add support for VDUSE IOTLB update event

2023-05-08 Thread Xia, Chenbo
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com

RE: [RFC 26/27] vhost: add VDUSE device startup

2023-05-08 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com; > amore...

RE: [RFC 27/27] vhost: add multiqueue support to VDUSE

2023-05-08 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com; > amore...

RE: [PATCH v3 5/5] config/arm: add AMD CDX

2023-05-08 Thread Ruifeng Wang
> -Original Message- > From: Ferruh Yigit > Sent: Monday, May 8, 2023 7:27 PM > To: Gupta, Nipun ; dev@dpdk.org; tho...@monjalon.net; > david.march...@redhat.com; Honnappa Nagarahalli > ; Ruifeng > Wang > Cc: Anand, Harpreet ; Agarwal, Nikhil > > Subject: Re: [PATCH v3 5/5] config/arm:

[PATCH v6 00/15] graph enhancement for multi-core dispatch

2023-05-08 Thread Zhirun Yan
V6: Change rte_rdtsc() to rte_rdtsc_precise(). Add union in rte_graph_param to configure models. Remove memset in fastpath, add RTE_ASSERT for cloned graph. Update copyright in patch 02. Update l3fwd-graph node affinity, start from rx core successively. V5: Fix CI build issues about dynamically up

[PATCH v6 01/15] graph: rename rte_graph_work as common

2023-05-08 Thread Zhirun Yan
Rename rte_graph_work.h to rte_graph_work_common.h for supporting multiple graph worker model. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- MAINTAINERS | 1 + lib/graph/graph_pcap.c

[PATCH v6 02/15] graph: split graph worker into common and default model

2023-05-08 Thread Zhirun Yan
To support multiple graph worker model, split graph into common and default. Naming the current walk function as rte_graph_model_rtc cause the default model is RTC(Run-to-completion). Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/graph_pcap.c

[PATCH v6 03/15] graph: move node process into inline function

2023-05-08 Thread Zhirun Yan
Node process is a single and reusable block, move the code into an inline function. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/rte_graph_model_rtc.h | 20 ++--- lib/graph/rte_graph_worker_common.h | 33 +++

[PATCH v6 04/15] graph: add get/set graph worker model APIs

2023-05-08 Thread Zhirun Yan
Add new get/set APIs to configure graph worker model which is used to determine which model will be chosen. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/meson.build | 1 + lib/graph/rte_graph_worker.c| 54 +++

[PATCH v6 05/15] graph: introduce graph node core affinity API

2023-05-08 Thread Zhirun Yan
Add lcore_id for node to hold affinity core id and impl rte_graph_model_dispatch_lcore_affinity_set to set node affinity with specific lcore. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/graph_private.h| 1 + lib/graph/meson.build

[PATCH v6 06/15] graph: introduce graph bind unbind API

2023-05-08 Thread Zhirun Yan
Add lcore_id for graph to hold affinity core id where graph would run on. Add bind/unbind API to set/unset graph affinity attribute. lcore_id will be set as MAX by default, it means not enable this attribute. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan ---

[PATCH v6 07/15] graph: introduce graph clone API for other worker core

2023-05-08 Thread Zhirun Yan
This patch adds graph API for supporting to clone the graph object for a specified worker core. The new graph will also clone all nodes. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/graph.c | 110 ++

[PATCH v6 08/15] graph: add struct for stream moving between cores

2023-05-08 Thread Zhirun Yan
Add graph_sched_wq_node to hold graph scheduling workqueue node. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/graph.c | 1 + lib/graph/graph_populate.c | 1 + lib/graph/graph_private.h | 12

[PATCH v6 09/15] graph: introduce stream moving cross cores

2023-05-08 Thread Zhirun Yan
This patch introduces key functions to allow a worker thread to enable enqueue and move streams of objects to the next nodes over different cores. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/graph.c| 6 +- lib/graph/grap

[PATCH v6 10/15] graph: enable create and destroy graph scheduling workqueue

2023-05-08 Thread Zhirun Yan
This patch enables to create and destroy scheduling workqueue into common graph operations. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/graph.c | 9 + 1 file changed, 9 insertions(+) diff --git a/lib/graph/graph.c b/lib/graph/graph.c

[PATCH v6 11/15] graph: introduce graph walk by cross-core dispatch

2023-05-08 Thread Zhirun Yan
This patch introduces the task scheduler mechanism to enable dispatching tasks to another worker cores. Currently, there is only a local work queue for one graph to walk. We introduce a scheduler worker queue in each worker core for dispatching tasks. It will perform the walk on scheduler work queu

[PATCH v6 12/15] graph: enable graph multicore dispatch scheduler model

2023-05-08 Thread Zhirun Yan
This patch enables to chose new scheduler model. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/rte_graph_worker.h | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/graph/rte_graph_worker.h b/lib/graph/rte_graph_wor

[PATCH v6 13/15] graph: add stats for cross-core dispatching

2023-05-08 Thread Zhirun Yan
Add stats for cross-core dispatching scheduler if stats collection is enabled. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- lib/graph/graph_debug.c | 6 +++ lib/graph/graph_stats.c | 74 +--- lib/graph/

[PATCH v6 15/15] doc: update multicore dispatch model in graph guides

2023-05-08 Thread Zhirun Yan
Update graph documentation to introduce new multicore dispatch model. Signed-off-by: Haiyue Wang Signed-off-by: Cunming Liang Signed-off-by: Zhirun Yan --- doc/guides/prog_guide/graph_lib.rst | 59 +++-- 1 file changed, 55 insertions(+), 4 deletions(-) diff --git a/doc

[PATCH v6 14/15] examples/l3fwd-graph: introduce multicore dispatch worker model

2023-05-08 Thread Zhirun Yan
Add new parameter "model" to choose dispatch or rtc worker model. And in dispatch model, the node will affinity to worker core successively. Note: only support one RX node for remote model in current implementation. ./dpdk-l3fwd-graph -l 8,9,10,11 -n 4 -- -p 0x1 --config="(0,0,9)" -P --model="di

Re: [PATCH 4/4] app: add testgraph application

2023-05-08 Thread Jerin Jacob
On Fri, Apr 21, 2023 at 11:33 AM Vamsi Attunuru wrote: > > Patch adds test-graph application to validate graph > and node libraries. > > Signed-off-by: Vamsi Attunuru + haiyue.w...@intel.com cunming.li...@intel.com zhirun@intel.com for review to align with new multi-core dispatch model. >

RE: [PATCH v5 1/3] ring: fix unmatched type definition and usage

2023-05-08 Thread Ruifeng Wang
> -Original Message- > From: Jie Hai > Sent: Tuesday, May 9, 2023 9:29 AM > To: Honnappa Nagarahalli ; Konstantin Ananyev > ; Ruifeng Wang ; Gavin > Hu > ; Olivier Matz ; Dharmik Jayesh > Thakkar > > Cc: dev@dpdk.org; liudongdo...@huawei.com > Subject: [PATCH v5 1/3] ring: fix unmatched

RE: [PATCH v5 3/3] ring: add telemetry cmd for ring info

2023-05-08 Thread Morten Brørup
> From: Jie Hai [mailto:haij...@huawei.com] > Sent: Tuesday, 9 May 2023 03.29 > > This patch supports dump of ring information by its name. > An example using this command is shown below: > > --> /ring/info,MP_mb_pool_0 > { > "/ring/info": { > "name": "MP_mb_pool_0", > "socket": 0, >

RE: [PATCH v4 1/4] bus/cdx: introduce cdx bus

2023-05-08 Thread Xia, Chenbo
> -Original Message- > From: Nipun Gupta > Sent: Monday, May 8, 2023 7:18 PM > To: dev@dpdk.org; tho...@monjalon.net; david.march...@redhat.com > Cc: ferruh.yi...@amd.com; harpreet.an...@amd.com; nikhil.agar...@amd.com; > Nipun Gupta > Subject: [PATCH v4 1/4] bus/cdx: introduce cdx bus >