Re: [dpdk-dev] [PATCH v6 07/10] eal: add lcore init callbacks

2022-12-16 Thread David Marchand
Morten, On Thu, Dec 15, 2022 at 11:21 AM Morten Brørup wrote: > > > Shouldn't these callbacks be called from the EAL threads too, e.g. > > from eal_thread_loop()? > > > > > > I looks like they are only called from eal_lcore_non_eal_allocate(), > > which is only called from rte_thread_register().

[RFC 0/3] Async vhost packed ring optimization

2022-12-16 Thread Cheng Jiang
To improve the performance of async vhost packed ring. We remove the unnecessary data copy in async vhost packed ring. And add the batch data path in both enqueue data path and dequeue data path. Cheng Jiang (3): vhost: remove redundant copy for packed shadow used ring vhost: add batch enqueue

[RFC 1/3] vhost: remove redundant copy for packed shadow used ring

2022-12-16 Thread Cheng Jiang
In the packed ring enqueue data path of the current asynchronous Vhost design, the shadow used ring is first copied to the sync shadow used ring, and then it will be moved to the async shadow used ring for some historical reasons. This is completely unnecessary. This patch removes redundant copy fo

[RFC 2/3] vhost: add batch enqueue in async vhost packed ring

2022-12-16 Thread Cheng Jiang
Add batch enqueue function in asynchronous vhost packed ring to improve the performance. Chained mbufs are not supported, it will be handled in single enqueue function. Signed-off-by: Cheng Jiang --- lib/vhost/virtio_net.c | 159 - 1 file changed, 157 inse

[RFC 3/3] vhost: add batch dequeue in async vhost packed ring

2022-12-16 Thread Cheng Jiang
Add batch dequeue function in asynchronous vhost packed ring to improve the performance. Chained mbufs are not supported, it will be handled in single enqueue function. Signed-off-by: Cheng Jiang Signed-off-by: Yuan Wang --- lib/vhost/virtio_net.c | 170 -

Re: [PATCH] crypto/qat: add SHA3 plain hash support

2022-12-16 Thread Zhang, Fan
On 12/14/2022 4:26 PM, Ciara Power wrote: Add support for plain SHA3-224, SHA3-256, SHA3-384, and SHA3-512 hash support in QAT GEN3. Add support for SHA3-256 in GEN2. Signed-off-by: Ciara Power --- Tested using testcases from patch not yet merged. https://patchwork.dpdk.org/project/dpdk/patch

Re: questions about crypto_scheduler

2022-12-16 Thread Zhang, Fan
Hi Zhangfei, The crypto scheduler PMD's session contains "sub-sessions" for all works, 1 sub-session per driver ID, to minimize the memory footprint. When configuring session, it configures the sub-sessions one by one. Since your UADK devices sharing the same driver ID, the crypto scheduler w

Re: [PATCH V7 7/8] test: add test cases for adding hex integer value API

2022-12-16 Thread Bruce Richardson
On Fri, Dec 16, 2022 at 09:54:27AM +0800, Huisong Li wrote: > Add test cases for adding hexadecimal unsigned integer value API. > > Signed-off-by: Huisong Li > Acked-by: Morten Brørup > Acked-by: Chengwen Feng > --- The coding style is still a little off for indentation, but otherwise ok. Ack

RE: [dpdk-dev] [PATCH v6 07/10] eal: add lcore init callbacks

2022-12-16 Thread Morten Brørup
> From: David Marchand [mailto:david.march...@redhat.com] > Sent: Friday, 16 December 2022 09.09 > > Morten, > > On Thu, Dec 15, 2022 at 11:21 AM Morten Brørup > wrote: > > > > Shouldn't these callbacks be called from the EAL threads too, > e.g. > > > from eal_thread_loop()? > > > > > > > > I lo

[PATCH v5 0/4] lcore telemetry improvements

2022-12-16 Thread Robin Jarry
This is a follow up on previous work by Kevin Laatz: http://patches.dpdk.org/project/dpdk/list/?series=24658&state=* This series is aimed at allowing DPDK applications to expose their CPU usage stats in the DPDK telemetry under /eal/lcore/info. This is a much more basic and naive approach which l

[PATCH v5 1/4] eal: add lcore info in telemetry

2022-12-16 Thread Robin Jarry
Report the same information than rte_lcore_dump() in the telemetry API into /eal/lcore/list and /eal/lcore/info,ID. Example: --> /eal/lcore/info,3 { "/eal/lcore/info": { "lcore_id": 3, "socket": 0, "role": "RTE", "cpuset": [ 3 ] } } Signed-off-

[PATCH v5 3/4] testpmd: add dump_lcores command

2022-12-16 Thread Robin Jarry
Add a simple command that calls rte_lcore_dump(). Signed-off-by: Robin Jarry Acked-by: Morten Brørup --- v4 -> v5: no change app/test-pmd/cmdline.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index b32dc8bfd445..96474d2ae458 100644 ---

[PATCH v5 2/4] eal: allow applications to report their cpu usage

2022-12-16 Thread Robin Jarry
Allow applications to register a callback that will be invoked in rte_lcore_dump() and when requesting lcore info in the telemetry API. The callback is expected to return the number of TSC cycles that have passed since application start and the number of these cycles that were spent doing busy wor

[PATCH v5 4/4] testpmd: report lcore usage

2022-12-16 Thread Robin Jarry
Reuse the --record-core-cycles option to account for busy cycles. One turn of packet_fwd_t is considered "busy" if there was at least one received or transmitted packet. Add a new busy_cycles field in struct fwd_stream. Update get_end_cycles to accept an additional argument for the number of proce

RE: [EXT] questions about crypto_scheduler

2022-12-16 Thread Akhil Goyal
> Hi, Akhil > > Excuse me for the question. > > I am testing UADK crypto performance with dpdk-test-crypto-perf, and > want to use multi-thread or multi-session for better performance, so > trying to use crypto_scheduler. > > CMD like > sudo dpdk-test-crypto-perf -l 1,2 --vdev "crypto_uadk0" -

[PATCH 1/7] common/idpf: add hw statistics

2022-12-16 Thread Mingxia Liu
This patch add hardware packets/bytes statistics. Signed-off-by: Mingxia Liu --- drivers/common/idpf/idpf_common_device.c | 17 + drivers/common/idpf/idpf_common_device.h | 5 +- drivers/common/idpf/idpf_common_virtchnl.c | 27 +++ drivers/common/idpf/idpf_common_virtchnl.h | 3 +

[PATCH 0/7] add idpf pmd enhancement features

2022-12-16 Thread Mingxia Liu
This patchset add several enhancement features of idpf pmd. Including the following: - add hw statistics, support stats/xstats ops - add rss configure/show ops - add event handle: link status - add scattered data path for single queue This patchset is based on the refactor idpf PMD code: http://p

[PATCH 2/7] common/idpf: add RSS set/get ops

2022-12-16 Thread Mingxia Liu
Add support for these device ops: - rss_reta_update - rss_reta_query - rss_hash_update - rss_hash_conf_get Signed-off-by: Mingxia Liu --- drivers/common/idpf/idpf_common_device.h | 1 + drivers/common/idpf/idpf_common_virtchnl.c | 119 drivers/common/idpf/idpf_common_virtchnl.h | 1

[PATCH 4/7] common/idpf: add rss_offload hash in singleq rx

2022-12-16 Thread Mingxia Liu
This patch add rss valid flag and hash value parsing of rx descriptor. Signed-off-by: Mingxia Liu --- drivers/common/idpf/idpf_common_rxtx.c | 16 1 file changed, 16 insertions(+) diff --git a/drivers/common/idpf/idpf_common_rxtx.c b/drivers/common/idpf/idpf_common_rxtx.c inde

[PATCH 3/7] common/idpf: support single q scatter RX datapath

2022-12-16 Thread Mingxia Liu
This patch add single q recv scatter rx function. Signed-off-by: Mingxia Liu Signed-off-by: Wenjun Wu --- drivers/common/idpf/idpf_common_rxtx.c | 134 + drivers/common/idpf/idpf_common_rxtx.h | 3 + drivers/common/idpf/version.map| 1 + drivers/net/idpf/idpf

[PATCH 6/7] common/idpf: add xstats ops

2022-12-16 Thread Mingxia Liu
Add support for these device ops: -idpf_dev_xstats_get -idpf_dev_xstats_get_names -idpf_dev_xstats_reset Signed-off-by: Mingxia Liu --- drivers/net/idpf/idpf_ethdev.c | 80 ++ 1 file changed, 80 insertions(+) diff --git a/drivers/net/idpf/idpf_ethdev.c b/drivers/

[PATCH 7/7] common/idpf: update mbuf_alloc_failed multi-thread process

2022-12-16 Thread Mingxia Liu
As the variable mbuf_alloc_failed is operated by more than thread, change it to type rte_atomic64_t and operated by rte_atomic64_xx() function, this will avoid multithreading issue. Signed-off-by: Mingxia Liu --- drivers/common/idpf/idpf_common_rxtx.c| 10 ++ drivers/common/idpf/

[PATCH 5/7] common/idpf: add alarm to support handle vchnl message

2022-12-16 Thread Mingxia Liu
Handle virtual channel message. Refine link status update. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Ling --- drivers/common/idpf/idpf_common_device.h | 5 + drivers/common/idpf/idpf_common_virtchnl.c | 19 --- drivers/net/idpf/idpf_ethdev.c | 165 -

RE: [PATCH v5 2/4] eal: allow applications to report their cpu usage

2022-12-16 Thread Morten Brørup
> From: Robin Jarry [mailto:rja...@redhat.com] > Sent: Friday, 16 December 2022 11.21 > > Allow applications to register a callback that will be invoked in > rte_lcore_dump() and when requesting lcore info in the telemetry API. > > The callback is expected to return the number of TSC cycles that

The link status of the 82599 NIC cannot be setted to down

2022-12-16 Thread wangyunjian
Hi All, It is expected that the ixgbe_dev_set_link_down function is called to make the link status of the NIC down. However, the invoking is successful, but link status is still up. Anyone have some good ideas? dpdk version:DPDK 21.11 firmware-version:0x86d5 NIC:Intel Corporation 82599 10 G

[PATCH dpdk-kmod] linux/igb_uio: fix build with kernel 5.18

2022-12-16 Thread Ferruh Yigit
In Linux kernel v5.18, "pci-dma-compat.h" wrapper file is removed [1]. Some APIs in that wrapper file were used by igb_uio kernel module and kernel module build fails after mentioned commit. Fixed build for v5.18 by replacing APIs in igb_uio. Replaced APIs are available in Linux v4.4 (minimum Li

[PATCH v19.11 LTS] kni: fix build for Suse

2022-12-16 Thread Ferruh Yigit
Wrong macro is used in the patch that detects if '.ndo_tx_timeout' has 'txqueue' parameter or not, which is causing build error. Fixed by using correct macro. Bugzilla ID: 1141 Fixes: d43fa3e198c0 ("kni: fix build for SLES15-SP3 (Make)") Cc: sta...@dpdk.org Signed-off-by: Ferruh Yigit --- Cc: c

[Bug 1151] rte_eth_tx_buffer_init does not zeroize field rte_eth_dev_tx_buffer.length

2022-12-16 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1151 Bug ID: 1151 Summary: rte_eth_tx_buffer_init does not zeroize field rte_eth_dev_tx_buffer.length Product: DPDK Version: 22.11 Hardware: All OS: All Stat

Re: [PATCH RESEND v2 00/11] codeql fixes for various subsystems

2022-12-16 Thread Sinan Kaya
On Tue, 2022-12-13 at 12:02 -0500, Sinan Kaya wrote: > On Tue, 2022-12-13 at 19:59 +0300, Dmitry Kozlyuk wrote: > > 2022-12-13 11:43 (UTC-0500), Sinan Kaya: > > > Checking to see if I need to cover any feedback. > > > > There was some feedback to pre-resend v2 that is not visible on > > patchwork:

[Bug 1152] net/mlx5 - direct ibverbs dependency when compiling with -Dibverbs_link=dlopen

2022-12-16 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1152 Bug ID: 1152 Summary: net/mlx5 - direct ibverbs dependency when compiling with -Dibverbs_link=dlopen Product: DPDK Version: 21.11 Hardware: All OS: All

[Bug 1153] net/i40e: not all tx error counts in NIC statistics

2022-12-16 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1153 Bug ID: 1153 Summary: net/i40e: not all tx error counts in NIC statistics Product: DPDK Version: 21.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal

[PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it.

2022-12-16 Thread Tyler Retzlaff
Two bugs are fixed to allow this test to build, run & pass. * Mark memory configuration complete during rte_eal_init() * Use rte thread api to get a proper implementation of thread join. v2: * update commit message to clarify why this test is beneficial on Windows. * add missing Fixes tag

[PATCH v2 1/2] eal: add missing call marking memory config complete

2022-12-16 Thread Tyler Retzlaff
Memory configuration was not being marked as completed add the missing call to rte_eal_init() for Windows. Allows rte_thread_register to work on Windows and lcores_autotest to be built and run Windows which also exercises the rte_ctrl_thread_create API on Windows. Fixes: 5c307ba2a5b1 ("eal: regis

[PATCH v2 2/2] test: enable lcores test on Windows

2022-12-16 Thread Tyler Retzlaff
Stop using pthread and convert the test to use EAL thread APIs. Because the EAL thread APIs provide more than just a stub for thread join on Windows the tests now pass and need not be skipped. Signed-off-by: Tyler Retzlaff --- app/test/test_lcores.c | 28 +--- 1 file chan

[PATCH kmods] linux/igb_uio: fix build on Linux 5.18+

2022-12-16 Thread luca . boccassi
From: Luca Boccassi Reported-by: Paolo Pisati Signed-off-by: Luca Boccassi --- Only build-tested. linux/igb_uio/igb_uio.c | 8 1 file changed, 8 insertions(+) diff --git a/linux/igb_uio/igb_uio.c b/linux/igb_uio/igb_uio.c index 33e0e02..3d8a8a8 100644 --- a/linux/igb_uio/igb_uio.c +

Re: [PATCH dpdk-kmod] linux/igb_uio: fix build with kernel 5.18

2022-12-16 Thread Stephen Hemminger
On Fri, 16 Dec 2022 11:57:32 + Ferruh Yigit wrote: > In Linux kernel v5.18, "pci-dma-compat.h" wrapper file is removed [1]. > > Some APIs in that wrapper file were used by igb_uio kernel module and > kernel module build fails after mentioned commit. > > Fixed build for v5.18 by replacing AP

[PATCH] eventdev/timer: add API to get remaining ticks

2022-12-16 Thread Erik Gabriel Carrillo
Introduce an event timer adapter API which allows users to determine how many adapter ticks remain until an event timer fires. Signed-off-by: Erik Gabriel Carrillo --- app/test/test_event_timer_adapter.c| 68 ++ lib/eventdev/event_timer_adapter_pmd.h | 7 +++ lib/eve