Re: [RFC] ethdev: introduce entropy calculation

2023-12-16 Thread Andrew Rybchenko
On 12/15/23 19:21, Thomas Monjalon wrote: 15/12/2023 14:44, Ferruh Yigit: On 12/14/2023 5:26 PM, Stephen Hemminger wrote: On Thu, 14 Dec 2023 17:18:25 + Ori Kam wrote: Since encap groups number of different 5 tuples together, if HW doesn’t know how to RSS based on the inner application w

Re: [RFC] ethdev: introduce entropy calculation

2023-12-16 Thread Andrew Rybchenko
On 12/10/23 11:30, Ori Kam wrote: When offloading rules with the encap action, the HW may calculate entropy based on the encap protocol. Each HW can implement a different algorithm. When the application receives packets that should have been encaped by the HW, but didn't reach this stage yet (f

Re: [RFC v2 08/14] lib: simplify multilines log messages

2023-12-16 Thread Andrew Rybchenko
On 12/8/23 20:05, Stephen Hemminger wrote: On Fri, 8 Dec 2023 15:59:42 +0100 David Marchand wrote: Those error log messages don't need to span on multiple lines. Signed-off-by: David Marchand --- lib/acl/tb_mem.c| 2 +- lib/bpf/bpf_stub.c | 4 ++-- lib/eal

Re: [RFC v2 12/14] lib: convert to per line logging

2023-12-16 Thread Andrew Rybchenko
On 12/8/23 17:59, David Marchand wrote: Convert many libraries that call RTE_LOG(... "\n", ...) to RTE_LOG_LINE. Note: - for acl and sched libraries that still has some debug multilines messages, a direct call to RTE_LOG is used: this will make it easier to notice such special cases, Sign

Re: [RFC v2 14/14] lib: use per line logging in helpers

2023-12-16 Thread Andrew Rybchenko
On 12/8/23 17:59, David Marchand wrote: Use RTE_LOG_LINE in existing macros that append a \n. Signed-off-by: David Marchand --- Changes since RFC v1: - converted all logging helpers in lib/, --- For ethdev Reviewed-by: Andrew Rybchenko

Re: [RFC v2 13/14] lib: replace logging helpers

2023-12-16 Thread Andrew Rybchenko
On 12/8/23 17:59, David Marchand wrote: This is a preparation step before the next change. Many libraries have their own logging helpers that do not add a newline in their format string. Some previous changes fixed places where some of those helpers are called without a trailing newline. Using R

Re: [RFC v2 04/14] lib: add newline in logs

2023-12-16 Thread Andrew Rybchenko
On 12/8/23 17:59, David Marchand wrote: Fix places leading to a log message not terminated with a newline. Cc: sta...@dpdk.org Signed-off-by: David Marchand For ethdev: Reviewed-by: Andrew Rybchenko

Re: [RFC v2 03/14] lib: use dedicated logtypes

2023-12-16 Thread Andrew Rybchenko
On 12/8/23 17:59, David Marchand wrote: No printf! When a dedicated log helper exists, use it. And no usurpation please: a library should log under its logtype (see the eventdev rx adapter update for example). Note: the RTE_ETH_VALID_PORTID_OR_GOTO_ERR_RET macro is renamed for consistency with t

Re: [PATCH v3 11/22] ethdev: replace strtok with reentrant version

2023-12-16 Thread Andrew Rybchenko
On 11/14/23 13:59, Jie Hai wrote: Multiple threads calling the same function may cause condition race issues, which often leads to abnormal behavior and can cause more serious vulnerabilities such as abnormal termination, denial of service, and compromised data integrity. The strtok() is non-ree

Re: [PATCH v4 2/5] ethdev: check return result of rte_eth_dev_info_get

2023-12-16 Thread Andrew Rybchenko
On 7/10/23 20:07, Stephen Hemminger wrote: From: Sinan Kaya rte_class_eth: eth_mac_cmp: The status of this call to rte_eth_dev_info_get is not checked, potentially leaving dev_info uninitialized. Signed-off-by: Sinan Kaya Signed-off-by: Stephen Hemminger Reviewed-by: Morten Brørup Reviewe

Re: [PATCH v4 2/5] ethdev: check return result of rte_eth_dev_info_get

2023-12-16 Thread Andrew Rybchenko
On 12/16/23 13:06, Andrew Rybchenko wrote: On 7/10/23 20:07, Stephen Hemminger wrote: From: Sinan Kaya rte_class_eth: eth_mac_cmp: The status of this call to rte_eth_dev_info_get is not checked, potentially leaving dev_info uninitialized. Signed-off-by: Sinan Kaya Signed-off-by: Stephen He

Re: [PATCH v4 5/5] bus/vdev: check result of rte_vdev_device_name

2023-12-16 Thread Andrew Rybchenko
On 7/10/23 20:08, Stephen Hemminger wrote: From: Sinan Kaya In rte_eth_vdev_allocate result of call to rte_vdev_device_name is dereferenced here and may be null. Signed-off-by: Sinan Kaya Signed-off-by: Stephen Hemminger Patch summary should be human-readable and do not mention internals (

[PATCH v2 1/5] app/test-mp: add multiprocess test

2023-12-16 Thread Artemy Kovalyov
This commit adds a test scenario that initiates multiple processes concurrently. These processes attach to the same shared heap, with an automatic detection mechanism to identify the primary process. Signed-off-by: Artemy Kovalyov --- v2: CI && CR fixes - add missing includes - use RTE_TEST_ASSER