Re: [dpdk-dev] [PATCH v2 1/4] ring: future proof flag settings

2020-04-25 Thread Ananyev, Konstantin
> -Original Message- > From: dev On Behalf Of Stephen Hemminger > Sent: Friday, April 24, 2020 8:02 PM > To: Honnappa Nagarahalli > Cc: dev@dpdk.org; nd > Subject: Re: [dpdk-dev] [PATCH v2 1/4] ring: future proof flag settings > > On Fri, 24 Apr 2020 18:07:15 + > Honnappa Nagarah

[dpdk-dev] [PATCH v7 0/6] dpdk: introduce __rte_internal tag

2020-04-25 Thread Haiyue Wang
Move the internal function into INTERNAL session to avoid the ABI checking, and it is only used for DPDK drivers or related library. __rte_internal funA INTERNAL { global: funA }; v7: Fix the meson build error v6: split into small patches, and add the missed handling.

[dpdk-dev] [PATCH v7 1/6] eal: add internal ABI tag definition

2020-04-25 Thread Haiyue Wang
Introduce the __rte_internal tag to mark internal ABI function which is used only by the drivers or other libraries. Signed-off-by: Haiyue Wang --- lib/librte_eal/include/rte_compat.h | 13 + 1 file changed, 13 insertions(+) diff --git a/lib/librte_eal/include/rte_compat.h b/lib/li

[dpdk-dev] [PATCH v7 2/6] build: enable internal API tag

2020-04-25 Thread Haiyue Wang
Allow the drivers and libraries to use the internal tag for marking internal ABI symbols. Signed-off-by: Haiyue Wang --- drivers/meson.build | 5 - lib/meson.build | 5 - mk/target/generic/rte.vars.mk | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff -

[dpdk-dev] [PATCH v7 6/6] devtools: enforce internal tag at the beginning

2020-04-25 Thread Haiyue Wang
Move the internal tag on a separate line and make it the first thing of function prototypes. Signed-off-by: Haiyue Wang --- devtools/checkpatches.sh | 39 +++ 1 file changed, 39 insertions(+) diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh in

[dpdk-dev] [PATCH v7 4/6] devtools: ignore internal ABI check

2020-04-25 Thread Haiyue Wang
Ignore the internal version ABI check, this kind of ABI is used only by drivers and libraries. Signed-off-by: Haiyue Wang --- devtools/libabigail.abignore | 5 + 1 file changed, 5 insertions(+) diff --git a/devtools/libabigail.abignore b/devtools/libabigail.abignore index 1911890a7..986a527

[dpdk-dev] [PATCH v7 3/6] mk: add internal tag check

2020-04-25 Thread Haiyue Wang
Add checks during build to ensure that all symbols in the INTERNAL version map section have __internal tags on their definitions, and enable the warnings needed to announce their use. Signed-off-by: Haiyue Wang --- MAINTAINERS | 2 +- ...-experimental-syms.sh =

[dpdk-dev] [PATCH v7 5/6] devtools: exempt internal ABI checking

2020-04-25 Thread Haiyue Wang
No need to restrict the ABI on symbols that are only used by core libraries. Signed-off-by: Haiyue Wang --- devtools/check-symbol-change.sh | 8 1 file changed, 8 insertions(+) diff --git a/devtools/check-symbol-change.sh b/devtools/check-symbol-change.sh index ed2178e36..7b6d5f40f 100

Re: [dpdk-dev] [PATCH v5 3/3] ipfrag: add unit test case

2020-04-25 Thread Thomas Monjalon
20/04/2020 19:34, Aaron Conole: > "Burakov, Anatoly" writes: > > Nitpicking, but i believe the coding style guide discourages using > > boolean syntax for anything other than boolean checks, and it is > > better to use a more explicit `if (x == NULL)`. > > I see, it does. Looking at the code-bas

Re: [dpdk-dev] [PATCH] mbuf: fix to update documentation of QinQ stripped bit interpretation

2020-04-25 Thread Andrew Rybchenko
I'll review v2 promptly, some minor comments from me below (taking into account that Olivier's review notes are applied). On 1/6/20 11:34 AM, Somnath Kotur wrote: > Certain hardware may be able to strip and/or save only the outermost > VLAN instead of both the VLANs in the mbuf in a QinQ scenario.

Re: [dpdk-dev] [PATCH 0/2] net/tap: simplfication and servicabilty improvements

2020-04-25 Thread Wiles, Keith
> On Apr 24, 2020, at 6:36 PM, Stephen Hemminger > wrote: > > These are a couple of small fixes to the TAP driver. The first makes it > more robust to random signals, and the second one adds better error > reporting. > > Stephen Hemminger (2): > net/tap: simplify netlink send/receive functi

Re: [dpdk-dev] [PATCH v6 0/3] ip_frag: add a unit test for fragmentation

2020-04-25 Thread Thomas Monjalon
> Aaron Conole (3): > ip_frag: ensure minimum v4 fragmentation length > ip_frag: ensure minimum v6 fragmentation length > ipfrag: add unit test case Applied, thanks

Re: [dpdk-dev] [PATCH v5] hash: add hash bulk lookup with hash signatures array

2020-04-25 Thread Thomas Monjalon
17/04/2020 01:46, Wang, Yipeng1: > From: Medvedkin, Vladimir > > > > Implement rte_hash_lookup_with_hash_bulk_data() and > > rte_hash_lookup_with_hash_bulk() - bulk lookup functions with precomputed > > hash signatures. > > Add these two functions into performance tests. > > > > Signed-off-by: V

Re: [dpdk-dev] [PATCH v5] hash: add hash bulk lookup with hash signatures array

2020-04-25 Thread Thomas Monjalon
25/04/2020 15:30, Thomas Monjalon: > 17/04/2020 01:46, Wang, Yipeng1: > > From: Medvedkin, Vladimir > > > > > > Implement rte_hash_lookup_with_hash_bulk_data() and > > > rte_hash_lookup_with_hash_bulk() - bulk lookup functions with precomputed > > > hash signatures. > > > Add these two functions

Re: [dpdk-dev] [PATCH v3] ipsec: use hash lookup with hash sigs in sad lookup

2020-04-25 Thread Thomas Monjalon
20/04/2020 20:27, Vladimir Medvedkin: > Change hash function from jhash to crc. > Precalculate hash signatures for a bulk of keys and then > use rte_hash_lookup_with_hash_bulk_data() to speed up sad lookup > Also use rte_hash_add_key_with_hash and _del_key_with_hash with > precalculated hash signat

Re: [dpdk-dev] [PATCH] doc: refine ethernet and VLAN flow rule items

2020-04-25 Thread Andrew Rybchenko
On 4/23/20 9:30 PM, Dekel Peled wrote: > Specified pattern may be translated in different manner. > For example the pattern "eth / ipv4" can be translated to match > untagged packets only, since the pattern doesn't specify a vlan item. vlan -> VLAN > It can also be translated to match both tagged

[dpdk-dev] [PATCH v2 0/4] introduce changes to support flow scaling

2020-04-25 Thread Ajit Khaparde
This patchset introduces changes to the action record allocation, flow database entry deletion, and hw flow cache updates. Action record allocation now allows the actions to scale with the flows. Additionally, resources attached to a flow database entry are now correctly released when the critical

[dpdk-dev] [PATCH v2 1/4] net/bnxt: reserve a flowdb resource function as invalid

2020-04-25 Thread Ajit Khaparde
From: Mike Baucom The resource function did not have a method of invalidating or indicating that a resource is uninitialized. Added an invalid enum so that processing works correctly for partially added flows. Signed-off-by: Mike Baucom Reviewed-by: Kishore Padmanabha Reviewed-by: Ajit Khapar

[dpdk-dev] [PATCH v2 3/4] net/bnxt: ulp changes to handle action/index tables

2020-04-25 Thread Ajit Khaparde
From: Mike Baucom The ulp required changes to properly call the index table management routines and use the index for external memory indices. The ulp no longer has to account for stride as the tf_core returns the actual offset, not a 0 based index. Signed-off-by: Mike Baucom Reviewed-by: Kish

[dpdk-dev] [PATCH v2 4/4] net/bnxt: add truflow flush-timer to alloc table scope API

2020-04-25 Thread Ajit Khaparde
From: Shahaji Bhosle Updated the params list to include flush timer, this will allow users to set the HW flush timer value in 10th of second. Setting 0 will disable the pending cache flush feature. Signed-off-by: Shahaji Bhosle Signed-off-by: Randy Schacher Signed-off-by: Venkat Duvvuru Revie

[dpdk-dev] [PATCH v2 2/4] net/bnxt: update action record external pool

2020-04-25 Thread Ajit Khaparde
From: Farah Smith - Added support variable sized action records - Additional error checking on table scope params - Single external pool supported per direction - Changed to return action record pointer - Allows action pool to fully utilize the number of flows Signed-off-by: Farah Smith Signed-

Re: [dpdk-dev] [PATCH v5 1/1] eal: add internal ABI marking support

2020-04-25 Thread David Marchand
On Sat, Apr 25, 2020 at 8:10 AM Wang, Haiyue wrote: > > Hi David, > > Try to fix the issues you mentioned, except below, plan to > another patch set, I need more time to test these adding. Thanks for working on this topic. > > > > We are missing updates on devtools/check-abi-version.sh and

Re: [dpdk-dev] [PATCH v5 1/1] eal: add internal ABI marking support

2020-04-25 Thread Thomas Monjalon
25/04/2020 16:21, David Marchand: > On Sat, Apr 25, 2020 at 8:10 AM Wang, Haiyue wrote: > > - For fully experimental libraries, we have a special so version: > > https://git.dpdk.org/dpdk/tree/drivers/meson.build#n131 > > > > This will apply to common drivers that will be 100% internal. > >

Re: [dpdk-dev] [PATCH v7 3/6] mk: add internal tag check

2020-04-25 Thread David Marchand
On Sat, Apr 25, 2020 at 1:02 PM Haiyue Wang wrote: > > Add checks during build to ensure that all symbols in the INTERNAL > version map section have __internal tags on their definitions, and > enable the warnings needed to announce their use. > > Signed-off-by: Haiyue Wang > --- > MAINTAINERS

Re: [dpdk-dev] [PATCH v7 5/6] devtools: exempt internal ABI checking

2020-04-25 Thread David Marchand
On Sat, Apr 25, 2020 at 1:02 PM Haiyue Wang wrote: > > No need to restrict the ABI on symbols that are only used by core > libraries. > > Signed-off-by: Haiyue Wang Rather than add a special case for INTERNAL, we can invert the logic in this script: identify "stable" sections symbol. I went with

Re: [dpdk-dev] [PATCH v2] lib/timer: relax barrier for status update

2020-04-25 Thread Thomas Monjalon
20/04/2020 18:05, Phil Yang: > This patch depends on patch: > http://patchwork.dpdk.org/patch/65997/ In order to ease patch tracking, you should have kept the first patch in the next version of your series. We don't split series in general.

Re: [dpdk-dev] [PATCH v7 0/6] dpdk: introduce __rte_internal tag

2020-04-25 Thread David Marchand
On Sat, Apr 25, 2020 at 1:02 PM Haiyue Wang wrote: > > Move the internal function into INTERNAL session to avoid the ABI > checking, and it is only used for DPDK drivers or related library. > > __rte_internal funA > > INTERNAL { > global: > > funA > }; Thanks a lot for working on

Re: [dpdk-dev] [PATCH v2] bus/pci: support iova=va on PowerNV systems

2020-04-25 Thread David Marchand
On Mon, Mar 16, 2020 at 9:38 PM David Christensen wrote: > > All recent POWER systems, Power 8 and 9 specifically, support an IOMMU > (it can't be disabled). The functionality of the IOMMU is different > depending on whether it's running on a bare metal PowerNV system or in > a virtual environment

Re: [dpdk-dev] [PATCH v2] lib/timer: relax barrier for status update

2020-04-25 Thread Phil Yang
> -Original Message- > From: Thomas Monjalon > Sent: Saturday, April 25, 2020 10:36 PM > To: Phil Yang > Cc: erik.g.carri...@intel.com; rsanf...@akamai.com; > david.march...@redhat.com; konstantin.anan...@intel.com; > jer...@marvell.com; hemant.agra...@nxp.com; Honnappa Nagarahalli > ; Ga

Re: [dpdk-dev] [PATCH 10/14] tap: close netlink socket on device close

2020-04-25 Thread David Marchand
On Sat, Jan 4, 2020 at 2:35 AM Stephen Hemminger wrote: > > The netlink socket for flow creation was left open and never > closed. > > Fixes: bf7b7f437b49 ("net/tap: create netdevice during probing") > Cc: pascal.ma...@6wind.com > Cc: sta...@dpdk.org > Signed-off-by: Stephen Hemminger Afaics, su

Re: [dpdk-dev] [PATCH 12/14] ethdev: raise priority of old driver warning

2020-04-25 Thread Thomas Monjalon
04/01/2020 02:33, Stephen Hemminger: > The priority of the message about drivers not using new (correct) > behaviour on close was debug. And debug messages are typically surpressed > and never seen. Raise the priority so that broken drivers are visible > and hopefully get developers to fix. > > S

Re: [dpdk-dev] [PATCH v4] eal/cpuflags: add x86 based cpu flags

2020-04-25 Thread Thomas Monjalon
16/04/2020 13:00, Kevin Laatz: > This patch adds CPU flags which will enable the detection of ISA > features available on more recent x86 based CPUs. [...] > --- a/devtools/libabigail.abignore > +++ b/devtools/libabigail.abignore > +; Ignore this enum update as it should not be allocated by the app

Re: [dpdk-dev] [PATCH v2] lib/timer: relax barrier for status update

2020-04-25 Thread Thomas Monjalon
25/04/2020 17:51, Phil Yang: > From: Thomas Monjalon > > 20/04/2020 18:05, Phil Yang: > > > This patch depends on patch: > > > http://patchwork.dpdk.org/patch/65997/ > > > > In order to ease patch tracking, you should have kept the first patch > > in the next version of your series. We don't spli

Re: [dpdk-dev] [PATCH 02/14] eal: log: free dynamic state on cleanup

2020-04-25 Thread David Marchand
On Sat, Jan 4, 2020 at 2:34 AM Stephen Hemminger wrote: > > When rte_eal_cleanup is called, free all the memory > associated with dynamic log levels and types. > > Fixes: c1b5fa94a46f ("eal: support dynamic log types") > Cc: olivier.m...@6wind.com > Signed-off-by: Stephen Hemminger > --- > lib/l

Re: [dpdk-dev] [PATCH 03/14] eal: alarm: close timerfd on eal cleanup

2020-04-25 Thread David Marchand
On Sat, Jan 4, 2020 at 2:34 AM Stephen Hemminger wrote: > > Calling rte_eal_cleanup() should cause DPDK to cleanup all > outstanding resources including file descriptors. > > Signed-off-by: Stephen Hemminger > --- > lib/librte_eal/common/eal_private.h | 7 +++ > lib/librte_eal/linux/eal/ea

Re: [dpdk-dev] [PATCH v7 0/6] dpdk: introduce __rte_internal tag

2020-04-25 Thread Wang, Haiyue
> -Original Message- > From: David Marchand > Sent: Saturday, April 25, 2020 22:39 > To: Wang, Haiyue > Cc: dev ; Thomas Monjalon ; Richardson, > Bruce > ; Yigit, Ferruh ; Neil > Horman > ; Ray Kinsella > Subject: Re: [PATCH v7 0/6] dpdk: introduce __rte_internal tag > > On Sat, Apr 2

Re: [dpdk-dev] [PATCH 05/14] eal: intr: cleanup resources

2020-04-25 Thread David Marchand
On Sat, Jan 4, 2020 at 2:34 AM Stephen Hemminger wrote: > > When rte_eal_cleanup is called the interrupt thread and > associated resources should be cleaned up. > > Signed-off-by: Stephen Hemminger > --- > lib/librte_eal/common/eal_private.h | 10 ++ > lib/librte_eal/linux/eal/eal.

Re: [dpdk-dev] [PATCH v3] lib/timer: relax barrier for status update

2020-04-25 Thread Thomas Monjalon
24/04/2020 09:24, Phil Yang: > Volatile has no ordering semantics. The rte_timer structure defines > timer status as a volatile variable and uses the rte_r/wmb barrier > to guarantee inter-thread visibility. > > This patch optimized the volatile operation with c11 atomic operations > and one-way b

Re: [dpdk-dev] [dpdk-stable] [PATCH 1/2] lib/timer: protect timer subsystem initialized with lock

2020-04-25 Thread Thomas Monjalon
> > rte_timer_subsystem_initialized is a global variable that can be accessed by > > multiple processes simultaneously. Hence, any access to > > rte_timer_subsystem_initialized should be protected by > > rte_mcfg_timer_lock. > > > > Fixes: f9d6cd8bfe9e ("timer: fix resource leak in finalize") > >

Re: [dpdk-dev] [PATCH v2] doc: use glob terminology

2020-04-25 Thread Thomas Monjalon
12/04/2020 17:04, jer...@marvell.com: > --- a/devtools/check-includes.sh > +++ b/devtools/check-includes.sh > @@ -23,7 +23,7 @@ > # PEDANTIC_CFLAGS, PEDANTIC_CXXFLAGS and PEDANTIC_CPPFLAGS provide strict > # C/C++ compilation flags. > # > -# IGNORE contains a list of shell patterns matching file

Re: [dpdk-dev] [PATCH] Fix various typos found by Lintian

2020-04-25 Thread Thomas Monjalon
04/03/2020 16:28, Luca Boccassi: > On Wed, 2020-03-04 at 14:34 +, Kevin Traynor wrote: > > On 29/02/2020 16:37, luca.bocca...@gmail.com wrote: > > > Debian's linter is getting more and more annoy^^smart and now > > > parses binaries > > > for typos too - CC stable to get it off my back in the

Re: [dpdk-dev] [PATCH v2 0/4] introduce changes to support flow scaling

2020-04-25 Thread Ajit Khaparde
On Sat, Apr 25, 2020 at 7:02 AM Ajit Khaparde wrote: > This patchset introduces changes to the action record allocation, flow > database entry deletion, and hw flow cache updates. Action record > allocation now allows the actions to scale with the flows. > Additionally, resources attached to a f

Re: [dpdk-dev] [PATCH v7 0/6] dpdk: introduce __rte_internal tag

2020-04-25 Thread Wang, Haiyue
Hi David, > -Original Message- > From: David Marchand > Sent: Saturday, April 25, 2020 22:39 > To: Wang, Haiyue > Cc: dev ; Thomas Monjalon ; Richardson, > Bruce > ; Yigit, Ferruh ; Neil > Horman > ; Ray Kinsella > Subject: Re: [PATCH v7 0/6] dpdk: introduce __rte_internal tag > > On

[dpdk-dev] Common netlink parsing?

2020-04-25 Thread Stephen Hemminger
While adding error handling to tap device, I noticed we already have two places rolling their own netlink message handling (tap and mlx5) and now with proposed IF proxy there is a third. Netlink is non-trivial and easy to get wrong and doing error handling also requires work. There should be a com

Re: [dpdk-dev] [PATCH 00/14] cleanup resources on shutdown

2020-04-25 Thread David Marchand
On Sat, Jan 4, 2020 at 2:34 AM Stephen Hemminger wrote: > > Recently started using valgrind with DPDK, and the results > are not clean. > > The DPDK has a function that applications can use to tell it > to cleanup resources on shutdown (rte_eal_cleanup). But the > current coverage of that API is s

Re: [dpdk-dev] Common netlink parsing?

2020-04-25 Thread Thomas Monjalon
25/04/2020 21:24, Stephen Hemminger: > While adding error handling to tap device, I noticed we already have two > places rolling their own netlink message handling (tap and mlx5) and now > with proposed IF proxy there is a third. > > Netlink is non-trivial and easy to get wrong and doing error han

Re: [dpdk-dev] [PATCH v9 1/6] lib/eal: implement the family of common bit operation APIs

2020-04-25 Thread Thomas Monjalon
24/04/2020 05:21, Joyce Kong: > Bitwise operation APIs are defined and used in a lot of PMDs, > which caused a huge code duplication. To reduce duplication, > this patch consolidates them into a common API family. [...] > +rte_get_bit32_relaxed(unsigned int nr, volatile uint32_t *addr) > +rte_set_b

Re: [dpdk-dev] [PATCH v4 1/4] ethdev: add tm support for shaper config in pkt mode

2020-04-25 Thread Ferruh Yigit
On 4/24/2020 11:28 AM, Dumitrescu, Cristian wrote: > > >> -Original Message- >> From: Nithin Dabilpuram >> Sent: Wednesday, April 22, 2020 6:21 PM >> To: Singh, Jasvinder ; Dumitrescu, Cristian >> ; Thomas Monjalon >> ; Yigit, Ferruh ; Andrew >> Rybchenko >> Cc: dev@dpdk.org; jer...@mar

Re: [dpdk-dev] [dpdk-stable] [PATCH] app: fix usage help of options separated by dashes

2020-04-25 Thread David Marchand
On Tue, Apr 21, 2020 at 1:26 AM Thomas Monjalon wrote: > > The EAL options and app-specific options are separated > with double dashes. > > The help of testpmd, test-acl and pdump were missing > the dashes after EAL options. > Note: testpmd was completely missing the EAL options. > > Fixes: af7507

Re: [dpdk-dev] [PATCH] pmdinfo: check for pci.ids in /usr/share/misc

2020-04-25 Thread David Marchand
On Thu, Mar 12, 2020 at 5:30 PM wrote: > > From: Luca Boccassi > > Debian and Ubuntu switched years ago from /usr/share/hwdata to > /usr/share/misc, > and the former is just a compat symlink now. > We are starting to get bug reports to nudge us into changing. > So check the new path first, and t

Re: [dpdk-dev] [PATCH] bus/pci: set boot-up log prints to absolute minimum

2020-04-25 Thread Thomas Monjalon
06/02/2020 15:36, Jerin Jacob: > On Thu, Feb 6, 2020 at 7:44 PM Thomas Monjalon wrote: > > 21/01/2020 09:00, jer...@marvell.com: > > > From: Jerin Jacob > > > > > > Some machines may have a lot of PCI devices, logs from PCI probe > > > creates a lot of clutter on boot-up, typically one needs > >

Re: [dpdk-dev] [PATCH] bus/pci: pcidev access from secondary process

2020-04-25 Thread Thomas Monjalon
24/04/2020 19:08, Vijaya Mohan Guvva: > For pci devices presented through igb_uio, pcidev->mem_resource[] is > not populated when the device is initialized for secondary process. > > Initialize pcidev->mem_resource[] with pci-bar mapped addresses. > > Fixes: c752998b (pci: introduce library and d

Re: [dpdk-dev] [PATCH v2] putting null checks on ops_name

2020-04-25 Thread Thomas Monjalon
07/04/2020 09:56, Muhammad Bilal: > Bugzilla ID: 353 > Cc: dev@dpdk.org > Cc: sta...@dpdk.org > Cc: hemant.agra...@nxp.com > Signed-off-by: Muhammad Bilal Acked-by: Hemant Agrawal No need to Cc stable in my opinion, as there is no bug fixed. Changing the name to: mbuf: prevent setting m

[dpdk-dev] [PATCH v3] mempool: return 0 if area is too small on populate

2020-04-25 Thread Thomas Monjalon
From: Olivier Matz Change rte_mempool_populate_iova() and rte_mempool_populate_iova() to return 0 instead of -EINVAL when there is not enough room to store one object, as it can be helpful for applications to distinguish this specific case. As this is an ABI change, use symbol versioning to pres

[dpdk-dev] [Bug 225] ethdev API for firmware version request is not tested

2020-04-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=225 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Resolution|--- |FIXED Status|C

[dpdk-dev] [Bug 377] CRYPTODEV: set_sym_session_private_data() line 489: Set private data for driver 0 not allowed

2020-04-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=377 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Status|IN_PROGRESS |RESOLVED Resolutio

[dpdk-dev] [Bug 400] start testpmd with vmxnet3 can't receive and forward packets

2020-04-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=400 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Resolution|--- |FIXED Status|U

[dpdk-dev] [Bug 237] Running test-build.sh Fails on ppc_64 fails due to hard-coded requirement for IXGBE_PMD in examples/vm_power_manager

2020-04-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=237 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Resolution|--- |FIXED Status|C

[dpdk-dev] [Bug 253] Unable to run DPDK test with "make test" command

2020-04-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=253 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Resolution|--- |FIXED Status|C

[dpdk-dev] [PATCH V2] app/testpmd: fix forward stats after clear stats command

2020-04-25 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, when running start/clear stats&xstats/stop command many times based on testpmd application, there are incorrect forward Rx/Tx-packets stats as below: -- Forward statistics for port 0 -- RX-packets: 18446744073709544808 RX-dropped

Re: [dpdk-dev] [PATCH] app/testpmd: fix Rx/Tx stats after clear stats command

2020-04-25 Thread Wei Hu (Xavier)
Hi, Ferruh Yigit On 2020/4/25 0:12, Ferruh Yigit wrote: On 4/24/2020 12:07 PM, Wei Hu (Xavier) wrote: From: Chengwen Feng Currently, when running start/clear stats&xstats/stop command many times based on testpmd application, there are incorrect RX/TX-packets stats as below: --

Re: [dpdk-dev] [PATCH] app/testpmd: fix Rx/Tx stats after clear stats command

2020-04-25 Thread Ferruh Yigit
On 4/26/2020 2:36 AM, Wei Hu (Xavier) wrote: > Hi, Ferruh Yigit > > On 2020/4/25 0:12, Ferruh Yigit wrote: >> On 4/24/2020 12:07 PM, Wei Hu (Xavier) wrote: >>> From: Chengwen Feng >>> >>> Currently, when running start/clear stats&xstats/stop command many times >>> based on testpmd application, th

[dpdk-dev] [PATCH v10 2/2] eal: support for VFIO-PCI VF token

2020-04-25 Thread Haiyue Wang
The kernel module vfio-pci introduces the VF token to enable SR-IOV support since 5.7. The VF token can be set by a vfio-pci based PF driver and must be known by the vfio-pci based VF driver in order to gain access to the device. Signed-off-by: Haiyue Wang Acked-by: Vamsi Attunuru Tested-by: Va

[dpdk-dev] [PATCH v10 1/2] eal: add uuid dependent header files explicitly

2020-04-25 Thread Haiyue Wang
Add the dependent header files explicitly, so that the user just needs to include the 'rte_uuid.h' header file directly to avoid compile error: (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’ (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’ Fixes: 6bc67c497a51 ("ea

[dpdk-dev] [PATCH v10 0/2] support for VFIO-PCI VF token interface

2020-04-25 Thread Haiyue Wang
v10: Use the __rte_internal to mark the internal API changing. v9: Rewrite the document. v8: Update the document. v7: Add the Fixes tag in uuid, the release note and help document. v6: Drop the Fixes tag in uuid, since the file has been moved to another place, not suitable to apply on s

Re: [dpdk-dev] [PATCH v9 1/6] lib/eal: implement the family of common bit operation APIs

2020-04-25 Thread Joyce Kong
> -Original Message- > From: Thomas Monjalon > Sent: Friday, April 24, 2020 4:09 PM > To: Joyce Kong > Cc: step...@networkplumber.org; david.march...@redhat.com; > m...@smartsharesystems.com; jer...@marvell.com; > bruce.richard...@intel.com; ravi1.ku...@amd.com; rm...@marvell.com; > shsha

[dpdk-dev] [PATCH v10 2/9] net/virtio: inorder should depend on feature bit

2020-04-25 Thread Marvin Liu
Ring initialization is different when inorder feature negotiated. This action should dependent on negotiated feature bits. Signed-off-by: Marvin Liu Reviewed-by: Maxime Coquelin diff --git a/drivers/net/virtio/virtio_rxtx.c b/drivers/net/virtio/virtio_rxtx.c index 94ba7a3ec..e450477e8 100644 --

[dpdk-dev] [PATCH v10 3/9] net/virtio: add vectorized devarg

2020-04-25 Thread Marvin Liu
Previously, virtio split ring vectorized path was enabled by default. This is not suitable for everyone because that path dose not follow virtio spec. Add new devarg for virtio vectorized path selection. By default vectorized path is disabled. Signed-off-by: Marvin Liu Reviewed-by: Maxime Coqueli

[dpdk-dev] [PATCH v9 0/9] add packed ring vectorized path

2020-04-25 Thread Marvin Liu
This patch set introduced vectorized path for packed ring. The size of packed ring descriptor is 16Bytes. Four batched descriptors are just placed into one cacheline. AVX512 instructions can well handle this kind of data. Packed ring TX path can fully transformed into vectorized path. Packed ring

[dpdk-dev] [PATCH v10 4/9] net/virtio-user: add vectorized devarg

2020-04-25 Thread Marvin Liu
Add new devarg for virtio user device vectorized path selection. By default vectorized path is disabled. Signed-off-by: Marvin Liu diff --git a/doc/guides/nics/virtio.rst b/doc/guides/nics/virtio.rst index 902a1f0cf..d59add23e 100644 --- a/doc/guides/nics/virtio.rst +++ b/doc/guides/nics/virtio.

[dpdk-dev] [PATCH v10 1/9] net/virtio: add Rx free threshold setting

2020-04-25 Thread Marvin Liu
Introduce free threshold setting in Rx queue, its default value is 32. Limit the threshold size to multiple of four as only vectorized packed Rx function will utilize it. Virtio driver will rearm Rx queue when more than rx_free_thresh descs were dequeued. Signed-off-by: Marvin Liu Reviewed-by: Ma

[dpdk-dev] [PATCH v10 5/9] net/virtio: reuse packed ring functions

2020-04-25 Thread Marvin Liu
Move offload, xmit cleanup and packed xmit enqueue function to header file. These functions will be reused by packed ring vectorized path. Signed-off-by: Marvin Liu diff --git a/drivers/net/virtio/virtio_rxtx.c b/drivers/net/virtio/virtio_rxtx.c index 84f4cf946..a549991aa 100644 --- a/drivers/ne

[dpdk-dev] [PATCH v10 8/9] net/virtio: add election for vectorized path

2020-04-25 Thread Marvin Liu
Rewrite vectorized path selection logic. Default setting comes from vectorized devarg, then checks each criteria. Packed ring vectorized path need: AVX512F and required extensions are supported by compiler and host VERSION_1 and IN_ORDER features are negotiated mergeable feature is not

[dpdk-dev] [PATCH v10 9/9] doc: add packed vectorized path

2020-04-25 Thread Marvin Liu
Document packed virtqueue vectorized path selection logic in virtio net PMD. Signed-off-by: Marvin Liu Reviewed-by: Maxime Coquelin diff --git a/doc/guides/nics/virtio.rst b/doc/guides/nics/virtio.rst index d59add23e..dbcf49ae1 100644 --- a/doc/guides/nics/virtio.rst +++ b/doc/guides/nics/virti

[dpdk-dev] [PATCH v10 6/9] net/virtio: add vectorized packed ring Rx path

2020-04-25 Thread Marvin Liu
Optimize packed ring Rx path with SIMD instructions. Solution of optimization is pretty like vhost, is that split path into batch and single functions. Batch function is further optimized by AVX512 instructions. Also pad desc extra structure to 16 bytes aligned, thus four elements will be saved in

[dpdk-dev] [PATCH v10 7/9] net/virtio: add vectorized packed ring Tx path

2020-04-25 Thread Marvin Liu
Optimize packed ring Tx path like Rx path. Split Tx path into batch and single Tx functions. Batch function is further optimized by AVX512 instructions. Signed-off-by: Marvin Liu diff --git a/drivers/net/virtio/virtio_ethdev.h b/drivers/net/virtio/virtio_ethdev.h index 5c112cac7..b7d52d497 1006

[dpdk-dev] [PATCH] net/mlx5: save meter index instead of meter id

2020-04-25 Thread Suanming Mou
Currently, while creating the flow with meter, meter id is saved to the rte flow. While destroying the flow, the meter object will be found by the meter id, so the meter object will be released accordingly. But as the meter id is configured by user, while the meter id is set to 0, it doesn't make a

Re: [dpdk-dev] [PATCH] mem: mark pages as not accessed when returning back to memory pool

2020-04-25 Thread Li Feng
Thanks, Feng Li David Marchand 于2020年4月25日周六 上午1:10写道: > > On Fri, Apr 24, 2020 at 12:43 PM Li Feng wrote: > > > > Commit 8a4baf06c17a ("mem: mark pages as not accessed when reserving VA") > > has mapped the initialized memory with PROT_NONE, and when it's unmapped, > > eal_memalloc.c should re

[dpdk-dev] [PATCH 0/2] eal/windows: fix build by supporing trace

2020-04-25 Thread Dmitry Kozlyuk
This patch fixes errors caused by using Unix-only functions in tracing EAL. It introduces new internal EAL wrappers for directory management and provides simple, but correct implementation for some EAL functions required for tracing. This patch implements rte_get_tsc_hz() instead of basing upon a

[dpdk-dev] [PATCH 2/2] eal/windows: fix build by supporting trace

2020-04-25 Thread Dmitry Kozlyuk
Add EAL private functions to support trace storage: * eal_persistent_data_path() * eal_dir_create() Replace clock_gettime(CLOCK_REALTIME) with C11 timespec_get(). Implementation is provided for MinGW-w64 that misses this function. Provide minimum viable implementations of malloc and timer functi

[dpdk-dev] [PATCH 1/2] eal/windows: replace sys/queue.h with a complete one from FreeBSD

2020-04-25 Thread Dmitry Kozlyuk
Limited version imported previously lacks STAILQ macros used by tracing and SLIST macros used by memory management. Import a complete file from FreeBSD, since its license exception is already approved by Technical Board. Fixes: 321dd5f8fa62 ("trace: add internal init and fini interface") Signed-o

Re: [dpdk-dev] [DPDK] net/ixgbe: fix status synchronization on BSD

2020-04-25 Thread Peng, ZhihongX
Sorry, because the mail filtering is wrong, I have not seen this mail, and the community canceled the patch. I resubmitted a pacth, only modified the format. Judging this flag, it feels a bit more complicated. New patch: http://patches.dpdk.org/patch/68713/ -Original Message- From: Step

[dpdk-dev] [PATCH] crypto/ccp: fix fd leak on probe failure

2020-04-25 Thread wangyunjian
From: Yunjian Wang Zero is a valid fd. When ccp_probe_device() is failed, the uio_fd won't be closed thus leading fd leak. Fixes: ef4b04f87fa6 ("crypto/ccp: support device init") Cc: sta...@dpdk.org Signed-off-by: Yunjian Wang --- drivers/crypto/ccp/ccp_dev.c | 2 +- 1 file changed, 1 inserti

[dpdk-dev] [Bug 462] command kvargs_autotest excute failed on freebsd with gcc and clang

2020-04-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=462 Bug ID: 462 Summary: command kvargs_autotest excute failed on freebsd with gcc and clang Product: DPDK Version: 20.05 Hardware: x86 OS: FreeBSD Status: U