[PATCH] ice: fix build error on 32bit configure

2023-07-05 Thread Yiding Zhou
Replace 'rte_memcpy' with 'memcpy' like other PMD code to avoid errors when compiling with GCC-12 on 32-bit configure. Compiler reports the follow error: error: array subscript 8 is outside array bounds of "struct rte_mbuf *[32]" [-Werror=array-bounds] Fixes: c68a52b8b38c ("net/ice: support vect

RE: [PATCH] drivers/ipsec_mb: fix aesni_mb set session ID

2023-07-05 Thread De Lara Guarch, Pablo
> -Original Message- > From: Power, Ciara > Sent: Friday, June 30, 2023 9:35 AM > To: dev@dpdk.org > Cc: Ji, Kai ; Power, Ciara ; De Lara > Guarch, Pablo > Subject: [PATCH] drivers/ipsec_mb: fix aesni_mb set session ID > > In the case of multiprocess, when the same session is being us

[PATCH] child process synchronization NIC startup parameters

2023-07-05 Thread Kaisen You
In meson_test, because the child process does not synchronize the NIC startup parameters of the parent process at startup, it uses all NICs bound by vfio as startup parameters by default, and an exception occurs in the subsequent hugefile check, causing the test to fail. Synchronize the NIC startup

Re: [PATCH] eventdev: remove single-event enqueue operation

2023-07-05 Thread Jerin Jacob
On Tue, Jul 4, 2023 at 5:29 PM Mattias Rönnblom wrote: > > Eliminate non-burst enqueue operation from Eventdev. > > The effect of this change is to reduce Eventdev code complexity > somewhat and slightly improve performance. > > The single-event enqueue shortcut provided a very minor performance >

Re: [PATCH v2] app/testpmd: fix invalid queue ID when start port

2023-07-05 Thread Ferruh Yigit
On 7/5/2023 4:16 AM, lihuisong (C) wrote: > > 在 2023/7/4 18:59, Ferruh Yigit 写道: >> On 7/4/2023 9:45 AM, Jie Hai wrote: >>> Function update_queue_state updates queue state of all queues >>> of all ports, using the queue num nb_rxq|nb_txq stored locally >>> by testpmd. An error on the invalid queue

Re: [PATCH v2] app/testpmd: fix invalid queue ID when start port

2023-07-05 Thread Ferruh Yigit
On 7/5/2023 9:02 AM, Ferruh Yigit wrote: > On 7/5/2023 4:16 AM, lihuisong (C) wrote: >> >> 在 2023/7/4 18:59, Ferruh Yigit 写道: >>> On 7/4/2023 9:45 AM, Jie Hai wrote: Function update_queue_state updates queue state of all queues of all ports, using the queue num nb_rxq|nb_txq stored locall

Re: [PATCH] eventdev: remove single-event enqueue operation

2023-07-05 Thread Mattias Rönnblom
On 2023-07-05 09:47, Jerin Jacob wrote: On Tue, Jul 4, 2023 at 5:29 PM Mattias Rönnblom wrote: Eliminate non-burst enqueue operation from Eventdev. The effect of this change is to reduce Eventdev code complexity somewhat and slightly improve performance. The single-event enqueue shortcut pro

[PATCH] eventdev: announce single-event enqueue/dequeue ABI change

2023-07-05 Thread Mattias Rönnblom
Announce the removal of the single-event enqueue and dequeue operations from the eventdev ABI. Signed-off-by: Mattias Rönnblom --- doc/guides/rel_notes/deprecation.rst | 8 1 file changed, 8 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/depreca

[PATCH v1 0/2] fix memory leak

2023-07-05 Thread Wenjun Wu
This patch set fix memory leak in vdev and example hotplug_mp. Wenjun Wu (2): bus/vdev: fix memory leak examples/multi_process: fix memory leak drivers/bus/vdev/vdev.c | 5 + examples/multi_process/hotplug_mp/commands.c | 22 2 files changed, 27

[PATCH v1 1/2] bus/vdev: fix memory leak

2023-07-05 Thread Wenjun Wu
In hotplug usecase, devargs will be allocated in secondary process in the function alloc_devargs. Since it will not be insert into the devarg_list, it will have no chance to be freed. This patch adds additional memory free for device structure member devargs in the secondary process in rte_vdev_un

[PATCH v1 2/2] examples/multi_process: fix memory leak

2023-07-05 Thread Wenjun Wu
The device should be detached before quit, otherwise it will cause memory leak. Fixes: 05f1d6842fc3 ("examples/multi_process: add hotplug sample") Cc: sta...@dpdk.org Signed-off-by: Wenjun Wu --- examples/multi_process/hotplug_mp/commands.c | 22 1 file changed, 22 insertio

[PATCH] child process synchronization NIC startup parameters

2023-07-05 Thread Kaisen You
In meson_test, because the child process does not synchronize the NIC startup parameters of the parent process at startup, it uses all NICs bound by vfio as startup parameters by default, and an exception occurs in the subsequent hugefile check, causing the test to fail. Synchronize the NIC startup

Re: [PATCH v2] app/testpmd: fix invalid queue ID when start port

2023-07-05 Thread lihuisong (C)
在 2023/7/5 16:02, Ferruh Yigit 写道: On 7/5/2023 4:16 AM, lihuisong (C) wrote: 在 2023/7/4 18:59, Ferruh Yigit 写道: On 7/4/2023 9:45 AM, Jie Hai wrote: Function update_queue_state updates queue state of all queues of all ports, using the queue num nb_rxq|nb_txq stored locally by testpmd. An erro

[PATCH] net/mlx5: fix non-ip packets are not delivered when RSS hash type ESP is used.

2023-07-05 Thread Maayan Kashani
Non-ip packets such as ARP or LACP are not delivered if you use RTE flow rule with empty pattern and rss action with specific combination of RSS hash types: "ipv4-tcp ipv4-udp ipv4-other ipv6-tcp ipv6-udp ipv6-other esp". The stack which used for RSS expansion was overflowed and trashed rss exp

RE: [PATCH] cryptodev: fix device socket ID type

2023-07-05 Thread Morten Brørup
In my opinion, changing the type to the conventional type used for socket_id seems like a much better solution than just changing the signedness, as proposed in another RFC [1]. (If we used more specialized types, like socket_id_t, we wouldn't even have this discussion. It is the DPDK conventio

[v2 1/2] doc: add policy for adding vendor PMD specific examples

2023-07-05 Thread Hemant Agrawal
This patch update the dpdk sample app policy to support vendor PMD specific test examples in the respective drivers sub-directory in examples. Signed-off-by: Hemant Agrawal Acked-by: Jerin Jacob --- doc/guides/sample_app_ug/intro.rst | 12 1 file changed, 12 insertions(+) diff --g

[v2 2/2] examples: move vendor specific apps to drivers sub directory

2023-07-05 Thread Hemant Agrawal
As approved by DPDK technical board on 2021-03-24 NTB raw driver example application will be moved to example/rawdev/ to avoid PMD specific example application to show up in examples directory. Signed-off-by: Hemant Agrawal --- doc/guides/sample_app_ug/ntb.rst | 2 +- examples/meson.build

[PATCH] crypto/ipsec_mb: fix jobs array used for burst

2023-07-05 Thread Ciara Power
The jobs variable was global, which meant it was not thread safe. This casued a segmentation fault when running the crypto performance app, using more than one lcore for crypto processing. Moving this to the dequeue function where it is used fixes the issue. Fixes: b50b8b5b38f8 ("crypto/ipsec_mb:

Re: [PATCH] crypto/ipsec_mb: fix jobs array used for burst

2023-07-05 Thread Ji, Kai
Acked-by: Kai Ji mailto:kai...@intel.com>> From: Power, Ciara Sent: 05 July 2023 11:15 To: dev@dpdk.org Cc: gak...@marvell.com ; De Lara Guarch, Pablo ; Power, Ciara ; Cornu, Marcel D ; Ji, Kai Subject: [PATCH] crypto/ipsec_mb: fix jobs array used for burst Th

[PATCH v2] crypto/ipsec_mb: fix jobs array used for burst

2023-07-05 Thread Ciara Power
The jobs variable was global, which meant it was not thread safe. This caused a segmentation fault when running the crypto performance app, using more than one lcore for crypto processing. Moving this to the dequeue function where it is used fixes the issue. Fixes: b50b8b5b38f8 ("crypto/ipsec_mb:

[PATCH] app/crypto-perf: fix socket ID default value

2023-07-05 Thread Ciara Power
Due to recent changes to the default device socket ID, before being used as an index for session mempool list, the socket ID should be set to 0 if unknown (-1). Fixes: 7dcd73e37965 ("drivers/bus: set device NUMA node to unknown by default") Cc: olivier.m...@6wind.com Cc: sta...@dpdk.org Signed-of

[PATCH] net/iavf: fix Tunnel TSO path selecting.

2023-07-05 Thread Ke Xu
IAVF curerently supports TSO and Tunnel TSO. Both these two features are implemented in scalar path. As there are missed flags for Tunnel TSO, it selects vector paths wrongly when only Tunnel TSO is enabled. This patch added the missed flags to fix the Tunnel TSO path selecting. Signed-off-by:

[PATCH v2] cryptodev: fix device socket ID type

2023-07-05 Thread Ciara Power
The socket ID field for a cryptodev device data was unsigned int. Due to recent changes to the default device socket ID, this caused an issue when the socket ID was unknown and set to -1. The device socket ID wrapped around to 255, and caused errors when allocating memory. Changing this field type

[PATCH] doc: add information to update dma entry limit

2023-07-05 Thread Nipun Gupta
VFIO module provides configurable dma_entry_limit parameter to store the DMA entries. By default this is 64K and if we are using --no-huge, we shall need to increase the value of dma_entry_limit. Add commands in linux_gsg document to change the dma_entry_limit. Signed-off-by: Nipun Gupta --- doc

Re: [PATCH] doc: announce deprecation for security ops

2023-07-05 Thread Hemant Agrawal
Acked-by: Hemant Agrawal On 05-Jul-23 1:14 AM, Akhil Goyal wrote: Caution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, report the message using the 'Report this email' button Structure rte_security_ops and rte_security_ctx are meant

[PATCH v4 0/4] net/mlx5: introduce Tx datapath tracing

2023-07-05 Thread Viacheslav Ovsiienko
The mlx5 provides the send scheduling on specific moment of time, and for the related kind of applications it would be extremely useful to have extra debug information - when and how packets were scheduled and when the actual sending was completed by the NIC hardware (it helps application to track

[PATCH v4 2/4] net/mlx5: add comprehensive send completion trace

2023-07-05 Thread Viacheslav Ovsiienko
There is the demand to trace the send completions of every WQE if time scheduling is enabled. The patch extends the size of completion queue and requests completion on every issued WQE in the send queue. As the result hardware provides CQE on each completed WQE and driver is able to fetch completi

[PATCH v4 1/4] net/mlx5: introduce tracepoints for mlx5 drivers

2023-07-05 Thread Viacheslav Ovsiienko
There is an intention to engage DPDK tracing capabilities for mlx5 PMDs monitoring and profiling in various modes. The patch introduces tracepoints for the Tx datapath in the ethernet device driver. To engage this tracing capability the following steps should be taken: - meson option -Denable_tra

[PATCH v4 3/4] net/mlx5: add Tx datapath trace analyzing script

2023-07-05 Thread Viacheslav Ovsiienko
The Python script is intended to analyze mlx5 PMD datapath traces and report: - tx_burst routine timings - how packets are pushed to WQEs - how packet sending is completed with timings Signed-off-by: Viacheslav Ovsiienko --- drivers/net/mlx5/tools/mlx5_trace.py | 307 ++

[PATCH v4 4/4] doc: add mlx5 datapath tracing feature description

2023-07-05 Thread Viacheslav Ovsiienko
The mlx5 provides the send scheduling on specific moment of time, and for the related kind of applications it would be extremely useful to have extra debug information - when and how packets were scheduled and when the actual sending was completed by the NIC hardware (it helps application to track

RE: [PATCH] doc: update iavf feature list

2023-07-05 Thread Zhang, Qi Z
> -Original Message- > From: Zeng, ZhichaoX > Sent: Wednesday, July 5, 2023 2:03 PM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; Zeng, ZhichaoX > ; Wu, Jingjing ; Xing, Beilei > > Subject: [PATCH] doc: update iavf feature list > > The iavf supports timestamp offload on vector path. > > Sig

[PATCH v2] doc: announce single-event enqueue/dequeue ABI change

2023-07-05 Thread Mattias Rönnblom
Announce the removal of the single-event enqueue and dequeue operations from the eventdev ABI. Signed-off-by: Mattias Rönnblom --- PATCH v2: Fix commit subject prefix. --- doc/guides/rel_notes/deprecation.rst | 8 1 file changed, 8 insertions(+) diff --git a/doc/guides/rel_notes/depre

Re: [PATCH v2] cryptodev: fix device socket ID type

2023-07-05 Thread Konstantin Ananyev
05/07/2023 11:36, Ciara Power пишет: The socket ID field for a cryptodev device data was unsigned int. Due to recent changes to the default device socket ID, this caused an issue when the socket ID was unknown and set to -1. The device socket ID wrapped around to 255, and caused errors when alloc

Re: [PATCH] doc: announce deprecation for security ops

2023-07-05 Thread Konstantin Ananyev
04/07/2023 20:44, Akhil Goyal пишет: Structure rte_security_ops and rte_security_ctx are meant to be used by rte_security library and the PMDs associated. These will be moved to an internal header in DPDK 23.11 release. Signed-off-by: Akhil Goyal --- doc/guides/rel_notes/deprecation.rst | 3 +

Re: [PATCH v4 1/4] doc: announce new cpu flag added to rte_cpu_flag_t

2023-07-05 Thread Konstantin Ananyev
18/04/2023 09:25, Sivaprasad Tummala пишет: A new flag RTE_CPUFLAG_MONITORX is added to rte_cpu_flag_t in DPDK 23.07 release to support monitorx instruction on EPYC processors. This results in ABI breakage for legacy apps. Signed-off-by: Sivaprasad Tummala --- doc/guides/rel_notes/deprecation

Re: [PATCH] doc: announce ethdev operation struct changes

2023-07-05 Thread Konstantin Ananyev
04/07/2023 09:10, Feifei Wang пишет: To support mbufs recycle mode, announce the coming ABI changes from DPDK 23.11. Signed-off-by: Feifei Wang Reviewed-by: Ruifeng Wang --- doc/guides/rel_notes/deprecation.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/dep

Re: [PATCH v2] pcap: support MTU set

2023-07-05 Thread Ferruh Yigit
On 7/4/2023 10:02 PM, Stephen Hemminger wrote: > Support rte_eth_dev_set_mtu for pcap driver when the > pcap device is convigured to point to a network interface. > > This is rebased an consolidated from earlier version. > Added support for FreeBSD. > As far as I understand motivation is to make

Re: [PATCH v2] app/testpmd: fix invalid queue ID when start port

2023-07-05 Thread Ferruh Yigit
On 7/5/2023 10:40 AM, lihuisong (C) wrote: > > 在 2023/7/5 16:02, Ferruh Yigit 写道: >> On 7/5/2023 4:16 AM, lihuisong (C) wrote: >>> 在 2023/7/4 18:59, Ferruh Yigit 写道: On 7/4/2023 9:45 AM, Jie Hai wrote: > Function update_queue_state updates queue state of all queues > of all ports, usi

RE: [PATCH v2] crypto/ipsec_mb: fix jobs array used for burst

2023-07-05 Thread De Lara Guarch, Pablo
> -Original Message- > From: Power, Ciara > Sent: Wednesday, July 5, 2023 11:26 AM > To: dev@dpdk.org > Cc: gak...@marvell.com; De Lara Guarch, Pablo > ; Power, Ciara ; > Cornu, Marcel D ; Ji, Kai > Subject: [PATCH v2] crypto/ipsec_mb: fix jobs array used for burst > > The jobs variab

Re: [PATCH] doc: add information to update dma entry limit

2023-07-05 Thread Thomas Monjalon
05/07/2023 12:53, Nipun Gupta: > VFIO module provides configurable dma_entry_limit > parameter to store the DMA entries. By default this > is 64K and if we are using --no-huge, we shall need > to increase the value of dma_entry_limit. Add > commands in linux_gsg document to change the > dma_entry_l

Re: [PATCH v2] doc: announce single-event enqueue/dequeue ABI change

2023-07-05 Thread Jerin Jacob
On Wed, Jul 5, 2023 at 4:48 PM Mattias Rönnblom wrote: > > Announce the removal of the single-event enqueue and dequeue > operations from the eventdev ABI. > > Signed-off-by: Mattias Rönnblom Acked-by: Jerin Jacob > > --- > PATCH v2: Fix commit subject prefix. > --- > doc/guides/rel_notes/de

RE: [EXT] Re: [PATCH v2] doc: announce single-event enqueue/dequeue ABI change

2023-07-05 Thread Pavan Nikhilesh Bhagavatula
> On Wed, Jul 5, 2023 at 4:48 PM Mattias Rönnblom > wrote: > > > > Announce the removal of the single-event enqueue and dequeue > > operations from the eventdev ABI. > > > > Signed-off-by: Mattias Rönnblom > > Acked-by: Jerin Jacob Acked-by: Pavan Nikhilesh > > > > > > --- > > PATCH v2: Fix

Re: [PATCH] app/crypto-perf: fix socket ID default value

2023-07-05 Thread Ji, Kai
Acked-by: Kai Ji mailto:kai...@intel.com>> From: Ciara Power Sent: 05 July 2023 11:30 To: dev@dpdk.org Cc: gak...@marvell.com ; Power, Ciara ; Matz, Olivier ; sta...@dpdk.org Subject: [PATCH] app/crypto-perf: fix socket ID default value Due to recent changes t

[PATCH 0/2] VDUSE fixes for v23.07

2023-07-05 Thread Maxime Coquelin
This small series brings a couple of VDUSE fixes for v23.07, discovered during testing with OVS-DPDK. Maxime Coquelin (2): vhost: fix vduse features negotiation vduse: fix missing event index features lib/vhost/socket.c | 19 +-- lib/vhost/vduse.c | 28 +++---

[PATCH 1/2] vhost: fix vduse features negotiation

2023-07-05 Thread Maxime Coquelin
The series introducing VDUSE support missed the application capability to disable supported features. This results in TSO being negotiated while not supported by the application. Fixes: 0adb8eccc6a6 ("vhost: add VDUSE device creation and destruction") Signed-off-by: Maxime Coquelin --- lib/vho

[PATCH 2/2] vduse: fix missing event index features

2023-07-05 Thread Maxime Coquelin
This features was mistakenly removed, add it back. Fixes: 0adb8eccc6a6 ("vhost: add VDUSE device creation and destruction") Signed-off-by: Maxime Coquelin --- lib/vhost/vduse.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vhost/vduse.h b/lib/vhost/vduse.h index cd55bfd858..46753fec73

[PATCH] crypto/qat: fix legacy sm4 ecb capability

2023-07-05 Thread Ciara Power
Following the deprecation of insecure algorithms in QAT, SM4-ECB should be included as legacy, to be disabled by default. Fixes: cffb726b7797 ("crypto/qat: enable insecure algorithms") Signed-off-by: Ciara Power --- drivers/crypto/qat/dev/qat_crypto_pmd_gen3.c | 6 +++--- 1 file changed, 3 inse

RE: [PATCH] drivers/ipsec_mb: fix aesni_mb set session ID

2023-07-05 Thread Akhil Goyal
> > Subject: [PATCH] drivers/ipsec_mb: fix aesni_mb set session ID > > > > In the case of multiprocess, when the same session is being used for both > > primary and secondary processes, the session ID will be the same. > > However the pointers are not available to the secondary process, so in this

Re: [PATCH 1/2] vhost: fix vduse features negotiation

2023-07-05 Thread David Marchand
On Wed, Jul 5, 2023 at 3:22 PM Maxime Coquelin wrote: > @@ -950,9 +954,14 @@ rte_vhost_driver_register(const char *path, uint64_t > flags) > * two values. > */ > vsocket->use_builtin_virtio_net = true; > - vsocket->supported_features = VIRTIO_NET_SUPPORTED_FEATURES

[PATCH v2] doc: add information to update dma entry limit

2023-07-05 Thread Nipun Gupta
VFIO module provides configurable dma_entry_limit parameter to store the DMA entries. By default this is 64K and if we are using --no-huge, we shall need to increase the value of dma_entry_limit. Add commands in linux_gsg document to change the dma_entry_limit. Signed-off-by: Nipun Gupta --- Cha

RE: [EXT] [PATCH] ipsec: fix NAT-T length calculation

2023-07-05 Thread Akhil Goyal
Hi Konstantin, Can you review this patch? > UDP header length is included in sa->hdr_len. Take care of that in > L3 header and pakcet length calculation. > > Fixes: 01eef5907fc3 ("ipsec: support NAT-T") > > Signed-off-by: Xiao Liang > --- > lib/ipsec/esp_outb.c | 2 +- > lib/ipsec/sa.c |

RE: [PATCH v2] crypto/ipsec_mb: fix jobs array used for burst

2023-07-05 Thread Akhil Goyal
> > Subject: [PATCH v2] crypto/ipsec_mb: fix jobs array used for burst > > > > The jobs variable was global, which meant it was not thread safe. > > This caused a segmentation fault when running the crypto performance app, > > using more than one lcore for crypto processing. > > > > Moving this to

Re: [PATCH] crypto/qat: fix legacy sm4 ecb capability

2023-07-05 Thread Ji, Kai
Acked-by: Kai Ji mailto:kai...@intel.com>> From: Power, Ciara Sent: 05 July 2023 14:23 To: dev@dpdk.org Cc: Ji, Kai ; O'Donovan, Saoirse ; Power, Ciara Subject: [PATCH] crypto/qat: fix legacy sm4 ecb capability Following the deprecation of insecure algorithms i

Re: [PATCH] doc: announce deprecation for security ops

2023-07-05 Thread Jerin Jacob
On Wed, Jul 5, 2023 at 5:01 PM Konstantin Ananyev wrote: > > 04/07/2023 20:44, Akhil Goyal пишет: > > Structure rte_security_ops and rte_security_ctx are meant to > > be used by rte_security library and the PMDs associated. > > These will be moved to an internal header in DPDK 23.11 release. > > >

Re: [PATCH v2] doc: announce addition of new security IPsec SA option

2023-07-05 Thread Jerin Jacob
On Tue, Jul 4, 2023 at 10:45 AM Nithin Dabilpuram wrote: > > Announce addition of new security IPsec SA option to enable > out of place processing in Ingress Inline inbound SA's. > > Signed-off-by: Nithin Dabilpuram > Acked-by: Akhil Goyal Acked-by: Jerin Jacob > --- > > v2: > - Modified depr

[PATCH] app/testpmd: revert primary process polling all queues fix

2023-07-05 Thread Ferruh Yigit
For some drivers [1], testpmd forwarding is broken with commit [2]. This is because with [2] testpmd gets queue state from ethdev and forwarding is done only on queues in started state, but some drivers don't update queue status properly, and this breaks forwarding for those drivers. Drivers shou

[PATCH] doc: support IPsec Multi-buffer lib v1.4

2023-07-05 Thread Ciara Power
Updated AESNI MB and AESNI GCM, KASUMI, ZUC, SNOW3G and CHACHA20_POLY1305 PMD documentation guides with information about the latest Intel IPsec Multi-buffer library supported. Signed-off-by: Ciara Power --- doc/guides/cryptodevs/aesni_gcm.rst | 6 +++--- doc/guides/cryptodevs/aesni_mb.r

Re: [PATCH v2] pcap: support MTU set

2023-07-05 Thread Stephen Hemminger
On Wed, 5 Jul 2023 12:37:41 +0100 Ferruh Yigit wrote: > On 7/4/2023 10:02 PM, Stephen Hemminger wrote: > > Support rte_eth_dev_set_mtu for pcap driver when the > > pcap device is convigured to point to a network interface. > > > > This is rebased an consolidated from earlier version. > > Added s

RE: [PATCH] doc: support IPsec Multi-buffer lib v1.4

2023-07-05 Thread Dooley, Brian
Hey Ciara, > -Original Message- > From: Ciara Power > Sent: Wednesday, July 5, 2023 3:34 PM > To: dev@dpdk.org > Cc: Ji, Kai ; De Lara Guarch, Pablo > ; Power, Ciara > Subject: [PATCH] doc: support IPsec Multi-buffer lib v1.4 > > Updated AESNI MB and AESNI GCM, KASUMI, ZUC, SNOW3G and >

[PATCH v5 1/4] net/mlx5: introduce tracepoints for mlx5 drivers

2023-07-05 Thread Viacheslav Ovsiienko
There is an intention to engage DPDK tracing capabilities for mlx5 PMDs monitoring and profiling in various modes. The patch introduces tracepoints for the Tx datapath in the ethernet device driver. To engage this tracing capability the following steps should be taken: - meson option -Denable_tra

[PATCH v5 2/4] net/mlx5: add comprehensive send completion trace

2023-07-05 Thread Viacheslav Ovsiienko
There is the demand to trace the send completions of every WQE if time scheduling is enabled. The patch extends the size of completion queue and requests completion on every issued WQE in the send queue. As the result hardware provides CQE on each completed WQE and driver is able to fetch completi

[PATCH v5 0/4] net/mlx5: introduce Tx datapath tracing

2023-07-05 Thread Viacheslav Ovsiienko
The mlx5 provides the send scheduling on specific moment of time, and for the related kind of applications it would be extremely useful to have extra debug information - when and how packets were scheduled and when the actual sending was completed by the NIC hardware (it helps application to track

[PATCH v5 3/4] net/mlx5: add Tx datapath trace analyzing script

2023-07-05 Thread Viacheslav Ovsiienko
The Python script is intended to analyze mlx5 PMD datapath traces and report: - tx_burst routine timings - how packets are pushed to WQEs - how packet sending is completed with timings Signed-off-by: Viacheslav Ovsiienko --- drivers/net/mlx5/tools/mlx5_trace.py | 307 ++

[PATCH v5 4/4] doc: add mlx5 datapath tracing feature description

2023-07-05 Thread Viacheslav Ovsiienko
The mlx5 provides the send scheduling on specific moment of time, and for the related kind of applications it would be extremely useful to have extra debug information - when and how packets were scheduled and when the actual sending was completed by the NIC hardware (it helps application to track

RE: [PATCH] crypto/qat: fix legacy sm4 ecb capability

2023-07-05 Thread O'Donovan, Saoirse
Hi Ciara, > -Original Message- > From: Power, Ciara > Sent: Wednesday 5 July 2023 14:23 > To: dev@dpdk.org > Cc: Ji, Kai ; O'Donovan, Saoirse > ; Power, Ciara > Subject: [PATCH] crypto/qat: fix legacy sm4 ecb capability > > Following the deprecation of insecure algorithms in QAT, SM4-EC

Re: [PATCH 1/1] app/test: resolve mbuf_test application failure

2023-07-05 Thread Olivier Matz
Hi Rakesh, On Tue, May 23, 2023 at 03:39:53PM +, Rakesh Kudurumalla wrote: > Ping > > Regards, > Rakesh > > > -Original Message- > > From: Rakesh Kudurumalla > > Sent: Wednesday, April 26, 2023 2:58 PM > > To: Olivier Matz > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Nithin >

Re: [PATCH] app/testpmd: revert primary process polling all queues fix

2023-07-05 Thread Ferruh Yigit
On 7/5/2023 3:32 PM, Ferruh Yigit wrote: > For some drivers [1], testpmd forwarding is broken with commit [2]. > > This is because with [2] testpmd gets queue state from ethdev and > forwarding is done only on queues in started state, but some drivers > don't update queue status properly, and this

Re: [dpdk-dev] [PATCH v5 1/4] eal: explain argv behaviour during init

2023-07-05 Thread Stephen Hemminger
On Mon, 5 Apr 2021 21:39:51 +0200 Thomas Monjalon wrote: > After argument parsing done by rte_eal_init(), > the remaining arguments are to be parsed by the application > by progressing in the argv array. > In this context, the first string represented by argv[0] is still > the same program name

Re: [PATCH 1/2] vhost: fix vduse features negotiation

2023-07-05 Thread Maxime Coquelin
Hi David, On 7/5/23 15:36, David Marchand wrote: On Wed, Jul 5, 2023 at 3:22 PM Maxime Coquelin wrote: @@ -950,9 +954,14 @@ rte_vhost_driver_register(const char *path, uint64_t flags) * two values. */ vsocket->use_builtin_virtio_net = true; - vsocket->support

Re: [PATCH 1/2] vhost: fix vduse features negotiation

2023-07-05 Thread David Marchand
On Wed, Jul 5, 2023 at 7:02 PM Maxime Coquelin wrote: > > On 7/5/23 15:36, David Marchand wrote: > > On Wed, Jul 5, 2023 at 3:22 PM Maxime Coquelin > > wrote: > >> @@ -950,9 +954,14 @@ rte_vhost_driver_register(const char *path, uint64_t > >> flags) > >> * two values. > >> */

[PATCH v11 1/2] mempool cache: add zero-copy get and put functions

2023-07-05 Thread Kamalakshitha Aligeri
From: Morten Brørup Zero-copy access to mempool caches is beneficial for PMD performance. Furthermore, having a zero-copy mempool API is considered a precondition for fixing a certain category of bugs, present in some PMDs: For performance reasons, some PMDs had bypassed the mempool API in order

[PATCH v11 2/2] net/i40e: replace put function

2023-07-05 Thread Kamalakshitha Aligeri
Integrated zero-copy put API in mempool cache in i40e PMD. On Ampere Altra server, l3fwd single core's performance improves by 5% with the new API Signed-off-by: Kamalakshitha Aligeri Reviewed-by: Ruifeng Wang Reviewed-by: Feifei Wang --- .mailmap| 1 + drivers

[dpdk-dev v1] examples/ipsec-secgw: fix of socket id default value

2023-07-05 Thread Kai Ji
Due to recent changes to the default device socket ID, before being used as an index for session mempool list, set socket ID to 0 if unknown (-1). Fixes: 7dcd73e37965 ("drivers/bus: set device NUMA node to unknown by default") Cc: olivier.m...@6wind.com Cc: sta...@dpdk.org Signed-off-by: Kai Ji

[PATCH v11 1/2] mempool cache: add zero-copy get and put functions

2023-07-05 Thread Kamalakshitha Aligeri
From: Morten Brørup Zero-copy access to mempool caches is beneficial for PMD performance. Furthermore, having a zero-copy mempool API is considered a precondition for fixing a certain category of bugs, present in some PMDs: For performance reasons, some PMDs had bypassed the mempool API in order

[PATCH v11 2/2] net/i40e: replace put function

2023-07-05 Thread Kamalakshitha Aligeri
Integrated zero-copy put API in mempool cache in i40e PMD. On Ampere Altra server, l3fwd single core's performance improves by 5% with the new API Signed-off-by: Kamalakshitha Aligeri Reviewed-by: Ruifeng Wang Reviewed-by: Feifei Wang --- drivers/net/i40e/i40e_rxtx_vec_common.h | 27 ++

RE: [EXT] [PATCH] app/crypto-perf: fix socket ID default value

2023-07-05 Thread Akhil Goyal
> Due to recent changes to the default device socket ID, > before being used as an index for session mempool list, > the socket ID should be set to 0 if unknown (-1). > > Fixes: 7dcd73e37965 ("drivers/bus: set device NUMA node to unknown by > default") > Cc: olivier.m...@6wind.com > Cc: sta...@dpd

RE: [PATCH] crypto/qat: fix legacy sm4 ecb capability

2023-07-05 Thread Akhil Goyal
> > Subject: [PATCH] crypto/qat: fix legacy sm4 ecb capability > > > > Following the deprecation of insecure algorithms in QAT, SM4-ECB should be > > included as legacy, to be disabled by default. > > > > Fixes: cffb726b7797 ("crypto/qat: enable insecure algorithms") > > > > Signed-off-by: Ciara Po

RE: [EXT] Re: [PATCH v2] cryptodev: fix device socket ID type

2023-07-05 Thread Akhil Goyal
> 05/07/2023 11:36, Ciara Power пишет: > > The socket ID field for a cryptodev device data was unsigned int. > > Due to recent changes to the default device socket ID, > > this caused an issue when the socket ID was unknown and set to -1. > > The device socket ID wrapped around to 255, > > and cau

RE: [PATCH] doc: support IPsec Multi-buffer lib v1.4

2023-07-05 Thread Akhil Goyal
> > Subject: [PATCH] doc: support IPsec Multi-buffer lib v1.4 > > > > Updated AESNI MB and AESNI GCM, KASUMI, ZUC, SNOW3G and > > CHACHA20_POLY1305 PMD documentation guides with information about > > the latest Intel IPsec Multi-buffer library supported. > > > > Signed-off-by: Ciara Power > Acked-

Re: [PATCH] ice: fix build error on 32bit configure

2023-07-05 Thread Luca Boccassi
On Wed, 5 Jul 2023 at 08:21, Yiding Zhou wrote: > > Replace 'rte_memcpy' with 'memcpy' like other PMD code to avoid errors when > compiling with GCC-12 on 32-bit configure. > > Compiler reports the follow error: > > error: array subscript 8 is outside array bounds of "struct rte_mbuf *[32]" > [-We

Re: [PATCH v3] dts: replace pexpect with fabric

2023-07-05 Thread Jeremy Spewock
Tested-by: Jeremy Spewock On Wed, Jun 21, 2023 at 2:33 PM Jeremy Spewock wrote: > Acked-by: Jeremy Spewock > > On Fri, Jun 9, 2023 at 5:46 AM Juraj Linkeš > wrote: > >> Pexpect is not a dedicated SSH connection library while Fabric is. With >> Fabric, all SSH-related logic is provided and we

[PATCH v7 0/5] Logging timetamp and related patches

2023-07-05 Thread Stephen Hemminger
Patchset that includes: - unified code for more of log argument handling - fix for duplicate option errors - timestamp option for logging v7 - consolidate patches - fix windows to have same getopt args as Linux and FreeBSD Stephen Hemminger (5): windows: make getopt functions have con

[PATCH v7 1/5] windows: make getopt functions have const properties

2023-07-05 Thread Stephen Hemminger
This aligns getopt, getopt_long, etc to have the same const attributes as Linux and FreeBSD. The changes are derived from the FreeBSD version of getopt_long. Signed-off-by: Stephen Hemminger --- lib/eal/windows/getopt.c | 23 --- lib/eal/windows/include/getopt.h | 8

[PATCH v7 2/5] eal: fix help message for syslog option

2023-07-05 Thread Stephen Hemminger
The --syslog flag takes facility argument. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/eal/common/eal_common_options.c b/lib/eal/common/eal_common_options.c index 03059336987d..005da4d12001 1006

[PATCH v7 3/5] eal: unify logging code

2023-07-05 Thread Stephen Hemminger
FreeBSD logging code was not using syslog and did not have the same options as Linux. Use a common set of functions for that. Pre-parsing for log level is common to all OS's. Now the pre-scan can return an error. A bad argument give to --log-level option was given the code would keep going. Use

[PATCH v7 4/5] eal: allow user to set default log stream before init

2023-07-05 Thread Stephen Hemminger
It is useful for application to be able to set the default log stream before call rte_eal_init(). This makes all messages go to the new default. For example, to skip using syslog; just doing rte_openlog_stream(stderr); There is no reason for helper command line applications to clutter sys

[PATCH v7 5/5] eal: add option to put timestamp on console output

2023-07-05 Thread Stephen Hemminger
When debugging driver or startup issues, it is useful to have a timestamp on each message printed. The messages in syslog already have a timestamp, but often syslog is not available during testing. The timestamp format is chosen to look like the default Linux dmesg timestamp. The first few lines a

[PATCH] MAINTAINERS: remove one maintainer from procinfo

2023-07-05 Thread Stephen Hemminger
Mail to marayam.tah...@intel.com is bouncing. Presume no longer at Intel. Signed-off-by: Stephen Hemminger --- MAINTAINERS | 1 - 1 file changed, 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index b5adba69d82d..d688b047b402 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1797,7 +1797,6 @

Re: [PATCH] doc: relax requirement on commit messages of security fixes

2023-07-05 Thread Stephen Hemminger
On Fri, 31 Mar 2023 12:37:40 +0200 Maxime Coquelin wrote: > Indeed! > > On 3/31/23 12:34, Thomas Monjalon wrote: > > We missed this patch, there was no comment. > > Please review. > > > > 10/03/2022 18:59, luca.bocca...@gmail.com: > >> From: Luca Boccassi > >> > >> Allow more flexibility wit

Re: [PATCH v2] eal/linux: enable the hugepage mem dump

2023-07-05 Thread Stephen Hemminger
On Wed, 6 Apr 2022 02:14:46 +0300 Dmitry Kozlyuk wrote: > > > > Don't merge this patch as is please; it would cause a lot of pain > > in a cloud environment. > > > > In our environment core dumps are collected (via systemd) and uploaded > > to a central server. With this kind of change the proc

Registration Reminder & CFP Call - DPDK Dublin Summit, Sep. 2023

2023-07-05 Thread Nathan Southern
Good evening DPDK Community, September 12-13, 2023 we will have the DPDK Summit at the Gibson Hotel in Point Square in Dublin. Registration and attendance for this event are *free!* Our Call for Speakers is just wrapping up - the deadline is this Friday, Jul. 7th at 11:59 PDT. If y Please put you

Re: [dpdk-dev] [PATCH v4 2/5] examples/multi_process: cleanup bus objects while terminating app

2023-07-05 Thread Stephen Hemminger
On Thu, 8 Oct 2020 21:00:44 +0530 rohit@nxp.com wrote: > +static void > +signal_handler(int signal) > +{ > + if (signal == SIGINT) > + rte_eal_cleanup(); NAK Call rte_eal_cleanup in signal handler is not safe. Need to set a flag and handle it in main code.

Re: [dpdk-dev] [PATCH v2 1/3] eal: add API for bus close

2023-07-05 Thread Stephen Hemminger
On Mon, 24 Aug 2020 13:54:12 +0530 rohit@nxp.com wrote: > 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 pat

[PATCH] mailmap: fix sorting

2023-07-05 Thread Stephen Hemminger
The mailmap file is supposed to be in sorted order, but several entries are in the wrong place. Signed-off-by: Stephen Hemminger --- .mailmap | 334 +++ 1 file changed, 167 insertions(+), 167 deletions(-) diff --git a/.mailmap b/.mailmap index

Re: [PATCH v1 1/2] bus/vdev: fix memory leak

2023-07-05 Thread fengchengwen
On 2023/7/5 17:25, Wenjun Wu wrote: > In hotplug usecase, devargs will be allocated in secondary process > in the function alloc_devargs. Since it will not be insert into the > devarg_list, it will have no chance to be freed. > > This patch adds additional memory free for device structure member d

Re: [PATCH] mailmap: fix sorting

2023-07-05 Thread Ferruh Yigit
On 7/6/2023 12:45 AM, Stephen Hemminger wrote: > The mailmap file is supposed to be in sorted order, > but several entries are in the wrong place. > > Signed-off-by: Stephen Hemminger > Hi Stephen, What are you using for sorting? When I use 'sort' binary [1] I get only a few lines of diff, but

Re: [PATCH v1 2/2] examples/multi_process: fix memory leak

2023-07-05 Thread fengchengwen
On 2023/7/5 17:25, Wenjun Wu wrote: > The device should be detached before quit, otherwise it will > cause memory leak. Which memory will leak? For mp, if secondary process quit, it only needs to properly handle the memory shared with other process. > > Fixes: 05f1d6842fc3 ("examples/multi_pro

RE: [PATCH] net/iavf: fix SCTP tunnel packet forwarding issue

2023-07-05 Thread Lu, Wenzhuo
Hi Qi, > -Original Message- > From: Zhang, Qi Z > Sent: Thursday, June 29, 2023 4:58 PM > To: Jiale, SongX ; Lu, Wenzhuo > ; dev@dpdk.org > Cc: Lu, Wenzhuo > Subject: RE: [PATCH] net/iavf: fix SCTP tunnel packet forwarding issue > > > > > -Original Message- > > From: Jiale, So

RE: [PATCH] net/iavf: fix SCTP tunnel packet forwarding issue

2023-07-05 Thread Zhang, Qi Z
> -Original Message- > From: Lu, Wenzhuo > Sent: Thursday, July 6, 2023 9:27 AM > To: Zhang, Qi Z ; Jiale, SongX ; > dev@dpdk.org > Subject: RE: [PATCH] net/iavf: fix SCTP tunnel packet forwarding issue > > Hi Qi, > > > -Original Message- > > From: Zhang, Qi Z > > Sent: Thurs

Re: [PATCH] mailmap: fix sorting

2023-07-05 Thread Stephen Hemminger
On Thu, 6 Jul 2023 01:58:03 +0100 Ferruh Yigit wrote: > On 7/6/2023 12:45 AM, Stephen Hemminger wrote: > > The mailmap file is supposed to be in sorted order, > > but several entries are in the wrong place. > > > > Signed-off-by: Stephen Hemminger > > > > Hi Stephen, > > What are you using

  1   2   >