RE: [EXT] Re: [PATCH v1 3/3] app/testpmd: support different input color method

2022-05-21 Thread Sunil Kumar Kori
Hi All, Please hold on for review as this version is not aligned with latest spec changes for input coloring mechanism. I will be sending the next version soon. Regards Sunil Kumar Kori > -Original Message- > From: Ferruh Yigit > Sent: Saturday, May 21, 2022 3:40 AM > To: Aman Singh ;

RE: [PATCH 00/12] Fix compilation with gcc 12

2022-05-21 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Friday, 20 May 2022 22.14 > > On Wed, 18 May 2022 12:16:45 +0200 > David Marchand wrote: > > > Fedora 36 is out since early may and comes with gcc 12. > > This series fixes compilation or waives some checks. > > > > There migh

RE: [PATCH 04/12] net/ena: fix build with GCC 12

2022-05-21 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Friday, 20 May 2022 22.28 > > On Wed, 18 May 2022 12:16:49 +0200 > David Marchand wrote: > > > + for (i = 0; i < RTE_DIM(default_key); ++i) > > default_key[i] = rte_rand() & 0xff; > > We should h

Re: [PATCH v2] event/dlb2: add support for single 512B write of 4 QEs

2022-05-21 Thread Jerin Jacob
On Fri, May 20, 2022 at 1:31 AM Timothy McDaniel wrote: > > On Xeon, as 512b accesses are available, movdir64 instruction is able to > perform 512b read and write to DLB producer port. In order for movdir64 > to be able to pull its data from store buffers (store-buffer-forwarding) > (before actual

Re: [PATCH 04/12] net/ena: fix build with GCC 12

2022-05-21 Thread Stephen Hemminger
On Sat, 21 May 2022 11:49:47 +0200 Morten Brørup wrote: > > > > Also, worth considering dropping DPDK random number generator > > in userspace for security reasons and just using more secure kernel > > code. > > Absolutely not! We need a fast pseudorandom number generator in DPDK. > > If any

RE: [RFC] ethdev: datapath-focused meter actions, continue

2022-05-21 Thread Alexander Kozyrev
On Thursday, May 19, 2022 13:35 Dumitrescu, Cristian : > Here are a few takeaways of mine, with a few actions for Alex and Ori: Thank you, Cristian, for compiling these takeaways. Great summary of the discussion. > 6. Alexander Kozyrev to provide pseudo-code for the meter operation with > the

Re: [RFC] ethdev: datapath-focused meter actions, continue

2022-05-21 Thread Ajit Khaparde
On Sat, May 21, 2022 at 7:49 PM Alexander Kozyrev wrote: > > On Thursday, May 19, 2022 13:35 Dumitrescu, Cristian > : > > Here are a few takeaways of mine, with a few actions for Alex and Ori: > > Thank you, Cristian, for compiling these takeaways. Great summary of the > discussion. Agree. > >

[RFC v2 0/7] introduce per-queue limit watermark and host shaper

2022-05-21 Thread Spike Du
LWM(limit watermark) is per RX queue attribute, when RX queue fullness reach the LWM limit, HW sends an event to dpdk application. Host shaper can configure shaper rate and lwm-triggered for a host port. The shaper limits the rate of traffic from host port to wire port. If lwm-triggered is enabled

[RFC v2 1/7] net/mlx5: add LWM support for Rxq

2022-05-21 Thread Spike Du
Add lwm(Limit WaterMark) field to Rxq object which indicates the percentage of RX queue size used by HW to raise LWM event to the user. Allow LWM setting in modify_rq command. Allow the LWM configuration dynamically by adding RDY2RDY state change. Signed-off-by: Spike Du --- drivers/net/mlx5/mlx

[RFC v2 3/7] ethdev: introduce Rx queue based limit watermark

2022-05-21 Thread Spike Du
LWM(limit watermark) describes the fullness of a Rx queue. If the Rx queue fullness is above LWM, the device will trigger the event RTE_ETH_EVENT_RX_LWM. LWM is defined as a percentage of Rx queue size with valid value of [0,99]. Setting LWM to 0 means disable it, which is the default. When transla

[RFC v2 5/7] net/mlx5: support Rx queue based limit watermark

2022-05-21 Thread Spike Du
Add mlx5 specific LWM(limit watermark) configuration and query handler. While the Rx queue fullness reaches the LWM limit, the driver catches an HW event and invokes the user callback. The query handler finds the next RX queue with pending LWM event if any, starting from the given RX queue index.

[RFC v2 4/7] net/mlx5: add LWM event handling support

2022-05-21 Thread Spike Du
When LWM meets RQ WQE, the kernel driver raises an event to SW. Use devx event_channel to catch this and to notify the user. Allocate this channel per shared device. The channel has a cookie that informs the specific event port and queue. Signed-off-by: Spike Du --- drivers/net/mlx5/mlx5.c

[RFC v2 2/7] common/mlx5: share interrupt management

2022-05-21 Thread Spike Du
There are many duplicate code of creating and initializing rte_intr_handle. Add a new mlx5_os API to do this, replace all PMD related code with this API. Signed-off-by: Spike Du --- drivers/common/mlx5/linux/mlx5_common_os.c | 131 ++ drivers/common/mlx5/linux/mlx5_common_os.h

[RFC v2 6/7] net/mlx5: add private API to config host port shaper

2022-05-21 Thread Spike Du
Host port shaper can be configured with QSHR(QoS Shaper Host Register). Add check in build files to enable this function or not. The host shaper configuration affects all the ethdev ports belonging to the same host port. Host shaper can configure shaper rate and lwm-triggered for a host port. The

[RFC v2 7/7] app/testpmd: add LWM and Host Shaper command

2022-05-21 Thread Spike Du
Add command line options to support LWM per-rxq configure. - Command syntax: set port rxq lwm mlx5 set port host_shaper lwm_triggered <0|1> rate - Example commands: To configure LWM as 30% of rxq size on port 1 rxq 0: testpmd> set port 1 rxq 0 lwm 30 To disable LWM on port 1 rxq 0: testp