RE: [EXTERNAL] [PATCH] graph: avoid accessing graph list when getting stats

2024-03-29 Thread Kiran Kumar Kokkilagadda
> -Original Message- > From: Robin Jarry > Sent: Monday, March 25, 2024 9:23 PM > To: dev@dpdk.org; Jerin Jacob ; Kiran Kumar > Kokkilagadda ; Nithin Kumar Dabilpuram > ; Zhirun Yan > Subject: [EXTERNAL] [PATCH] graph: avoid accessing graph list when getting > stats > > Prioritize sec

Re: [dpdk-dev] [PATCH v2] net/i40e: fix forward outer IPv6 VXLAN packets

2024-03-29 Thread David Marchand
Hello Bruce, John, On Fri, Nov 5, 2021 at 4:39 AM Jie Wang wrote: > > Testpmd forwards packets in checksum mode that it need to calculate > the checksum of each layer's protocol. Then it will fill flags and > header length into mbuf. > > In process_outer_cksums, HW calculates the outer checksum i

Re: [dpdk-dev] [PATCH] net/ice: fix outer UDP Tx offload checksum error

2024-03-29 Thread David Marchand
Hello, On Mon, Nov 23, 2020 at 8:08 AM Murphy Yang wrote: > > If enable hardware outer UDP TX offload checksum, it doesn't take effect > when send 'IPv6/UDP/VXLAN' packet with error outer UDP checksum. > > In order to take effect, set the 'L4T_CS' flag valid only when 'L4TUNT' > equals one and 'E

Re: [EXTERNAL] [PATCH] graph: avoid accessing graph list when getting stats

2024-03-29 Thread Robin Jarry
Kiran Kumar Kokkilagadda, Mar 29, 2024 at 08:44: > +167,16 @@ stats_mem_init(struct cluster *cluster, > > /* Fix up callback */ >fn = prm->fn; > - if (fn == NULL) > - fn = graph_cluster_stats_cb; > + if (fn == NULL) { > + for (int i = 0; i < cluster->nb_graphs; i++) {

Re: [PATCH v16 1/8] net/ntnic: initial commit which adds register defines

2024-03-29 Thread Ferruh Yigit
On 10/9/2023 8:57 AM, Christian Koue Muf wrote: > On 9/29/2023 12:24 PM, Thomas Monjalon wrote: >> 29/09/2023 11:46, Ferruh Yigit: >>> On 9/29/2023 10:21 AM, Christian Koue Muf wrote: On 9/21/2023 4:05 PM, Ferruh Yigit wrote: > On 9/20/2023 2:17 PM, Thomas Monjalon wrote: >> Hello, >>>

Re: [PATCH v6 1/8] net/rnp: add skeleton

2024-03-29 Thread Ferruh Yigit
On 9/1/2023 3:30 AM, Wenbo Cao wrote: > Add Basic PMD library and doc build infrastructure > Update maintainers file to claim responsibility. > > Signed-off-by: Wenbo Cao > Hi Wenbo, What is the status of the 'rnp' driver, v7 was expected but not received, will upstreaming continue for v24.03?

Re: [PATCH v5 00/32] Introduce sssnic PMD for 3SNIC's 9x0 serials Ethernet adapters

2024-03-29 Thread Ferruh Yigit
On 9/26/2023 2:13 PM, Ferruh Yigit wrote: > On 9/4/2023 5:56 AM, wa...@3snic.com wrote: >> From: Renyong Wan >> >> The sssnic PMD (**librte_pmd_sssnic**) provides poll mode driver support >> for 3SNIC 9x0 serials family of Ethernet adapters. >> >> Supported NICs are: >> >> - 3S910 Dual Port SFP28

Re: [PATCH] vhost: optimize mbuf allocation in virtio Tx packed path

2024-03-29 Thread Maxime Coquelin
Hi Stephen, On 3/29/24 03:53, Stephen Hemminger wrote: On Thu, 28 Mar 2024 17:10:42 -0700 Andrey Ignatov wrote: You don't need always inline, the compiler will do it anyway. I can remove it in v2, but it's not completely obvious to me how is it decided when to specify it explicitly and whe

The effect of inlining

2024-03-29 Thread Morten Brørup
+CC techboard > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Friday, 29 March 2024 14.05 > > Hi Stephen, > > On 3/29/24 03:53, Stephen Hemminger wrote: > > On Thu, 28 Mar 2024 17:10:42 -0700 > > Andrey Ignatov wrote: > > > >>> > >>> You don't need always inline, the compile

RE: [PATCH v6 1/8] net/rnp: add skeleton

2024-03-29 Thread 11
Hi Ferruh, Thanks for your reminder, I'm sorry for that I had been work on anothing before. Recendly, I have been reworked on this work. It will miss on release of v24.03. For another thing, I'm always confused for the secondary process call like hw->mac_ops this function pointer. is this meth

Re: The effect of inlining

2024-03-29 Thread Tyler Retzlaff
On Fri, Mar 29, 2024 at 02:42:49PM +0100, Morten Brørup wrote: > +CC techboard > > > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > > Sent: Friday, 29 March 2024 14.05 > > > > Hi Stephen, > > > > On 3/29/24 03:53, Stephen Hemminger wrote: > > > On Thu, 28 Mar 2024 17:10:42 -0700 > >

[DPDK/core Bug 1409] arparse library assumes enum are 64 bit

2024-03-29 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1409 Bug ID: 1409 Summary: arparse library assumes enum are 64 bit Product: DPDK Version: 24.03 Hardware: All OS: All Status: UNCONFIRMED Severity: normal Pr

[PATCH v19 01/15] maintainers: add for log library

2024-03-29 Thread Stephen Hemminger
"You touch it you own it" Add myself as maintainer for log library. Signed-off-by: Stephen Hemminger Acked-by: Tyler Retzlaff --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 7abb3aee49..54c28a601d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@

[PATCH v19 00/15] Logging unification and improvements

2024-03-29 Thread Stephen Hemminger
Improvements and unification of logging library. This version works on all platforms: Linux, Windows and FreeBSD. This is update to rework patch set. It adds several new features to the console log output. * Putting a timestamp on console output which is useful for analyzing performance of

[PATCH v19 02/15] windows: make getopt functions have const properties

2024-03-29 Thread Stephen Hemminger
Having different prototypes on different platforms can lead to lots of unnecessary workarounds. Looks like the version of getopt used from windows was based on an older out of date version from FreeBSD. This patch changes getopt, getopt_long, etc to have the same const attributes as Linux and Fre

[PATCH v19 03/15] windows: add os shim for localtime_r

2024-03-29 Thread Stephen Hemminger
Windows does not have localtime_r but it does have a similar function that can be used instead. Signed-off-by: Stephen Hemminger Acked-by: Tyler Retzlaff --- lib/eal/windows/include/rte_os_shim.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/lib/eal/windows/include/rte_os_shim

[PATCH v19 04/15] windows: common wrapper for vasprintf and asprintf

2024-03-29 Thread Stephen Hemminger
Replace the windows version of asprintf() that was only usable in eal. With a more generic one that supports both vasprintf() and asprintf(). This also eliminates duplicate code. Fixes: 8f4de2dba9b9 ("bus/pci: fill bus specific information") Fixes: 9ec521006db0 ("eal/windows: hide asprintf shim")

[PATCH v19 05/15] eal: make eal_log_level_parse common

2024-03-29 Thread Stephen Hemminger
The code to parse for log-level option should be same on all OS variants. Signed-off-by: Stephen Hemminger Acked-by: Tyler Retzlaff --- lib/eal/common/eal_common_options.c | 46 + lib/eal/common/eal_options.h| 1 + lib/eal/freebsd/eal.c | 42 --

[PATCH v19 07/15] eal: change rte_exit() output to match rte_log()

2024-03-29 Thread Stephen Hemminger
The rte_exit() output format confuses the timestamp and coloring options. Change it to use be a single line with proper prefix. Before: [ 0.006481] EAL: Error - exiting with code: 1 Cause: [ 0.006489] Cannot init EAL: Permission denied After: [ 0.006238] EAL: Error - exiting with co

[PATCH v19 06/15] eal: do not duplicate rte_init_alert() messages

2024-03-29 Thread Stephen Hemminger
The message already goes through logging, and does not need to be printed on stderr. Message level should be ALERT to match function name. Signed-off-by: Stephen Hemminger Acked-by: Tyler Retzlaff --- lib/eal/freebsd/eal.c | 3 +-- lib/eal/linux/eal.c | 3 +-- 2 files changed, 2 insertions(+)

[PATCH v19 08/15] log: move handling of syslog facility out of eal

2024-03-29 Thread Stephen Hemminger
The syslog facility property is better handled in lib/log rather than in eal. This also allows for changes to what syslog flag means in later steps. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_options.c | 51 ++--- lib/eal/freebsd/eal.c |

[PATCH v19 09/15] eal: initialize log before everything else

2024-03-29 Thread Stephen Hemminger
In order for all log messages (including CPU mismatch) to come out through the logging library, it must be initialized as early in rte_eal_init() as possible on all platforms. Where it was done before was likely historical based on the support of non-OS isolated CPU's which required a shared memor

[PATCH v19 10/15] log: drop syslog support, and make code common

2024-03-29 Thread Stephen Hemminger
This patch makes the log setup code common across all platforms. Drops syslog support for now, will come back in later patch. Signed-off-by: Stephen Hemminger --- app/test/test_eal_flags.c | 11 ++- lib/eal/common/eal_common_options.c | 3 - lib/log/log.c | 4

[PATCH v19 11/15] log: add hook for printing log messages

2024-03-29 Thread Stephen Hemminger
This is useful for when decorating log output for console or journal. Provide basic version in this patch. Signed-off-by: Stephen Hemminger --- lib/log/log.c | 14 +- lib/log/log_private.h | 11 +++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644

[PATCH v19 12/15] log: add timestamp option

2024-03-29 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. There are multiple timestamp formats similar to Linux dmesg. The default is time relative since star

[PATCH v19 13/15] log: add optional support of syslog

2024-03-29 Thread Stephen Hemminger
Log to syslog only if option is specified. And if syslog is used then normally only log to syslog, don't duplicate output. Also enables syslog support on FreeBSD. Signed-off-by: Stephen Hemminger --- app/test/test_eal_flags.c | 5 +- doc/guides/linux_gsg/linux_eal_parameters

[PATCH v19 14/15] log: add support for systemd journal

2024-03-29 Thread Stephen Hemminger
If DPDK application is being run as a systemd service, then it can use the journal protocol which allows putting more information in the log such as priority and other information. The use of journal protocol is automatically detected and handled. Rather than having a dependency on libsystemd, ju

[PATCH v19 15/15] log: colorize log output

2024-03-29 Thread Stephen Hemminger
Like dmesg, colorize the log output (unless redirected to file). Timestamp is green, the subsystem is in yellow and the message is red if urgent, boldface if an error, and normal for info and debug messages. Signed-off-by: Stephen Hemminger --- app/test/test_eal_flags.c | 24 + do