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 ;
> 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
> 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
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
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
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
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.
>
>
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
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
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
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.
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
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
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
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
15 matches
Mail list logo