Re: [dpdk-dev] [PATCH] net/mlx5: update GENEVE TLV option exist bit

2021-08-22 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Raslan Darawsheh > Sent: Thursday, June 24, 2021 2:20 PM > To: Shiri Kuzin ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: RE: [PATCH] net/mlx5: update GENEVE TLV option exist bit > > Ok dropping this patch from next-net-mlx, > > Kindest regards, > Raslan

[dpdk-dev] [PATCH] net/i40e: fix mbuf leak

2021-08-22 Thread chenqiming_huawei
From: Qiming Chen A local test found that repeated port start and stop operations during the continuous SSE vector bufflist receiving process will cause the mbuf resource to run out. The final positioning is when the port is stopped, the mbuf of the pkt_first_seg pointer is not released. Resource

Re: [dpdk-dev] [PATCH v2] test/func_reentrancy: free memzones after creating test case

2021-08-22 Thread Joyce Kong
> > > Subject: Re: [dpdk-dev] [PATCH v2] test/func_reentrancy: free > > > memzones after creating test case > > > > > > On Sat, Jul 31, 2021 at 2:04 PM Joyce Kong wrote: > > > > > > > > Function reentrancy test limits maximum number of iterations > > > > simultaneously, however it doesn't free t

[dpdk-dev] Huawei hns3 Roadmap and DMA engine for DPDK 21.11 release

2021-08-22 Thread Min Hu (Connor)
The following is Huawei hns3 PMD and DMA engine roadmap for DPDK 21.11 release: * Support Tx prepare for bonding * Support multi-process for testpmd * Support DMA device framework * Support DMA engine for Kunpeng 920 * Support refactor for hns3 PMD * Support performance optimization for hns3 PMD

Re: [dpdk-dev] 20.11.3 patches review and test

2021-08-22 Thread Pei Zhang
Hello Luca, The testing with dpdk 20.11.3-rc1 from Red Hat looks good. We tested below 16 scenarios and all got PASS on RHEL8: (1)Guest with device assignment(PF) throughput testing(1G hugepage size): PASS (2)Guest with device assignment(PF) throughput testing(2M hugepage size) : PASS (3)Guest wi

Re: [dpdk-dev] [PATCH] eal: remove the deprecated whitelist/blacklist and master/slave API's

2021-08-22 Thread Ruifeng Wang
> -Original Message- > From: dev On Behalf Of Stephen Hemminger > Sent: Friday, August 20, 2021 11:16 AM > To: dev@dpdk.org > Cc: Stephen Hemminger > Subject: [dpdk-dev] [PATCH] eal: remove the deprecated whitelist/blacklist > and master/slave API's > > Remove the compatiability hooks th

[dpdk-dev] [PATCH v4] test/func_reentrancy: free memzones after creating test

2021-08-22 Thread Joyce Kong
Function reentrancy test limits maximum number of iterations simultaneously, however it doesn't free the 'fr_test_once' memzones after the fact, so introduce freeing 'fr_test_once' in ring/mempool/hash/fbk/lpm_clean. Meanwhile, add the missing free for test case on main thread. Fixes: 104a92bd026

[dpdk-dev] [PATCH v1] stack: remove duplicated include of atomic

2021-08-22 Thread Joyce Kong
In stack module, remove the duplicated header file rte_atomic.h as it has been included in rte_spinlock.h/rte_pause.h Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang --- app/test/test_stack.c | 1 - lib/stack/rte_stack.c | 1 - lib/stack/rte_stack.h | 1 - 3 files changed, 3 deletions(-) d

[dpdk-dev] [PATCH v16 1/9] dmadev: introduce DMA device library public APIs

2021-08-22 Thread Chengwen Feng
The 'dmadevice' is a generic type of DMA device. This patch introduce the 'dmadevice' public APIs which expose generic operations that can enable configuration and I/O with the DMA devices. Signed-off-by: Chengwen Feng Acked-by: Bruce Richardson Acked-by: Morten Brørup Acked-by: Jerin Jacob -

[dpdk-dev] [PATCH v16 4/9] dmadev: introduce DMA device library implementation

2021-08-22 Thread Chengwen Feng
This patch introduce DMA device library implementation which includes configuration and I/O with the DMA devices. Signed-off-by: Chengwen Feng Acked-by: Bruce Richardson Acked-by: Morten Brørup --- config/rte_config.h | 3 + lib/dmadev/meson.build | 1 + lib/dmadev/rte_dmade

[dpdk-dev] [PATCH v16 7/9] dma/skeleton: add test cases

2021-08-22 Thread Chengwen Feng
Patch introduces dmadev unit testcase for validation against the skeleton dmadev PMD implementation. Test cases are added along with the skeleton driver implementation. It can be enabled by using vdev argument to any DPDK binary: --vdev="dma_skeleton,selftest=1" In case 'selftest=1' is n

[dpdk-dev] [PATCH v16 6/9] dma/skeleton: introduce skeleton dmadev driver

2021-08-22 Thread Chengwen Feng
Skeleton dmadevice driver, on the lines of rawdev skeleton, is for showcasing of the dmadev library. This driver implements cpucopy 'DMA', so that a test module can be developed. Design of skeleton involves a virtual device which is plugged into VDEV bus on initialization. Also, enable compilatio

[dpdk-dev] [PATCH v16 3/9] dmadev: introduce DMA device library PMD header

2021-08-22 Thread Chengwen Feng
This patch introduce DMA device library PMD header which was driver facing APIs for a DMA device. Signed-off-by: Chengwen Feng Acked-by: Bruce Richardson Acked-by: Morten Brørup --- lib/dmadev/meson.build | 1 + lib/dmadev/rte_dmadev.h | 2 ++ lib/dmadev/rte_dmadev_pmd.h | 72 ++

[dpdk-dev] [PATCH v16 0/9] support dmadev

2021-08-22 Thread Chengwen Feng
This patch set contains nine patch for new add dmadev. Chengwen Feng (9): dmadev: introduce DMA device library public APIs dmadev: introduce DMA device library internal header dmadev: introduce DMA device library PMD header dmadev: introduce DMA device library implementation doc: add DMA

[dpdk-dev] [PATCH v16 2/9] dmadev: introduce DMA device library internal header

2021-08-22 Thread Chengwen Feng
This patch introduce DMA device library internal header, which contains internal data types that are used by the DMA devices in order to expose their ops to the class. Signed-off-by: Chengwen Feng Acked-by: Bruce Richardson Acked-by: Morten Brørup --- lib/dmadev/meson.build | 1 + lib/

[dpdk-dev] [PATCH v16 8/9] test: enable dmadev skeleton test

2021-08-22 Thread Chengwen Feng
Skeleton dmadevice test cases are part of driver layer. This patch allows test cases to be executed using 'dma_autotest' command in test framework. Signed-off-by: Chengwen Feng --- app/test/meson.build | 3 +++ app/test/test_dmadev.c | 53 ++ 2

[dpdk-dev] [PATCH v16 5/9] doc: add DMA device library guide

2021-08-22 Thread Chengwen Feng
This patch adds dmadev library guide. Signed-off-by: Chengwen Feng Acked-by: Conor Walsh --- doc/guides/prog_guide/dmadev.rst | 125 doc/guides/prog_guide/img/dmadev.svg | 283 +++ doc/guides/prog_guide/index.rst | 1 + 3 files changed

[dpdk-dev] [PATCH v16 9/9] maintainers: add for dmadev

2021-08-22 Thread Chengwen Feng
This patch add myself as dmadev's maintainer and update release notes. Signed-off-by: Chengwen Feng --- MAINTAINERS| 7 +++ doc/guides/rel_notes/release_21_11.rst | 6 ++ 2 files changed, 13 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 266f5ac..

Re: [dpdk-dev] [PATCH v15 1/6] dmadev: introduce DMA device library public APIs

2021-08-22 Thread fengchengwen
Hi Bruce and All, The v16 use following define, and it also include dma skeleton and ut. struct rte_dmadev_stats { uint64_t submitted; uint64_t completed; uint64_t errors; } Feedback welcome, thanks. On 2021/8/19 22:52, Bruce Richardson wrote: > On Fri, Aug 13, 2021

[dpdk-dev] [PATCH] net/i40e: extend the polling times of vf reset

2021-08-22 Thread Qiming Chen
In the embedded RTOS environment, the x722 controller Ethernet card of the d2146nt chip, the vfio user mode driver takes over 8 vf ports in turn, but i40evf_check_vf_reset_done will probably fail. This issue has been discussed with intel&dpdk experts for 3 rounds before, and the version matching i

Re: [dpdk-dev] dpdk-pdump prints "EAL: Error: Invalid memory"

2021-08-22 Thread Yan, Xiaoping (NSB - CN/Hangzhou)
Hi, Any comment for this issue? Thank you. Best regards Yan Xiaoping From: Yan, Xiaoping (NSB - CN/Hangzhou) Sent: 2021年8月10日 13:35 To: 'us...@dpdk.org' Subject: RE: dpdk-pdump prints "EAL: Error: Invalid memory" Hi, I modified eal_legacy_hugepage_init and problem is solved. Should the correc

[dpdk-dev] [PATCH] net/i40e: solve vf rxq buf size alignment

2021-08-22 Thread Qiming Chen
The RTE_ALIGN macro is aligned upwards. If the buf_size variable is not aligned with 1 << I40E_RXQ_CTX_DBUFF_SHIFT, the rx_buf_len is larger than the actual mbuf memory after the operation. When receiving the packet, if the packet is larger than the configured buf_size, it will cause a memory stepp

[dpdk-dev] remove dpdk-pdump pcap file, disk space is not freed

2021-08-22 Thread Yan, Xiaoping (NSB - CN/Hangzhou)
Hi, Before I run pdump, 21MB is used in /tmp tmpfs63G 21M 63G 1% /tmp Then I run pdump with such command: dpdk-pdump -c 0x4001000400100 -a :03:00.6 -a :03:06.1 --legacy-mem --base-virtaddr 0x2aaa2aa000 --file-prefix l2rt -- --pdump port=1,queue=*,rx-dev=/t

[dpdk-dev] [PATCH v2 0/8] use compiler atomic builtins for examples

2021-08-22 Thread Joyce Kong
Since atomic operations have been adopted in DPDK now[1], change rte_atomicNN_xxx APIs to compiler's atomic built-ins in examples module[2]. [1] https://www.dpdk.org/blog/2021/03/26/dpdk-adopts-the-c11-memory-model/ [2] https://doc.dpdk.org/guides/rel_notes/deprecation.html v2: Fix the compilin

[dpdk-dev] [PATCH v2 1/8] examples/bbdev_app: use compiler atomics for flag sync

2021-08-22 Thread Joyce Kong
Convert rte_atomic usages to compiler atomic built-ins for global_exit_flag sync. Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang --- examples/bbdev_app/main.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/examples/bbdev_app/main.c b/examples/bbdev_app/ma

[dpdk-dev] [PATCH v2 2/8] examples/multi_process: use compiler atomics for sync

2021-08-22 Thread Joyce Kong
Convert rte_atomic32_test_and_set usage to compiler atomic CAS operation for display_stats sync. Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang --- examples/multi_process/client_server_mp/mp_server/main.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/m

[dpdk-dev] [PATCH v2 3/8] examples/kni: use compiler atomics for status sync

2021-08-22 Thread Joyce Kong
Convert rte_atomic usages to compiler atomic builit-ins for kni_stop and kni_pause sync. Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang --- examples/kni/main.c | 27 +-- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/examples/kni/main.c b/examples/k

[dpdk-dev] [PATCH v2 4/8] examples/performance-thread: use compiler atomics for sync

2021-08-22 Thread Joyce Kong
Convert rte_atomic usages to compiler atomic built-ins for thread sync. Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang --- examples/performance-thread/common/lthread.c | 10 +++--- .../performance-thread/common/lthread_diag.h | 10 +++--- .../performance-thread/common/lthread_int.h |

[dpdk-dev] [PATCH v2 5/8] examples/l2fwd-jobstats: use compiler atomics for stats sync

2021-08-22 Thread Joyce Kong
Convert rte_atomic usages to compiler atomic built-ins for stats_read_pending sync in l2fwd_jobstats module. Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang --- examples/l2fwd-jobstats/main.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/examples/l2fwd-jobs

[dpdk-dev] [PATCH v2 6/8] examples/vm_power_manager: use compiler atomics for sync

2021-08-22 Thread Joyce Kong
Convert rte_atomic32_cmpset to compiler atomic CAS operation for channel status sync. Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang --- examples/vm_power_manager/channel_monitor.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/examples/vm_power_manager/cha

[dpdk-dev] [PATCH v2 7/8] examples/server_node_efd: use compiler atomics for sync

2021-08-22 Thread Joyce Kong
Convert rte_atomic32_test_and_set to compiler CAS atomic operation for display_stats sync. Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang --- examples/server_node_efd/server/main.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/server_node_efd/server/ma

[dpdk-dev] [PATCH v2 8/8] examples: remove unnecessary include of atomic

2021-08-22 Thread Joyce Kong
Remove the unnecessary header file rte_atomic.h included in example module. Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang --- examples/bond/main.c | 1 - examples/ip_fragmentation/main.c | 1 - examples/ip_reassembly/main.c