Re: Error in rte_eal_init() when multiple PODs over single node of K8 cluster

2024-04-01 Thread Avijit Pandey
Hello Bruce, Thank you for your mail! I have attached the complete log that we observed. Upon your suggestion, we experimented with the --in-memory option and it worked! Since this option enables both --no-shconf and --huge-unlink. We also tried each option separately. The test ran fine with

RE: [PATCH 1/2] eal: provide macro for GCC builtin constant intrinsic

2024-04-01 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Monday, 1 April 2024 00.03 > > On Wed, 20 Mar 2024 14:33:35 -0700 > Tyler Retzlaff wrote: > > > +#ifdef RTE_TOOLCHAIN_MSVC > > +#define __rte_constant(e) 0 > > +#else > > +#define __rte_constant(e) __extension__(__builtin_cons

Re: [PATCH v20 13/14] log: add support for systemd journal

2024-04-01 Thread Luca Boccassi
On Sat, 30 Mar 2024 at 16:46, Stephen Hemminger wrote: > > 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 detec

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Stephen Hemminger
On Sun, 31 Mar 2024 20:37:27 -0500 Aditya Ambadipudi wrote: > As previously discussed in the mailing list [1] we are sending out this > patch that provides the implementation and unit test cases for the > RTE_DEQUE library. This includes functions for creating a RTE_DEQUE > object. Allocating me

Re: The effect of inlining

2024-04-01 Thread Mattias Rönnblom
On 2024-03-29 14:42, 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 Andrey Ignatov wrote: You don't need always inline

[PATCH 0/2] mempool: patches

2024-04-01 Thread Stephen Hemminger
Tried building mempool with MSVC. In addition to the __rte_constant macro Tyler had already done. This fixes a couple of warnings, and cleans up the code. Stephen Hemminger (2): mempool: replace GCC pragma with cast mempool: fix unused warning with MSVC lib/mempool/rte_mempool.c | 14 ++---

[PATCH 1/2] mempool: replace GCC pragma with cast

2024-04-01 Thread Stephen Hemminger
Building mempool with MSVC generates a warning because of this pragma (same with clang when debug is enabled). The issue the pragma was working around can be better solved by using an additional cast. Fixes: af75078fece3 ("first public release") Signed-off-by: Stephen Hemminger --- lib/mempool/

[PATCH 2/2] mempool: fix unused warning with MSVC

2024-04-01 Thread Stephen Hemminger
Applying __rte_unused to a variable has no effect with MS windows compiler. The temporary variable used if debug enabled can just be eliminated. Signed-off-by: Stephen Hemminger --- lib/mempool/rte_mempool.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/mempool/rte_m

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

2024-04-01 Thread Tyler Retzlaff
On Sat, Mar 30, 2024 at 02:58:41AM +, bugzi...@dpdk.org wrote: > 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 >

Re: [PATCH 1/2] mempool: replace GCC pragma with cast

2024-04-01 Thread Tyler Retzlaff
On Mon, Apr 01, 2024 at 10:01:52AM -0700, Stephen Hemminger wrote: > Building mempool with MSVC generates a warning > because of this pragma (same with clang when debug is enabled). > The issue the pragma was working around can be better solved > by using an additional cast. > > Fixes: af75078fece

Re: [PATCH 2/2] mempool: fix unused warning with MSVC

2024-04-01 Thread Tyler Retzlaff
On Mon, Apr 01, 2024 at 10:01:53AM -0700, Stephen Hemminger wrote: > Applying __rte_unused to a variable has no effect with MS > windows compiler. The temporary variable used if debug > enabled can just be eliminated. > > Signed-off-by: Stephen Hemminger > --- Acked-by: Tyler Retzlaff

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

2024-04-01 Thread Stephen Hemminger
On Mon, 1 Apr 2024 10:20:14 -0700 Tyler Retzlaff wrote: > On Sat, Mar 30, 2024 at 02:58:41AM +, bugzi...@dpdk.org wrote: > > https://bugs.dpdk.org/show_bug.cgi?id=1409 > > > > Bug ID: 1409 > >Summary: arparse library assumes enum are 64 bit > >Product: DPD

Re: [PATCH v2 1/6] ethdev: support setting lanes

2024-04-01 Thread Thomas Monjalon
30/03/2024 12:38, huangdengdui: > But, there are different solutions for the device to report the setting > lane capability, as following: > 1. Like the current patch, reporting device capabilities in speed and >lane coupling mode. However, if we use this solution, we will have >to couple t

[PATCH v2] graph: avoid accessing graph list when getting stats

2024-04-01 Thread Robin Jarry
In rte_graph_cluster_stats_get, the walk model of the first graph is checked to determine if multi-core dispatch specific counters should be updated or not. This global list is accessed without any locks. If the global list is modified by another thread while rte_graph_cluster_stats_get is called,

Re: [RFC PATCH] usertools: add telemetry exporter

2024-04-01 Thread Robin Jarry
Anthony Harivel, Mar 27, 2024 at 16:18: Hi Robin, Thanks for this patch. I did test it and it works as expected. Nonetheless, maybe we can improve on some parts. Hey Anthony, thanks a lot for testing! In 'class TelemetrySocket', there is: ... self.sock.connect(path) data = json.loads(self.

Re: pcapng_autotest unit test false positive

2024-04-01 Thread Patrick Robb
On Fri, Mar 22, 2024 at 7:34 PM Stephen Hemminger wrote: > > > Could you build a simple test to see if TSC every runs backwards on > this machine. Or there could be yet another math error. > Or maybe container TSC is huge an wrapping around? > > The point of the test is to make sure that there was

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Aditya Ambadipudi
Thanks, Stephen, for the comment. Unfortunately, we don't have the dev setup nor the resources to test out this change using MSVC. Thank you, Aditya Ambadipudi From: Stephen Hemminger Sent: Monday, April 1, 2024 9:05 AM To: Aditya Ambadipudi Cc: dev@dpdk.org

Re: [PATCH v2 1/6] ethdev: support setting lanes

2024-04-01 Thread Damodharam Ammepalli
On Mon, Apr 1, 2024 at 1:07 PM Thomas Monjalon wrote: > > 30/03/2024 12:38, huangdengdui: > > But, there are different solutions for the device to report the setting > > lane capability, as following: > > 1. Like the current patch, reporting device capabilities in speed and > >lane coupling mo

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

2024-04-01 Thread Tyler Retzlaff
On Mon, Apr 01, 2024 at 12:34:08PM -0700, Stephen Hemminger wrote: > On Mon, 1 Apr 2024 10:20:14 -0700 > Tyler Retzlaff wrote: > > > On Sat, Mar 30, 2024 at 02:58:41AM +, bugzi...@dpdk.org wrote: > > > https://bugs.dpdk.org/show_bug.cgi?id=1409 > > > > > > Bug ID: 1409 > > >

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Tyler Retzlaff
On Mon, Apr 01, 2024 at 10:28:52PM +, Aditya Ambadipudi wrote: > Thanks, Stephen, for the comment. > > Unfortunately, we don't have the dev setup nor the resources to test out this > change using MSVC. what are the dependencies of this lib? you've provided an agnostic api and unit tests, yo

Re: pcapng_autotest unit test false positive

2024-04-01 Thread Stephen Hemminger
On Mon, 1 Apr 2024 18:26:44 -0400 Patrick Robb wrote: > Another idea - maybe multiple timestamps are gathered from different > CPU registers during the same test, and they are misaligned for that > reason. Maybe we can try reducing the cores for each unit test to 1 > and checking whether the issu

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Stephen Hemminger
On Mon, 1 Apr 2024 22:28:52 + Aditya Ambadipudi wrote: > Thanks, Stephen, for the comment. > > Unfortunately, we don't have the dev setup nor the resources to test out this > change using MSVC. > > Thank you, > Aditya Ambadipudi All it requires is the community version of MSVC which is fr

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Honnappa Nagarahalli
> On Apr 1, 2024, at 7:47 PM, Stephen Hemminger > wrote: > > On Mon, 1 Apr 2024 22:28:52 + > Aditya Ambadipudi wrote: > >> Thanks, Stephen, for the comment. >> >> Unfortunately, we don't have the dev setup nor the resources to test out >> this change using MSVC. >> >> Thank you, >> Ad

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Stephen Hemminger
On Tue, 2 Apr 2024 01:35:28 + Honnappa Nagarahalli wrote: > > On Apr 1, 2024, at 7:47 PM, Stephen Hemminger > > wrote: > > > > On Mon, 1 Apr 2024 22:28:52 + > > Aditya Ambadipudi wrote: > > > >> Thanks, Stephen, for the comment. > >> > >> Unfortunately, we don't have the dev setup

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Honnappa Nagarahalli
> On Apr 1, 2024, at 9:00 PM, Stephen Hemminger > wrote: > > On Tue, 2 Apr 2024 01:35:28 + > Honnappa Nagarahalli wrote: > >>> On Apr 1, 2024, at 7:47 PM, Stephen Hemminger >>> wrote: >>> >>> On Mon, 1 Apr 2024 22:28:52 + >>> Aditya Ambadipudi wrote: >>> Thanks, Stephen, fo

[DPDK/ethdev Bug 942] i40e: condition in `i40e_flow_parse_fdir_pattern()` is always false

2024-04-01 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=942 dengkaiwen (kaiwenx.d...@intel.com) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|

[DPDK/ethdev Bug 1275] About i40e statistics: When all packets overruns, rx_packets is 0, but rx_bytes still increasing

2024-04-01 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1275 dengkaiwen (kaiwenx.d...@intel.com) changed: What|Removed |Added Resolution|--- |INVALID Status|

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Stephen Hemminger
On Tue, 2 Apr 2024 02:14:06 + Honnappa Nagarahalli wrote: > > On Apr 1, 2024, at 9:00 PM, Stephen Hemminger > > wrote: > > > > On Tue, 2 Apr 2024 01:35:28 + > > Honnappa Nagarahalli wrote: > > > >>> On Apr 1, 2024, at 7:47 PM, Stephen Hemminger > >>> wrote: > >>> > >>> On Mon, 1

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Tyler Retzlaff
On Tue, Apr 02, 2024 at 03:03:13AM +, Aditya Ambadipudi wrote: > Hello Stephen, > > I have a copy of CLRS with me. And Deque is a very standard word in computer > science. Even CLRS which is considered one of the most foundational books in > computer science uses the word deque. i'm kind of

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Tyler Retzlaff
On Mon, Apr 01, 2024 at 07:53:48PM -0700, Stephen Hemminger wrote: > On Tue, 2 Apr 2024 02:14:06 + > Honnappa Nagarahalli wrote: > > > > On Apr 1, 2024, at 9:00 PM, Stephen Hemminger > > > wrote: > > > > > > On Tue, 2 Apr 2024 01:35:28 + > > > Honnappa Nagarahalli wrote: > > > > >

Re: [PATCH v1 0/2] deque: add multithread unsafe deque library

2024-04-01 Thread Mattias Rönnblom
On 2024-04-02 02:47, Stephen Hemminger wrote: On Mon, 1 Apr 2024 22:28:52 + Aditya Ambadipudi wrote: Thanks, Stephen, for the comment. Unfortunately, we don't have the dev setup nor the resources to test out this change using MSVC. Thank you, Aditya Ambadipudi All it requires is the c