[PATCH] net/i40e: updated 23.11 recommended matching list

2023-12-28 Thread Simei Su
Signed-off-by: Simei Su --- doc/guides/nics/i40e.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index 3432eab..15689ac 100644 --- a/doc/guides/nics/i40e.rst +++ b/doc/guides/nics/i40e.rst @@ -104,6 +104,8 @@ For X710/XL710/XXV710,

[PATCH] net/ice: updated 23.11 recommended matching list

2023-12-28 Thread Simei Su
Signed-off-by: Simei Su --- doc/guides/nics/ice.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/guides/nics/ice.rst b/doc/guides/nics/ice.rst index 820a385..09a4302 100644 --- a/doc/guides/nics/ice.rst +++ b/doc/guides/nics/ice.rst @@ -75,6 +75,8 @@ are listed in the Tested Platform

[Bug 1338] [dpdk-22.11.4] vhost_virtio_user_interrupt_with_power_monitor/perf_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample:virtio-user can't receive packet

2023-12-28 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1338 Bug ID: 1338 Summary: [dpdk-22.11.4] vhost_virtio_user_interrupt_with_power_monitor/perf_wa ke_up_split_ring_vhost_user_core_with_l3fwd_power_samp le:virtio-user can't rece

[PATCH v5 0/2] net/iavf: add diagnostics and fix error

2023-12-28 Thread Mingjin Ye
1. Fix multi-process error in Tx path. 2. Add diagnostics to Tx path. Mingjin Ye (2): net/iavf: fix Tx path error in multi-process net/iavf: add diagnostic support in TX path doc/guides/nics/intel_vf.rst | 4 + drivers/net/iavf/iavf.h| 25 +- drivers/net/iavf/iavf_ethdev.c |

[PATCH v5 1/2] net/iavf: fix Tx path error in multi-process

2023-12-28 Thread Mingjin Ye
In a multi-process environment, a secondary process operates on shared memory and changes the PMD transmit function pointer of the primary process, causing the primary process to send pkts without being able to find the function address, resulting in a crash. Fixes: 5b3124a0a6ef ("net/iavf: suppor

[PATCH v5 2/2] net/iavf: add diagnostic support in TX path

2023-12-28 Thread Mingjin Ye
The only way to enable diagnostics for TX paths is to modify the application source code. Making it difficult to diagnose faults. In this patch, the devarg option "mbuf_check" is introduced and the parameters are configured to enable the corresponding diagnostics. supported cases: mbuf, size, seg

RE: [PATCH v5 1/2] net/iavf: fix Tx path error in multi-process

2023-12-28 Thread Zhang, Qi Z
> -Original Message- > From: Mingjin Ye > Sent: Thursday, December 28, 2023 6:26 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; Ye, MingjinX > ; sta...@dpdk.org; Wu, Jingjing > ; Xing, Beilei > Subject: [PATCH v5 1/2] net/iavf: fix Tx path error in multi-process > > In a multi-process env

[PATCH] net/hns3: don't support QinQ insert for VF

2023-12-28 Thread Jie Hai
From: Chengwen Feng In the HIP08 platform, the PF driver will notify VF driver to update the PVID state [1], and VF will declare support QinQ insert when PVID is disabled. In the later platform (e.g. HIP09), the hardware has been improved, so the PF driver will NOT notify VF driver to update the

RE: [RFC] ethdev: fast path async flow API

2023-12-28 Thread Dariusz Sosnowski
Hi Stephen, > > +/** > > + * @internal > > + * > > + * Fast path async flow functions and related data are held in a flat > > array, > one entry per ethdev. > > + * It is assumed that each entry is read-only and cache aligned. > > + */ > > +struct rte_flow_fp_ops { > > + void *ctx; > > +

RE: [RFC] ethdev: fast path async flow API

2023-12-28 Thread Ivan Malov
Hi Dariusz, I appreciate the proposal. You say that a reference PMD implementation will be made available for 24.03 release. What about the applications? Is this supposed to go to upstream code of some applications? Thank you. On Thu, 28 Dec 2023, Dariusz Sosnowski wrote: Hi Stephen, +/** +

Re: [RFC] ethdev: fast path async flow API

2023-12-28 Thread Stephen Hemminger
> However, at the moment I see one problem with this approach. > It would require DPDK to expose the rte_eth_dev struct definition, > because of implied locking implemented in the flow API. This is a blocker, showstopper for me. Have you considered having something like rte_flow_create_bulk(

[RFC PATCH] cryptodev: add sm2 key exchange and encryption for HW

2023-12-28 Thread Arkadiusz Kusztal
This commit adds comments for the proposal of addition of SM2 algorithm key exchange and encryption/decryption operation. Signed-off-by: Arkadiusz Kusztal --- lib/cryptodev/rte_crypto_asym.h | 16 1 file changed, 16 insertions(+) diff --git a/lib/cryptodev/rte_crypto_asym.h b/l