[PATCH] doc: add tested platforms with NVIDIA NICs

2024-03-25 Thread Raslan Darawsheh
Add tested platforms with NVIDIA NICs to the 24.03 release notes. Signed-off-by: Raslan Darawsheh --- doc/guides/rel_notes/release_24_03.rst | 107 + 1 file changed, 107 insertions(+) diff --git a/doc/guides/rel_notes/release_24_03.rst b/doc/guides/rel_notes/release_24_

Testing report for DPDK release candidate 24.03-rc3

2024-03-25 Thread Wael Abualrub
Hi, > -Original Message- > From: Thomas Monjalon > Sent: Monday, March 18, 2024 5:46 AM > To: annou...@dpdk.org > Subject: release candidate 24.03-rc3 > > A new DPDK release candidate is ready for testing: > https://git.dpdk.org/dpdk/tag/?id=v24.03-rc3 > > There are 153 new patches

[PATCH] net/ixgbe: add param check when tx_queue or rx_queqe is null

2024-03-25 Thread keivinwang
add param check when tx_queue or rx_queqe is null. Signed-off-by: keivinwang --- drivers/net/ixgbe/ixgbe_rxtx.c | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/drivers/net/ixgbe/ixgbe_rxtx.c b/drivers/net/ixgbe/ixgbe_rxtx.c index f6c17d4efb..245b3527db 100644 ---

RE: [PATCH] app/testpmd: fix releasing action handle flush memory

2024-03-25 Thread Bing Zhao
Hi Ferruh, > -Original Message- > From: Ferruh Yigit > Sent: Tuesday, March 19, 2024 10:21 PM > To: Bing Zhao ; dmitry.kozl...@gmail.com; > dev@dpdk.org > Cc: aman.deep.si...@intel.com; yuying.zh...@intel.com; Matan Azrad > ; sta...@dpdk.org; Dariusz Sosnowski > > Subject: Re: [PATCH] ap

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

2024-03-25 Thread Thomas Monjalon
25/03/2024 07:24, huangdengdui: > > On 2024/3/22 21:58, Thomas Monjalon wrote: > > 22/03/2024 08:09, Dengdui Huang: > >> -#define RTE_ETH_LINK_SPEED_10G RTE_BIT32(8) /**< 10 Gbps */ > >> -#define RTE_ETH_LINK_SPEED_20G RTE_BIT32(9) /**< 20 Gbps */ > >> -#define RTE_ETH_LINK_SPEED_25G

Re: [PATCH] doc: add tested platforms with NVIDIA NICs

2024-03-25 Thread Thomas Monjalon
25/03/2024 08:28, Raslan Darawsheh: > Add tested platforms with NVIDIA NICs to the 24.03 release notes. > > Signed-off-by: Raslan Darawsheh Applied, thanks.

Re: meson option to customize RTE_PKTMBUF_HEADROOM patch

2024-03-25 Thread Bruce Richardson
On Sat, Mar 23, 2024 at 01:51:25PM -0700, Garrett D'Amore wrote: >So we right now (at WEKA) have a somewhat older version of DPDK that we >have customized heavily, and I am going to to need to to make the >headroom *dynamic* (passed in at run time, and per port.) >We have this requi

RE: [PATCH v2] doc: update LTS maintenance to 3 years

2024-03-25 Thread Morten Brørup
> From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Monday, 25 March 2024 00.14 > > 17/01/2024 17:24, Kevin Traynor: > > The existing official policy was to maintain LTS releases for 2 years. > > > > 19.11 and 20.11 LTS releases were maintained for 3 years and there was > > not significan

[PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Robin Jarry
In some cases, the node context data is used to store two pointers because the data is larger than the reserved 16 bytes. Having to define intermediate structures just to be able to cast is tedious. Add two pointers that take the same space than ctx. Signed-off-by: Robin Jarry --- Notes: v3:

[PATCH v2] app/testpmd: fix releasing action handle flush memory

2024-03-25 Thread Bing Zhao
The memory of the indirect action handles should be freed after being destroyed in the flush. The behavior needs to be consistent with the single handle destroy port_action_handle_destroy(). Or else, there would be some memory leak when closing / detaching a port without quitting the application.

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Jerin Jacob
On Mon, Mar 25, 2024 at 3:35 PM Robin Jarry wrote: > > In some cases, the node context data is used to store two pointers > because the data is larger than the reserved 16 bytes. Having to define > intermediate structures just to be able to cast is tedious. Add two > pointers that take the same sp

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Robin Jarry
Jerin Jacob, Mar 25, 2024 at 11:59: > +static_assert(offsetof(struct rte_node, ctx) % RTE_CACHE_LINE_SIZE == 0, > + "rte_node ctx must be aligned on a cache line"); This will fail in 32bit machine. https://mails.dpdk.org/archives/test-report/2024-March/623806.html Hi Jerin, yes I saw th

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Jerin Jacob
On Mon, Mar 25, 2024 at 4:32 PM Robin Jarry wrote: > > Jerin Jacob, Mar 25, 2024 at 11:59: > > > +static_assert(offsetof(struct rte_node, ctx) % RTE_CACHE_LINE_SIZE == 0, > > > + "rte_node ctx must be aligned on a cache line"); > > > > > > This will fail in 32bit machine. > > https://mails.d

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Robin Jarry
Jerin Jacob, Mar 25, 2024 at 12:08: > It will not be taken into account for MSVC. Is that OK? Why?. rte_mbuf has a similar scheme. RTE_MARKER cacheline1 __rte_cache_min_aligned; RTE_MARKER* types seem not defined for the MSVC toolchain. https://github.com/DPDK/dpdk/blob/v24.03-rc4/lib/eal/inc

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Jerin Jacob
On Mon, Mar 25, 2024 at 4:45 PM Robin Jarry wrote: > > Jerin Jacob, Mar 25, 2024 at 12:08: > > > It will not be taken into account for MSVC. Is that OK? > > > > Why?. rte_mbuf has a similar scheme. > > RTE_MARKER cacheline1 __rte_cache_min_aligned; > > RTE_MARKER* types seem not defined for the MS

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Bruce Richardson
On Mon, Mar 25, 2024 at 05:05:12PM +0530, Jerin Jacob wrote: > On Mon, Mar 25, 2024 at 4:45 PM Robin Jarry wrote: > > > > Jerin Jacob, Mar 25, 2024 at 12:08: > > > > It will not be taken into account for MSVC. Is that OK? > > > > > > Why?. rte_mbuf has a similar scheme. > > > RTE_MARKER cacheline1

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread David Marchand
On Mon, Mar 25, 2024 at 12:35 PM Jerin Jacob wrote: > > On Mon, Mar 25, 2024 at 4:45 PM Robin Jarry wrote: > > > > Jerin Jacob, Mar 25, 2024 at 12:08: > > > > It will not be taken into account for MSVC. Is that OK? > > > > > > Why?. rte_mbuf has a similar scheme. > > > RTE_MARKER cacheline1 __rte

RE: [PATCH v6 01/14] examples/l3fwd: fix queue ID restriction

2024-03-25 Thread Tummala, Sivaprasad
[AMD Official Use Only - General] Hi, > -Original Message- > From: David Marchand > Sent: Friday, March 22, 2024 9:11 PM > To: Tummala, Sivaprasad > Cc: david.h...@intel.com; anatoly.bura...@intel.com; jer...@marvell.com; > radu.nico...@intel.com; gak...@marvell.com; cristian.dumitre...

Re: [PATCH 0/3] support setting lanes

2024-03-25 Thread Jerin Jacob
On Fri, Mar 22, 2024 at 7:21 PM Thomas Monjalon wrote: > > 22/03/2024 06:51, Jerin Jacob: > > On Fri, Mar 22, 2024 at 10:56 AM Ajit Khaparde > > wrote: > > > > > > On Thu, Mar 21, 2024 at 9:39 PM Jerin Jacob wrote: > > > > > > > > On Fri, Mar 22, 2024 at 7:58 AM huangdengdui > > > > wrote: > >

[RFC] graph/node: feedback and future improvements

2024-03-25 Thread Robin Jarry
Hi Jerin, all, I apologize in advance for the long email :) I am working on a project [1] that uses rte_graph extensively. In the course of action, I have stumbled upon a few issues. I managed to work around them for now, but I'd like to get more insights about long term solutions. Per Rx/T

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Robin Jarry
Jerin Jacob, Mar 25, 2024 at 12:35: Another option could be to have a helper inline function/macro to take care of casting to make app code clean of casting. Would something like this be suitable? #define RTE_NODE_CTX_PTR1(n) ((void **)(n)->ctx)[0] #define RTE_NODE_CTX_PTR2(n) ((void **)(n)->c

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Jerin Jacob
On Mon, Mar 25, 2024 at 8:50 PM Robin Jarry wrote: > > Jerin Jacob, Mar 25, 2024 at 12:35: > > Another option could be to have a helper inline function/macro to take > > care of casting to make app code clean of casting. > > Would something like this be suitable? > > #define RTE_NODE_CTX_PTR1(n) (

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Robin Jarry
Jerin Jacob, Mar 25, 2024 at 16:47: > #define RTE_NODE_CTX_PTR1(n) ((void **)(n)->ctx)[0] > #define RTE_NODE_CTX_PTR2(n) ((void **)(n)->ctx)[1] Works for me. No strong opinion about the name, RTE_NODE_CTX_AS_PTR1 may be more reflecting the intent. I also thought about adding inline getter/sett

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

2024-03-25 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,

[PATCH] graph: avoid id collisions

2024-03-25 Thread Robin Jarry
The graph id is determined based on a global variable that is incremented every time a graph is created, and decremented every time a graph is destroyed. This only works if graphs are destroyed in the reverse order in which they have been created. The following code produces duplicate graph IDs wh

Re: [PATCH v3] graph: expose node context as pointers

2024-03-25 Thread Jerin Jacob
On Mon, Mar 25, 2024 at 9:21 PM Robin Jarry wrote: > > Jerin Jacob, Mar 25, 2024 at 16:47: > > > #define RTE_NODE_CTX_PTR1(n) ((void **)(n)->ctx)[0] > > > #define RTE_NODE_CTX_PTR2(n) ((void **)(n)->ctx)[1] > > > > Works for me. No strong opinion about the name, RTE_NODE_CTX_AS_PTR1 > > may be mor

[PATCH v4] graph: expose node context as pointers

2024-03-25 Thread Robin Jarry
In some cases, the node context data is used to store two pointers because the data is larger than the reserved 16 bytes. Having to define intermediate structures just to be able to cast is tedious. Add helper inline functions to cast the node context to opaque pointers. Signed-off-by: Robin Jarry

Re: [PATCH v2 38/45] bus/vmbus: use rte stdatomic API

2024-03-25 Thread Tyler Retzlaff
On Fri, Mar 22, 2024 at 07:34:46PM +, Long Li wrote: > > static inline void > > vmbus_set_monitor(const struct vmbus_channel *channel, uint32_t monitor_id) > > { > > - uint32_t *monitor_addr, monitor_mask; > > + RTE_ATOMIC(uint32_t) *monitor_addr, monitor_mask; > > Does this mean monitor

Re: [PATCH v4] graph: expose node context as pointers

2024-03-25 Thread Jerin Jacob
On Mon, Mar 25, 2024 at 10:11 PM Robin Jarry wrote: > > In some cases, the node context data is used to store two pointers > because the data is larger than the reserved 16 bytes. Having to define > intermediate structures just to be able to cast is tedious. Add helper > inline functions to cast t

[RFC PATCH v3] net/iavf: support rte flow with mask for FDIR

2024-03-25 Thread Ian Stokes
From: Ananth S This patch supports rte flow with mask for FDIR, including eth/ipv4/ipv6/tcp/udp flow items, where src/dst for ipv4/ipv6 and sport/dport for tcp/udp are realized by switch filter. This patch additionally contains the fixes for the issues identified in the patch [21.11.5 v2]. This

Re: meson option to customize RTE_PKTMBUF_HEADROOM patch

2024-03-25 Thread Stephen Hemminger
On Mon, 25 Mar 2024 10:01:52 + Bruce Richardson wrote: > On Sat, Mar 23, 2024 at 01:51:25PM -0700, Garrett D'Amore wrote: > >So we right now (at WEKA) have a somewhat older version of DPDK that we > >have customized heavily, and I am going to to need to to make the > >headroom *dy

[PATCH v12 00/14] Logging unification and enhancements

2024-03-25 Thread Stephen Hemminger
Improvements and unification of logging library (for 24.07 release). 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 analy

[PATCH v12 01/14] windows: make getopt functions have const properties

2024-03-25 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 v12 02/14] windows: add os shim for localtime_r

2024-03-25 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 --- lib/eal/windows/include/rte_os_shim.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/lib/eal/windows/include/rte_os_shim.h b/lib/eal/windows/incl

[PATCH v12 03/14] eal: make eal_log_level_parse common

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

[PATCH v12 04/14] eal: do not duplicate rte_init_alert() messages

2024-03-25 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 --- lib/eal/freebsd/eal.c | 3 +-- lib/eal/linux/eal.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --g

[PATCH v12 05/14] eal: change rte_exit() output to match rte_log()

2024-03-25 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 v12 07/14] eal: initialize log before everything else

2024-03-25 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 v12 06/14] log: move handling of syslog facility out of eal

2024-03-25 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 v12 08/14] log: drop syslog support, and make code common

2024-03-25 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 --- lib/log/log.c | 29 lib/log/log_internal.h | 6 --- lib/log/log_linux.c| 102 --

[PATCH v12 09/14] log: add hook for printing log messages

2024-03-25 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 | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/lib/log/log.c b/lib/log/log.c index f597da2e39..acd4

[PATCH v12 10/14] log: add timestamp option

2024-03-25 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 v12 11/14] log: add optional support of syslog

2024-03-25 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 --- doc/guides/linux_gsg/linux_eal_parameters.rst | 27 - doc/guides/prog_guide/log_lib.rst

[PATCH v12 12/14] log: add support for systemd journal

2024-03-25 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 v12 13/14] log: colorize log output

2024-03-25 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 --- doc/guides/prog_guide/log_lib.rst | 16 ++- lib/

[PATCH v12 14/14] maintainers: add for log library

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

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

2024-03-25 Thread Damodharam Ammepalli
On Mon, Mar 25, 2024 at 2:30 AM Thomas Monjalon wrote: > > 25/03/2024 07:24, huangdengdui: > > > > On 2024/3/22 21:58, Thomas Monjalon wrote: > > > 22/03/2024 08:09, Dengdui Huang: > > >> -#define RTE_ETH_LINK_SPEED_10G RTE_BIT32(8) /**< 10 Gbps */ > > >> -#define RTE_ETH_LINK_SPEED_20G R

Re: meson option to customize RTE_PKTMBUF_HEADROOM patch

2024-03-25 Thread Garrett D'Amore
So we need (for reasons that I don't want to get to into in too much detail) that our UDP payload headers are at a specific offset in the packet. This was not a problem as long as we only used IPv4.  (We have configured 40 bytes of headroom, which is more than any of our PMDs need by a hefty mar

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

2024-03-25 Thread lihuisong (C)
在 2024/3/25 17:30, Thomas Monjalon 写道: 25/03/2024 07:24, huangdengdui: On 2024/3/22 21:58, Thomas Monjalon wrote: 22/03/2024 08:09, Dengdui Huang: -#define RTE_ETH_LINK_SPEED_10G RTE_BIT32(8) /**< 10 Gbps */ -#define RTE_ETH_LINK_SPEED_20G RTE_BIT32(9) /**< 20 Gbps */ -#define RTE_

[PATCH v13 00/11] Logging unification and improvements

2024-03-25 Thread Stephen Hemminger
Improvements and unification of logging library (for 24.07 release). 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 analy

[PATCH v13 01/11] windows: make getopt functions have const properties

2024-03-25 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 v13 02/11] windows: add os shim for localtime_r

2024-03-25 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 --- lib/eal/windows/include/rte_os_shim.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/lib/eal/windows/include/rte_os_shim.h b/lib/eal/windows/incl

[PATCH v13 03/11] eal: make eal_log_level_parse common

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

[PATCH v13 04/11] eal: do not duplicate rte_init_alert() messages

2024-03-25 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 --- lib/eal/freebsd/eal.c | 3 +-- lib/eal/linux/eal.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --g

[PATCH v13 05/11] eal: change rte_exit() output to match rte_log()

2024-03-25 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 v13 06/11] log: move handling of syslog facility out of eal

2024-03-25 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 v13 08/11] log: drop syslog support, and make code common

2024-03-25 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 | 2

[PATCH v13 07/11] eal: initialize log before everything else

2024-03-25 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 v13 09/11] log: add hook for printing log messages

2024-03-25 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 | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/lib/log/log.c b/lib/log/log.c index f597da2e39..acd4

[PATCH v13 10/11] log: add timestamp option

2024-03-25 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 v13 11/11] log: add optional support of syslog

2024-03-25 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_parameter

Re: [PATCH 0/2] introduce PM QoS interface

2024-03-25 Thread lihuisong (C)
在 2024/3/22 20:35, Morten Brørup 写道: From: lihuisong (C) [mailto:lihuis...@huawei.com] Sent: Friday, 22 March 2024 09.54 +Tyler, +Alan, +Wei, +Long for asking this similar feature on Windows. 在 2024/3/21 21:30, Morten Brørup 写道: From: lihuisong (C) [mailto:lihuis...@huawei.com] Sent: Thursda

Re: [PATCH 0/2] introduce PM QoS interface

2024-03-25 Thread lihuisong (C)
Hi Tyler, 在 2024/3/23 1:55, Tyler Retzlaff 写道: On Fri, Mar 22, 2024 at 04:54:01PM +0800, lihuisong (C) wrote: +Tyler, +Alan, +Wei, +Long for asking this similar feature on Windows. 在 2024/3/21 21:30, Morten Brørup 写道: From: lihuisong (C) [mailto:lihuis...@huawei.com] Sent: Thursday, 21 March

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

2024-03-25 Thread Ajit Khaparde
On Mon, Mar 25, 2024 at 6:42 PM lihuisong (C) wrote: > > > 在 2024/3/25 17:30, Thomas Monjalon 写道: > > 25/03/2024 07:24, huangdengdui: > >> On 2024/3/22 21:58, Thomas Monjalon wrote: > >>> 22/03/2024 08:09, Dengdui Huang: > -#define RTE_ETH_LINK_SPEED_10G RTE_BIT32(8) /**< 10 Gbps */ > >>