[PATCH v1] raw/ifpga: initialize variable to avoid compile error

2022-03-16 Thread Wei Huang
Compile failed with cflag optimization=1 on Ubuntu20.04 with GCC10.3, it reported vendor_id and dev_id may be used uninitialized in function ifpga_rawdev_fill_info(). Actually it's not the truth, the variables are initialized in function ifpga_get_dev_vendor_id(). To avoid such compile error, the v

RE: [PATCH v1] net/iavf: fix select wrong scan hw ring by rxdid

2022-03-16 Thread Xing, Beilei
> -Original Message- > From: Yang, SteveX > Sent: Monday, March 14, 2022 5:32 PM > To: dev@dpdk.org > Cc: Wu, Jingjing ; Xing, Beilei > ; > Zhang, Qi Z ; Yang, SteveX ; > sta...@dpdk.org > Subject: [PATCH v1] net/iavf: fix select wrong scan hw ring by rxdid > > When setup RX queue, th

[PATCH] test/crypto-perf: extend asymmetric crypto throughput test

2022-03-16 Thread kirankumark
From: Kiran Kumar K Extended support for asymmetric crypto perf throughput test. Added support for new modulus lengths. Added new parameter --modex-len. Supported lengths are 60, 128, 255, 448. Default length is 128. Signed-off-by: Kiran Kumar K --- app/test-crypto-perf/cperf_ops.c

RE: [PATCH v1] raw/ifpga: initialize variable to avoid compile error

2022-03-16 Thread Gao, DaxueX
> -Original Message- > From: Wei Huang > Sent: 2022年3月16日 15:27 > To: dev@dpdk.org; tho...@monjalon.net; Xu, Rosen ; > nipun.gu...@nxp.com; hemant.agra...@nxp.com > Cc: sta...@dpdk.org; Zhang, Tianfei ; Zhang, Qi Z > ; Yigit, Ferruh ; Huang, Wei > > Subject: [PATCH v1] raw/ifpga: initia

Re: [PATCH v1] raw/ifpga: initialize variable to avoid compile error

2022-03-16 Thread Thomas Monjalon
16/03/2022 10:27, Gao, DaxueX: > From: Wei Huang > > > > Compile failed with cflag optimization=1 on Ubuntu20.04 with GCC10.3, it > > reported vendor_id and dev_id may be used uninitialized in function > > ifpga_rawdev_fill_info(). > > Actually it's not the truth, the variables are initialized in

Re: rte_flow API change request: tunnel info restoration is too slow

2022-03-16 Thread Thomas Monjalon
15/03/2022 23:12, Ilya Maximets: > Hi, everyone. > > After implementing support for tunnel offloading in OVS we faced a > significant performance issue caused by the requirement to call > rte_flow_get_restore_info() function on a per-packet basis. > > The main problem is that once the tunnel offl

[PATCH] doc: fix support table for ETH and VLAN flow items

2022-03-16 Thread Ilya Maximets
'has_vlan' attribute is only supported by sfc, mlx5 and cnxk. Other drivers doesn't support it. Most of them (like i40e) just ignore it silently. Some drivers (like mlx4) never had a full support of the eth item even before introduction of 'has_vlan' (mlx4 allows to match on the destination MAC o

Re: rte_flow API change request: tunnel info restoration is too slow

2022-03-16 Thread Ilya Maximets
On 3/16/22 10:41, Thomas Monjalon wrote: > 15/03/2022 23:12, Ilya Maximets: >> Hi, everyone. >> >> After implementing support for tunnel offloading in OVS we faced a >> significant performance issue caused by the requirement to call >> rte_flow_get_restore_info() function on a per-packet basis. >>

Re: [PATCH] net/cnxk: fix error when compiled for x86

2022-03-16 Thread Kevin Traynor
On 16/03/2022 03:32, Gao, DaxueX wrote: -Original Message- From: Jerin Jacob Sent: 2022年3月10日 16:49 To: Jiang, YuX Cc: Rakesh Kudurumalla ; Nithin Dabilpuram ; Kiran Kumar K ; Sunil Kumar Kori ; Satha Rao ; dev@dpdk.org; jer...@marvell.com; sta...@dpdk.org; Yigit, Ferruh Subject: Re: [

rte flow for arp packet

2022-03-16 Thread Yaron Illouz
Hi Is there a way using rte_flow to send arp and ndp packet to specific rx queue with dpdk

[Bug 959] tsc hz not matching kernel reported tcs frequency

2022-03-16 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=959 Bug ID: 959 Summary: tsc hz not matching kernel reported tcs frequency Product: DPDK Version: 21.11 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal

RE: rte flow for arp packet

2022-03-16 Thread Ori Kam
Hi You need to create a rule that matches the arp/ndp packets and use the queue action. From: Yaron Illouz Sent: Wednesday, March 16, 2022 2:42 PM To: dev@dpdk.org Cc: Ori Kam Subject: rte flow for arp packet Hi Is there a way using rte_flow to send arp and ndp packet to specific rx queue wi

RE: release candidate 22.03-rc4

2022-03-16 Thread Jiang, YuX
> -Original Message- > From: Thomas Monjalon > Sent: Tuesday, March 15, 2022 9:21 AM > To: annou...@dpdk.org > Subject: release candidate 22.03-rc4 > > A new DPDK release candidate is ready for testing: > https://git.dpdk.org/dpdk/tag/?id=v22.03-rc4 > > There are 31 new patches in th

[PATCH v2 0/9] Improve Linux drivers GSG section

2022-03-16 Thread Bruce Richardson
This patchset reworks large parts of the linux drivers section of the Linux Getting Started Guide, so as to make it clearer and easier to read. The overall flow of the page is adjusted so that more important information is nearer the top, and so that all information on VFIO is consolidated into a s

[PATCH v2 1/9] doc: replace special characters for (R) symbol in Linux GSG

2022-03-16 Thread Bruce Richardson
Some IDEs, such as eclipse, complained on save about the use of special characters in the (R) symbol in linux GSG doc. We can replace those with the equivalent "|reg|" text, and including isonum.txt. Cc: sta...@dpdk.org Signed-off-by: Bruce Richardson --- doc/guides/linux_gsg/enable_func.rst

[PATCH v2 2/9] doc: fix missing note on UIO module in Linux GSG

2022-03-16 Thread Bruce Richardson
The docs on binding drivers was updated as part of the removal of the igb_uio module from the main DPDK repo. As part of that update, a note about uio_pci_generic requiring legacy interrupts was removed, but should have been kept. Fixes: 56bb5841fd06 ("kernel/linux: remove igb_uio") Cc: tho...@mon

[PATCH v2 3/9] doc: make UIO safety warning more visible in Linux GSG

2022-03-16 Thread Bruce Richardson
The GSG has a note warning that use of UIO is inherently unsafe due to lack of IOMMU protection. However, this was only flagged as a "NOTE", meaning it could easily be missed. Changing the rst tag from "note" to "warning" and moving it to the top of the UIO subsection makes this a lot more visible

[PATCH v2 4/9] doc: move section on binding drivers up the page in GSG

2022-03-16 Thread Bruce Richardson
While the details of VFIO and UIO may be of interest to some, most users of the doc are likely primarily interested in how to bind their devices to the kernel driver and then move on to running the app. Therefore, the most important part of the "Linux Drivers" section of the GSG is the subsection o

[PATCH v2 5/9] doc: emphasise VFIO over UIO-based modules in GSG

2022-03-16 Thread Bruce Richardson
VFIO is to be strongly preferred over uio-based modules, so update our text and examples to only refer to vfio, giving an initial reference at the start to uio as a fallback option. Cc: sta...@dpdk.org Signed-off-by: Bruce Richardson --- doc/guides/linux_gsg/linux_drivers.rst | 47 +

[PATCH v2 6/9] doc: split GSG VFIO section into subsections

2022-03-16 Thread Bruce Richardson
The VFIO section of the page about linux drivers was rather long and unstructured. This can be improved by splitting it up into subsections, to cover the specifics of memory limits and creating VFs. When moving the various text notes into the relevant subsections, we can drop the note about kernels

[PATCH v2 8/9] doc: consolidate all VFIO content on GSG driver page

2022-03-16 Thread Bruce Richardson
Rather than having separate sections for VFIO and VFIO no-iommu mode, as well as a separate section further down the document on troubleshooting VFIO, we can consolidate all these as subsections into a primary VFIO section. This section starts with the basics of VFIO use, then covers no-iommu mode,

[PATCH v2 7/9] doc: move GSG section on UIO to the end of drivers page

2022-03-16 Thread Bruce Richardson
To further de-emphasise UIO over the alternatives, we can move the UIO section of the drivers page to the end of the document, giving more prominence to VFIO and bifurcated drivers. Cc: sta...@dpdk.org Signed-off-by: Bruce Richardson --- doc/guides/linux_gsg/linux_drivers.rst | 104

[PATCH v2 9/9] doc: change informational warnings to notes in Linux GSG

2022-03-16 Thread Bruce Richardson
There are two warnings in the VFIO section about limitations of VFIO and limitations on who can bind/unbind devices. Since these don't actually describe any unsafe conditions, and are more informational, we can change these to notes. This also helps emphasise the other warnings in the documents whi

Re: rte_flow API change request: tunnel info restoration is too slow

2022-03-16 Thread Thomas Monjalon
16/03/2022 13:25, Ilya Maximets: > On 3/16/22 10:41, Thomas Monjalon wrote: > > 15/03/2022 23:12, Ilya Maximets: > >> Hi, everyone. > >> > >> After implementing support for tunnel offloading in OVS we faced a > >> significant performance issue caused by the requirement to call > >> rte_flow_get_res

RE: rte flow for arp packet

2022-03-16 Thread Yaron Illouz
In the rte_flow_item_type I don’t see an entry for arp or ndp Is there another way to do it ? For ipv4 I did the following way pattern[0].type = RTE_FLOW_ITEM_TYPE_ETH; pattern[0].spec = NULL;

[Bug 960] PCAP PMD receives packets larger then MTU

2022-03-16 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=960 Bug ID: 960 Summary: PCAP PMD receives packets larger then MTU Product: DPDK Version: 21.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal Pr

[Bug 961] PCAP PMD receives packets larger then MTU

2022-03-16 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=961 Bug ID: 961 Summary: PCAP PMD receives packets larger then MTU Product: DPDK Version: 21.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal Pr

RE: rte_flow API change request: tunnel info restoration is too slow

2022-03-16 Thread Ori Kam
Hi > -Original Message- > From: Thomas Monjalon > Sent: Wednesday, March 16, 2022 3:47 PM > Subject: Re: rte_flow API change request: tunnel info restoration is too slow > > 16/03/2022 13:25, Ilya Maximets: > > On 3/16/22 10:41, Thomas Monjalon wrote: > > > 15/03/2022 23:12, Ilya Maximet

RE: release candidate 22.03-rc4

2022-03-16 Thread Wael Abualrub
Hi, > -Original Message- > From: Thomas Monjalon > Sent: Tuesday, March 15, 2022 3:21 AM > To: annou...@dpdk.org > Subject: release candidate 22.03-rc4 > > A new DPDK release candidate is ready for testing: > https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F > %2Fgit.

[PATCH 22.07] doc: make doc roadmap common for Linux/BSD GSGs

2022-03-16 Thread Bruce Richardson
Both the Linux and FreeBSD GSG docs had a "Documentation Roadmap" section as part of the introduction page, and this contained the same information, with only the reference to the GSGs themselves being different. This text can be consolidated into a single text file which is included by both GSG in

[PATCH v1] doc: update release notes for 22.03

2022-03-16 Thread John McNamara
Fix grammar, spelling and formatting of DPDK 22.03 release notes. Signed-off-by: John McNamara --- Note: I haven't removed the boilerplate RST comments from this file/patch in order to make it easier to merge apply. If you want me to do that I can submit a v2. doc/guides/rel_not

Re: [PATCH v2 0/9] Improve Linux drivers GSG section

2022-03-16 Thread Thomas Monjalon
16/03/2022 14:45, Bruce Richardson: > This patchset reworks large parts of the linux drivers section of the > Linux Getting Started Guide, so as to make it clearer and easier to > read. The overall flow of the page is adjusted so that more important > information is nearer the top, and so that all

Re: [PATCH 0/4] Update doc lists in GSG intros

2022-03-16 Thread Thomas Monjalon
15/03/2022 23:05, Bruce Richardson: > This set updates the documentation roadmap section at the start of the > Linux and FreeBSD GSG docs. Changes made: > > * Change doc titles to hyperlinks to each doc > * Add the drivers reference guides to the lists > > Bruce Richardson (4): > doc: add hype

[PATCH] ixgbe/base: Manual AN-37 for troublesome link partners for X550 SFI

2022-03-16 Thread Jeff Daly
Some SFP link partners exhibit a disinclination to autonegotiate with X550 configured in SFI mode. This patch enables a manual AN-37 restart to work around the problem. Signed-off-by: Jeff Daly --- drivers/net/ixgbe/base/ixgbe_type.h | 1 + drivers/net/ixgbe/base/ixgbe_x550.c | 51

[PATCH v2] ixgbe/base: Manual AN-37 for troublesome link partners for X550 SFI

2022-03-16 Thread Jeff Daly
Some SFP link partners exhibit a disinclination to autonegotiate with X550 configured in SFI mode. This patch enables a manual AN-37 restart to work around the problem. -- v2 fixed whitespace Signed-off-by: Jeff Daly --- drivers/net/ixgbe/base/ixgbe_type.h | 1 + drivers/net/ixgbe/base/ixgbe_

Re: [PATCH] doc: nohz_full already implies rcu_nocbs

2022-03-16 Thread Thomas Monjalon
08/02/2022 04:50, Tudor Brindus: > From Documentation/admin-guide/kernel-parameters.txt, specifically the > last sentence: > > nohz_full= [KNL,BOOT,SMP,ISOL] > The argument is a cpu list, as described above. > In kernels built with CONFIG_NO_HZ_FULL=y, set > the speci

Re: [PATCH v3 0/4] arm64 cross docs improvements/fixes

2022-03-16 Thread Thomas Monjalon
25/01/2022 14:19, Juraj Linkeš: > The docs are a bit outdated and in need of updates. > > Using CFLAGS and LDFLAGS is an artefact of the old build system, Meson > doesn't support those well. > > Numaclt can't be cross compiled with clang. > > The names of downloaded binaried have an extra -none-

Re: [PATCH v2] doc: fix telemetry example for cryptodev

2022-03-16 Thread Thomas Monjalon
> >Blank line added to the final telemetry example for the cryptography device > >library as to fix the example rendering. > > > >Fixes: 1c559ee8469 ("cryptodev: add telemetry endpoint for capabilities") > >Cc: sta...@dpdk.org > > > >Signed-off-by: Sean Morrissey > > > Thanks for this. > > Acke

Re: [PATCH v1] raw/ifpga: initialize variable to avoid compile error

2022-03-16 Thread Thomas Monjalon
16/03/2022 10:40, Thomas Monjalon: > 16/03/2022 10:27, Gao, DaxueX: > > From: Wei Huang > > > > > > Compile failed with cflag optimization=1 on Ubuntu20.04 with GCC10.3, it > > > reported vendor_id and dev_id may be used uninitialized in function > > > ifpga_rawdev_fill_info(). > > > Actually it'

Re: [PATCH] lib/power: power pmd errata with RTM and gcc-9

2022-03-16 Thread Thomas Monjalon
09/03/2022 14:22, David Hunt: > An errata exists where users may see reduced power savings when using > PMD Power Management. This issue occurs when compiling DPDK applications > with gcc-9 on platforms with TSX enabled. In rte_power_monitor_multi(), > the function may return without successfully s

[PATCH v1] doc: announce changes in bbdev related to enum extension

2022-03-16 Thread Nicolas Chautru
Realizing when submitting new bbdev operation in this patch (https://patchwork.dpdk.org/project/dpdk/list/?series=22111) that this is not workable in practice to extend this API into 22.07 without fundamental ABI breakage even by using existing versionning framework. Some existing learnings to be

[PATCH v1] doc: announce changes in bbdev related to enum extension

2022-03-16 Thread Nicolas Chautru
Intent to resolve in DPDK 22.11 historical usage which prevents graceful extension of enum and API without troublesome ABI breakage as well as extending API RTE_BBDEV_OP_FFT for new operation type in bbdev. Signed-off-by: Nicolas Chautru --- doc/guides/rel_notes/deprecation.rst | 8 1 f

[Bug 939] [dpdk 22.03-rc2] drivers/net/cnxk/cnxk_ethdev_mtr meson build failed with cflag parm optimization=1 on Ubuntu20.04 with GCC10.3

2022-03-16 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=939 gaodaxue (daxuex@intel.com) changed: What|Removed |Added Status|IN_PROGRESS |RESOLVED Resolution|---

[dpdk-dev] [PATCH 1/2] common/cnxk: fix ROC naming convention issues

2022-03-16 Thread psatheesh
From: Satheesh Paul Fixed some names to follow ROC naming convention in ROC NPC code. Fixes: 4edf1246a40 ("common/cnxk: support matching VLAN existence in RTE Flow") Cc: sta...@dpdk.org Signed-off-by: Satheesh Paul --- drivers/common/cnxk/roc_npc.h | 6 +++--- drivers/common/cnxk/roc_npc

[dpdk-dev] [PATCH 2/2] common/cnxk: fix QINQ ROC item mismatch issue

2022-03-16 Thread psatheesh
From: Satheesh Paul ROC code is assuming presence of vlan extension headers in case of QINQ, because of this, there is incompatibility between the driver and ROC. Fixed this issue. Fixes: 4edf1246a40 ("common/cnxk: support matching VLAN existence in RTE Flow") Cc: sta...@dpdk.org Signed-off-by:

[PATCH] multi_proc_support.rst: updated file location for config file in documentation

2022-03-16 Thread Muhammad Jawad Hussain
previously .rte_config was made at /var/run/.rte_config for root users and $HOME/.rte_config for non-root users now the file is renamed to config and is created at /var/run/dpdk/rte/config for root users and /run/user/$EUID/dpdk/rte/config for non-root users the docmentation of multi_proc_support

RE: [PATCH] net/ixgbe: Retry SFP ID read field to handle misbehaving SFPs

2022-03-16 Thread Wang, Haiyue
> -Original Message- > From: je...@silicom-usa.com > Sent: Tuesday, March 8, 2022 06:34 > To: dev@dpdk.org > Cc: Stephen Douthit ; Daly, Jeff > ; Wang, Haiyue > > Subject: [PATCH] net/ixgbe: Retry SFP ID read field to handle misbehaving SFPs > > From: Stephen Douthit > > Some XGS-PON