RE: [PATCH v1 0/5] Direct re-arming of buffers on receive side

2022-06-04 Thread Morten Brørup
> From: Konstantin Ananyev [mailto:konstantin.v.anan...@yandex.ru] > Sent: Saturday, 4 June 2022 01.32 > > > > >>> > > [konstantin.v.anan...@yandex.ru appears similar to someone who > previously sent you email, but may not be that person. Learn why > this > could be a risk at

[PATCH] test/hash: avoid out of bound access

2022-06-04 Thread Heinrich Schuchardt
rwc_non_lf_results->multi_rw, rwc_lf_results->multi_rw, and rwc_perf_results->multi_rw are accessed at indexes [0..NUM_TEST-1][0..1][0..NUMTEST-1]. Currently the first index overflows the array size in struct rwc_perf. Fixes: c7eb0972e74b ("test/test/test_hash_readwrite_lf.c") Cc: Dharmik Thakkar

Optimizations are not features

2022-06-04 Thread Morten Brørup
I would like the DPDK community to change its view on compile time options. Here is why: Application specific performance micro-optimizations like "fast mbuf free" and "mbuf direct re-arm" are being added to DPDK and presented as features. They are not features, but optimizations, and I d

Re: Optimizations are not features

2022-06-04 Thread Jerin Jacob
On Sat, Jun 4, 2022 at 2:39 PM Morten Brørup wrote: > > I would like the DPDK community to change its view on compile time options. > Here is why: > > > > Application specific performance micro-optimizations like “fast mbuf free” > and “mbuf direct re-arm” are being added to DPDK and presented a

Re: RFC: adapter instance get api proposal

2022-06-04 Thread Jerin Jacob
On Fri, Jun 3, 2022 at 9:47 PM Kundapura, Ganapati wrote: > > Hi dpdk-dev, > >I would like to submit adapter instance get api to retrieve the Rx/Tx > adapter instance id for for a Rx/Tx queue > > > > int > > rte_event_eth_rx_adapter_queue_instance_get(uint16_t eth_dev_id, > >

Re: Optimizations are not features

2022-06-04 Thread Andrew Rybchenko
On 6/4/22 12:33, Jerin Jacob wrote: On Sat, Jun 4, 2022 at 2:39 PM Morten Brørup wrote: I would like the DPDK community to change its view on compile time options. Here is why: Application specific performance micro-optimizations like “fast mbuf free” and “mbuf direct re-arm” are being ad

Re: Optimizations are not features

2022-06-04 Thread Jerin Jacob
On Sat, Jun 4, 2022 at 3:30 PM Andrew Rybchenko wrote: > > On 6/4/22 12:33, Jerin Jacob wrote: > > On Sat, Jun 4, 2022 at 2:39 PM Morten Brørup > > wrote: > >> > >> I would like the DPDK community to change its view on compile time > >> options. Here is why: > >> > >> > >> > >> Application spec

Re: [PATCH] ip_frag: add IPv4 fast fragment switch and test data

2022-06-04 Thread Konstantin Ananyev
04/06/2022 03:19, Huichao Cai пишет: I've seen some applications that have to rewrite fragment functions themselves in order to use MBUF_FAST_FREE features, such as iQiYi's DPVS. I am not sure that it will really help to improve performance, as if you have a lot of packets to fragment, you'l

RE: Optimizations are not features

2022-06-04 Thread Morten Brørup
> From: Jerin Jacob [mailto:jerinjac...@gmail.com] > Sent: Saturday, 4 June 2022 13.10 > > On Sat, Jun 4, 2022 at 3:30 PM Andrew Rybchenko > wrote: > > > > On 6/4/22 12:33, Jerin Jacob wrote: > > > On Sat, Jun 4, 2022 at 2:39 PM Morten Brørup > wrote: > > >> > > >> I would like the DPDK communit

Re: [PATCH v4 3/7] ethdev: introduce Rx queue based fill threshold

2022-06-04 Thread Andrew Rybchenko
On 6/3/22 15:48, Spike Du wrote: Fill threshold describes the fullness of a Rx queue. If the Rx queue fullness is above the threshold, the device will trigger the event RTE_ETH_EVENT_RX_FILL_THRESH. Sorry, I'm not sure that I understand. As far as I know the process to add more Rx buffers to Rx

Re: Optimizations are not features

2022-06-04 Thread Andrew Rybchenko
On 6/4/22 15:19, Morten Brørup wrote: From: Jerin Jacob [mailto:jerinjac...@gmail.com] Sent: Saturday, 4 June 2022 13.10 On Sat, Jun 4, 2022 at 3:30 PM Andrew Rybchenko wrote: On 6/4/22 12:33, Jerin Jacob wrote: On Sat, Jun 4, 2022 at 2:39 PM Morten Brørup wrote: I would like the DPDK co

Re: ixgbevf in dpdk doesn't seems to work (dpdk-stable-19.11.5)

2022-06-04 Thread Mohan Gyara
Hi, I am blocked for almost 2 weeks now, I have browsed ixgbevf driver code but couldn't get any clue. kindly help me with this issue. Regards,Mohan On Friday, 3 June, 2022, 02:29:58 pm IST, Bruce Richardson wrote: + ixgbe maintainers on CC On Fri, Jun 03, 2022 at 08:14:00AM +, M

[PATCH] raw/cnxk_gpio: allow controlling existing GPIO

2022-06-04 Thread Tomasz Duszynski
Controlling existing GPIO should be normally frowned upon because we want to avoid situation where multiple contenders modify GPIO state simultaneously. Still there might be situations where this is actually needed. Restarting killed application being an example here. So relax current restriction

Re: [PATCH v8 1/3] ethdev: introduce protocol hdr based buffer split

2022-06-04 Thread Andrew Rybchenko
On 6/3/22 19:30, Ding, Xuan wrote: Hi Andrew, -Original Message- From: Andrew Rybchenko Sent: Thursday, June 2, 2022 9:21 PM To: Wu, WenxuanX ; tho...@monjalon.net; Li, Xiaoyun ; ferruh.yi...@xilinx.com; Singh, Aman Deep ; dev@dpdk.org; Zhang, Yuying ; Zhang, Qi Z ; jerinjac...@gmail.c

[PATCH 00/10] Sync BPHY changes

2022-06-04 Thread Tomasz Duszynski
This series is a mixture of new features and improvements that have piled up during development phase. As for the features support for CPRI/eCPRI management was introduced, both for older and newer platforms. Along with that comes bunch of improvements and code cleanups. Jakub Palider (1): raw

[PATCH 01/10] common/cnxk: update register access for CNF10xxN

2022-06-04 Thread Tomasz Duszynski
Due to HW changes some fields which were used to enable xmit were moved elsewhere. This patch takes care of this. Signed-off-by: Tomasz Duszynski Reviewed-by: Jakub Palider Reviewed-by: Jerin Jacob Kollanukkaran Tested-by: Jerin Jacob Kollanukkaran --- drivers/common/cnxk/roc_bphy_cgx.c | 33

[PATCH 02/10] common/cnxk: use wider mask to extract RPM ID

2022-06-04 Thread Tomasz Duszynski
Some platforms have more RPMs available than the others. Take than into account when retrieving id of a particular RPM. Signed-off-by: Tomasz Duszynski Reviewed-by: Jakub Palider Reviewed-by: Jerin Jacob Kollanukkaran Tested-by: Jerin Jacob Kollanukkaran --- drivers/common/cnxk/roc_bphy_cgx.c

[PATCH 03/10] raw/cnxk_bphy: add doxygen comments

2022-06-04 Thread Tomasz Duszynski
From: Jakub Palider Documentation in doxygen format is important for API headers used by end user. This patch fills BPHY and CGX interface with missing bits. Signed-off-by: Jakub Palider Reviewed-by: Jerin Jacob Kollanukkaran --- drivers/raw/cnxk_bphy/rte_pmd_bphy.h | 339

[PATCH 04/10] common/cnxk: don't switch affinity back and forth

2022-06-04 Thread Tomasz Duszynski
Switching affinity back and forth was used as a mean to pass cpu number to irq registration routine which is an overkill. Simplify current logic by extending irq registration routine parameter list with a cpu which should run irq handler. Signed-off-by: Tomasz Duszynski Reviewed-by: Jakub Palide

[PATCH 08/10] common/cnxk: remove unused constants

2022-06-04 Thread Tomasz Duszynski
Some constants are redundant hence remove them. Signed-off-by: Tomasz Duszynski Reviewed-by: Jakub Palider Reviewed-by: Jerin Jacob Kollanukkaran --- drivers/common/cnxk/roc_bphy_cgx_priv.h | 53 - 1 file changed, 53 deletions(-) diff --git a/drivers/common/cnxk/roc_bp

[PATCH 09/10] common/cnxk: sync eth mode change command with firmware

2022-06-04 Thread Tomasz Duszynski
Layout of eth mode change command defined by firmware has been changed recently. So in order to retain compatibility between ROC and firmware update existing codebase. Signed-off-by: Tomasz Duszynski Reviewed-by: Jakub Palider Reviewed-by: Jerin Jacob Kollanukkaran --- drivers/common/cnxk/roc_

[PATCH 10/10] common/cnxk: support switching CPRI/ETH back and forth

2022-06-04 Thread Tomasz Duszynski
Add support for toggling modes between ETH and CPRI on newer MACs (RPM). Signed-off-by: Tomasz Duszynski Reviewed-by: Jakub Palider Reviewed-by: Jerin Jacob Kollanukkaran --- drivers/common/cnxk/roc_bphy_cgx.h| 17 - drivers/raw/cnxk_bphy/cnxk_bphy_cgx.c | 14 --

[PATCH 05/10] raw/cnxk_bphy: support switching from eCPRI to CPRI

2022-06-04 Thread Tomasz Duszynski
Add support for switching from ethernet (eCPRI) to CPRI mode. Signed-off-by: Tomasz Duszynski Reviewed-by: Jakub Palider Reviewed-by: Jerin Jacob Kollanukkaran --- doc/guides/rawdevs/cnxk_bphy.rst| 11 +++ drivers/common/cnxk/roc_bphy_cgx.c | 33 drivers/c

[PATCH 06/10] raw/cnxk_bphy: support enabling TX for CPRI SERDES

2022-06-04 Thread Tomasz Duszynski
Add support for enabling or disablig TX for SERDES configured in CPRI mode. Signed-off-by: Tomasz Duszynski Reviewed-by: Jakub Palider Reviewed-by: Jerin Jacob Kollanukkaran --- doc/guides/rawdevs/cnxk_bphy.rst| 10 +++ drivers/common/cnxk/roc_bphy_cgx.c | 31 +

[PATCH 07/10] raw/cnxk_bphy: support changing CPRI misc settings

2022-06-04 Thread Tomasz Duszynski
Add support for changing miscellaneous CPRI settings. Signed-off-by: Tomasz Duszynski Reviewed-by: Jerin Jacob Kollanukkaran --- doc/guides/rawdevs/cnxk_bphy.rst| 11 drivers/common/cnxk/roc_bphy_cgx.c | 30 + drivers/common/cnxk/roc_bphy_cgx.h |

[PATCH] common/cnxk: allow building generic arm64 target for cn9k/cn10k

2022-06-04 Thread Tomasz Duszynski
Allow building generic arm64 target using config/arm/arm64_armv8_linux_* config which works on both cn9k and cn10k by relaxing cache line size requirements a bit. While at it move cache line checks to common place. Signed-off-by: Tomasz Duszynski Reviewed-by: Jerin Jacob Kollanukkaran --- driv

Re: [PATCH v6 0/4] Add APIs for configurable power options

2022-06-04 Thread Thomas Monjalon
> Kevin Laatz (4): > lib/power: add get and set API for emptypoll max > lib/power: add get and set API for pause duration > lib/power: add get and set API for scaling freq min and max with > pstate mode > examples/l3fwd_power: add cli for configurable options Applied, thanks.

[PATCH] net/bonding: failover of LACP with mode 4 takes long time

2022-06-04 Thread Gaoxiang Liu
When the primary port of bond slaves with bond mode 4 linked down, the system id of the other slave ports channged. It may cause some switches to renegotiate, and the process takes a few seconds. It is not acceptable for any Telcos. We need sub-second switchover time like in linux. Set the mac of