Re: [dpdk-dev] [PATCH 2/4] vdpa/mlx5: support direct HW notifications

2020-04-26 Thread Matan Azrad
From: Maxime Coquelin > On 4/15/20 11:47 AM, Maxime Coquelin wrote: > > > > > > On 3/24/20 3:24 PM, Asaf Penso wrote: > >> From: Matan Azrad > >> > >> Add support for the next 2 callbacks: > >> get_vfio_device_fd and get_notify_area. > >> > >> This will allow direct HW doorbell ringing from gue

Re: [dpdk-dev] [PATCH v2 2/2] net/mlx5: support flow aging

2020-04-26 Thread Suanming Mou
On 4/24/2020 6:45 PM, Bill Zhou wrote: Currently, there is no flow aging check and age-out event callback mechanism for mlx5 driver, this patch implements it. It's included: - Splitting the current counter container to aged or no-aged container since reducing memory consumption. Aged container

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

2020-04-26 Thread Joyce Kong
> -Original Message- > From: Thomas Monjalon > Sent: Sunday, April 26, 2020 3:59 AM > 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

Re: [dpdk-dev] [PATCH] app/testpmd: support flow aging

2020-04-26 Thread Bill Zhou
> -Original Message- > From: Ferruh Yigit > Sent: Saturday, April 25, 2020 12:25 AM > To: Bill Zhou ; wenzhuo...@intel.com; > jingjing...@intel.com; bernard.iremon...@intel.com; Ori Kam > > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] app/testpmd: support flow aging > > On 4/24/2

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

2020-04-26 Thread Phil Yang
> -Original Message- > From: Thomas Monjalon > Sent: Sunday, April 26, 2020 1:18 AM > To: Phil Yang > Cc: erik.g.carri...@intel.com; rsanf...@akamai.com; dev@dpdk.org; > david.march...@redhat.com; Honnappa Nagarahalli > ; Gavin Hu ; nd > > Subject: Re: [dpdk-dev] [PATCH v3] lib/timer: re

[dpdk-dev] [PATCH 2/3] maintainers: update for Intel iavf

2020-04-26 Thread Beilei Xing
Replace Wenzhuo Lu with Beilei Xing. Signed-off-by: Beilei Xing --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index cc2664a..369ab26 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -675,7 +675,7 @@ F: doc/guides/nics/features/fm10k*.i

[dpdk-dev] [PATCH 0/3] update MAINTAINER

2020-04-26 Thread Beilei Xing
Update maintainer for Intel i40e, Intel iavf and driver testind tool. Beilei Xing (3): maintainers: update for Intel i40e maintainers: update for Intel iavf maintainers: update for driver testing tool MAINTAINERS | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- 2.7.4

[dpdk-dev] [PATCH 3/3] maintainers: update for driver testing tool

2020-04-26 Thread Beilei Xing
Replace Jingjing Wu with Beilei Xing. Signed-off-by: Beilei Xing --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 369ab26..a2d7b76 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1487,7 +1487,7 @@ F: app/test/sample_packet_forward

[dpdk-dev] [PATCH 1/3] maintainers: update for Intel i40e

2020-04-26 Thread Beilei Xing
Replace Qi Zhang with Jeff Guo. Signed-off-by: Beilei Xing --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index cd50160..cc2664a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -658,7 +658,7 @@ F: doc/guides/nics/features/ixgbe*.ini

Re: [dpdk-dev] [PATCH v1 2/2] ring: use wfe to wait for ring tail update on aarch64

2020-04-26 Thread Gavin Hu
Hi Honnappa, > -Original Message- > From: Honnappa Nagarahalli > Sent: Friday, April 24, 2020 10:46 PM > To: Gavin Hu ; dev@dpdk.org > Cc: nd ; david.march...@redhat.com; > tho...@monjalon.net; jer...@marvell.com; Ruifeng Wang > ; Phil Yang ; Joyce Kong > ; Honnappa Nagarahalli > ; nd >

[dpdk-dev] [PATCH v2 1/2] spinlock: use wfe to reduce contention on aarch64

2020-04-26 Thread Gavin Hu
In acquiring a spinlock, cores repeatedly poll the lock variable. This is replaced by rte_wait_until_equal API. Running the micro benchmarking and the testpmd and l3fwd traffic tests on ThunderX2, Ampere eMAG80 and Arm N1SDP, everything went well and no notable performance gain nor degradation was

[dpdk-dev] [PATCH v2 0/2] Use WFE for spinlock and ring

2020-04-26 Thread Gavin Hu
The rte_wait_until_equal_xxx APIs abstract the functionality of 'polling for a memory location to become equal to a given value'[1]. Use the API for the rte spinlock and ring implementations. [1] http://patches.dpdk.org/cover/62703/ Gavin Hu (2): spinlock: use wfe to reduce contention on aarch

[dpdk-dev] [PATCH v2 2/2] ring: use wfe to wait for ring tail update on aarch64

2020-04-26 Thread Gavin Hu
Instead of polling for tail to be updated, use wfe instruction. Signed-off-by: Gavin Hu Reviewed-by: Ruifeng Wang Reviewed-by: Steve Capper Reviewed-by: Ola Liljedahl Reviewed-by: Honnappa Nagarahalli --- lib/librte_ring/rte_ring_c11_mem.h | 4 ++-- lib/librte_ring/rte_ring_generic.h | 3 +--

Re: [dpdk-dev] [PATCH v1 2/2] ring: use wfe to wait for ring tail update on aarch64

2020-04-26 Thread Gavin Hu
Hi Konstantin, > -Original Message- > From: Ananyev, Konstantin > Sent: Friday, April 24, 2020 9:24 PM > To: Gavin Hu ; dev@dpdk.org > Cc: nd ; david.march...@redhat.com; > tho...@monjalon.net; jer...@marvell.com; Honnappa Nagarahalli > ; Ruifeng Wang > ; Phil Yang ; Joyce Kong > > Subje

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

2020-04-26 Thread Dekel Peled
Thanks, PSB. > -Original Message- > From: Andrew Rybchenko > Sent: Saturday, April 25, 2020 5:00 PM > To: Dekel Peled ; Ori Kam ; > john.mcnam...@intel.com; marko.kovace...@intel.com; Thomas Monjalon > ; ferruh.yi...@intel.com > Cc: dev@dpdk.org; Asaf Penso > Subject: Re: [PATCH] doc: re

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

2020-04-26 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 v9 1/6] lib/eal: implement the family of common bit operation APIs

2020-04-26 Thread Thomas Monjalon
26/04/2020 09:18, Joyce Kong: > From: 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. > > [...] > >

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

2020-04-26 Thread Luca Boccassi
On Sat, 2020-04-25 at 19:47 +0200, Thomas Monjalon wrote: > 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 bi

[dpdk-dev] [PATCH] mem: fix build

2020-04-26 Thread Thomas Monjalon
Some compilers (on RHEL7 and CentOS7) were getting this error: error: "RTE_EXEC_ENV_FREEBSD" is not defined [-Werror=undef] Existence of a macro must be checked with "#ifdef" or "#if defined". Fixes: d72e4042c5eb ("mem: exclude unused memory from core dump") Signed-off-by: Thomas Monjalo

Re: [dpdk-dev] [PATCH] mem: fix build

2020-04-26 Thread Raslan Darawsheh
> -Original Message- > From: dev On Behalf Of Thomas Monjalon > Sent: Sunday, April 26, 2020 1:47 PM > To: dev@dpdk.org > Cc: david.march...@redhat.com; Anatoly Burakov > ; Li Feng > Subject: [dpdk-dev] [PATCH] mem: fix build > > Some compilers (on RHEL7 and CentOS7) were getting this er

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

2020-04-26 Thread Jerin Jacob
On Sun, Apr 26, 2020 at 8:53 AM Dmitry Kozlyuk wrote: > > 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: 3

Re: [dpdk-dev] [PATCH] mem: fix build

2020-04-26 Thread Thomas Monjalon
> > Some compilers (on RHEL7 and CentOS7) were getting this error: > > error: "RTE_EXEC_ENV_FREEBSD" is not defined [-Werror=undef] > > > > Existence of a macro must be checked with "#ifdef" or "#if defined". > > > > Fixes: d72e4042c5eb ("mem: exclude unused memory from core dump") > > > > S

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

2020-04-26 Thread Jerin Jacob
On Sun, Apr 26, 2020 at 8:53 AM Dmitry Kozlyuk wrote: > > 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 functio

Re: [dpdk-dev] [PATCH 2/2] ethdev: allow unknown link speed

2020-04-26 Thread Matan Azrad
Hi From: Thomas Monjalon > When querying the link informations, the link status is a mandatory major > information. > Other boolean values are supposed to be accurate: > - duplex mode (half/full) > - negotiation (auto/fixed) > > This API update is making explicit that the link speed i

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

2020-04-26 Thread Dmitry Kozlyuk
On 2020-04-26 17:02 GMT+0530 Jerin Jacob wrote: > > +/** > > + * Get absolute path to the directory where permanent data can be stored. > > + * > > + * @return > > + * Statically allocated string on success, NULL on failure. > > + */ > > +const char * > > +eal_permanent_data_path(void); > > Do

[dpdk-dev] [PATCH 1/3] vdpa/mlx5: manage virtqs by array

2020-04-26 Thread Matan Azrad
As a preparation to listen the virtqs status before the device is configured, manage the virtqs structures in array instead of list. Signed-off-by: Matan Azrad Acked-by: Viacheslav Ovsiienko --- drivers/vdpa/mlx5/mlx5_vdpa.c | 43 -- drivers/vdpa/mlx5/mlx5_

[dpdk-dev] [PATCH 0/3] vdpa/mlx5: recreate a virtq becoming enabled

2020-04-26 Thread Matan Azrad
Since a virtq configuration may be changed in disable state it is better to recreate a virtq becoming enabled. This series adding this behaviour to the mlx5 driver for vDPA. v2: 1. Address Maxime comments: - returning -1 for out of range error. - commit massage spelling. 2. rebase

[dpdk-dev] [PATCH 2/3] vdpa/mlx5: separate virtq stop

2020-04-26 Thread Matan Azrad
In live migration, before logging the virtq, the driver queries the virtq indexes after moving it to suspend mode. Separate this method to new function mlx5_vdpa_virtq_stop as a preparation for reusing. Signed-off-by: Matan Azrad Acked-by: Viacheslav Ovsiienko Reviewed-by: Maxime Coquelin ---

[dpdk-dev] [PATCH 3/3] vdpa/mlx5: recreate a virtq becoming enabled

2020-04-26 Thread Matan Azrad
The virtq configurations may be changed when it moves from disabled state to enabled state. Listen to the state callback even if the device is not configured. Recreate the virtq when it moves from disabled state to enabled state and when the device is configured. Signed-off-by: Matan Azrad Acked

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

2020-04-26 Thread Carrillo, Erik G
> -Original Message- > From: Phil Yang > Sent: Sunday, April 26, 2020 2:36 AM > To: tho...@monjalon.net > Cc: Carrillo, Erik G ; rsanf...@akamai.com; > dev@dpdk.org; david.march...@redhat.com; Honnappa Nagarahalli > ; Gavin Hu ; nd > ; nd > Subject: RE: [dpdk-dev] [PATCH v3] lib/timer:

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

2020-04-26 Thread Jerin Jacob
On Sun, Apr 26, 2020 at 5:32 PM Dmitry Kozlyuk wrote: > > On 2020-04-26 17:02 GMT+0530 Jerin Jacob wrote: > > > +/** > > > + * Get absolute path to the directory where permanent data can be stored. > > > + * > > > + * @return > > > + * Statically allocated string on success, NULL on failure. > >

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

2020-04-26 Thread Thomas Monjalon
26/04/2020 14:23, Jerin Jacob: > On Sun, Apr 26, 2020 at 5:32 PM Dmitry Kozlyuk > wrote: > > While we're at it, don't these declarations belong to eal_filesystem.h? I > > left them in eal_private.h, because eal_filesystem.h is mostly > > Unix-specific. Yes it looks to be a good fit for eal_file

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

2020-04-26 Thread Dmitry Kozlyuk
On 2020-04-26 17:53 GMT+0530 Jerin Jacob wrote: > On Sun, Apr 26, 2020 at 5:32 PM Dmitry Kozlyuk > wrote: > > > > On 2020-04-26 17:02 GMT+0530 Jerin Jacob wrote: > > > > +/** > > > > + * Get absolute path to the directory where permanent data can be > > > > stored. > > > > + * > > > > + * @ret

[dpdk-dev] [PATCH] crypto/caam_jr: fix wrong check of fd

2020-04-26 Thread wangyunjian
From: Yunjian Wang Zero is a valid fd. It will fail to check the fd if the fd is zero. Fixes: e7a45f3cc245 ("crypto/caam_jr: add UIO specific operations") Cc: sta...@dpdk.org Signed-off-by: Yunjian Wang --- drivers/crypto/caam_jr/caam_jr_uio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 de

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

2020-04-26 Thread Phil Yang
> -Original Message- > From: Carrillo, Erik G > Sent: Sunday, April 26, 2020 8:19 PM > To: Phil Yang ; tho...@monjalon.net > Cc: rsanf...@akamai.com; dev@dpdk.org; david.march...@redhat.com; > Honnappa Nagarahalli ; Gavin Hu > ; nd ; nd > Subject: RE: [dpdk-dev] [PATCH v3] lib/timer: rela

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

2020-04-26 Thread 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 barrier to save the performance penalty. A

[dpdk-dev] reenchanting bugzilla with REST commands

2020-04-26 Thread Thomas Monjalon
Hi, There are 144 bugs open in https://bugs.dpdk.org/buglist.cgi?bug_status=__open__&product=DPDK Some regular effort is required to follow and update the bugs. If you don't have a bugzilla account on dpdk.org, please go to https://bugs.dpdk.org/createaccount.cgi In case it could motivat

[dpdk-dev] [PATCH v2 0/3] eal/windows: fix build by enabling trace compilation

2020-04-26 Thread Dmitry Kozlyuk
This patch fixes errors caused by using Unix-only functions in tracing EAL. It does not provide full tracing support for Windows because of missing regex implementation. It introduces new internal EAL wrappers for directory management and provides basic, but correct implementation for some EAL fu

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

2020-04-26 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. Signed-off-by: Dmitry Kozlyuk --- lib/librte_eal/windows/include/sys/queue

[dpdk-dev] [PATCH v2 2/3] eal: add internal directory management API

2020-04-26 Thread Dmitry Kozlyuk
Add functions for handling directories in a platform-independent way: * eal_persistent_data_path() * eal_dir_create() Currently, only tracing requires this API for its common code. Signed-off-by: Dmitry Kozlyuk --- .../common/eal_common_trace_utils.c | 26 +++--- lib/librte_eal/c

[dpdk-dev] [PATCH v2 3/3] eal/windows: fix build by enabling trace compilation

2020-04-26 Thread Dmitry Kozlyuk
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 functions used by tracing. Regex stubs are already present in Windows EAL. Fixes: 185b7dc1d467 ("trace: sav

Re: [dpdk-dev] [PATCH v2 3/3] eal/windows: fix build by enabling trace compilation

2020-04-26 Thread Thomas Monjalon
I think this patch is doing too many things at once. Why not just disabling tracing on Windows for now, and apply proper patches for memory management, timer, endianness, etc in 20.08? Some cosmetic comments below, 26/04/2020 17:28, Dmitry Kozlyuk: > Replace clock_gettime(CLOCK_REALTIME) with C11

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

2020-04-26 Thread Stephen Hemminger
On Sat, 25 Apr 2020 18:49:23 +0200 David Marchand wrote: > > > > +void > > +rte_eal_intr_cleanup(void) > > +{ > > + pthread_cancel(intr_thread); > > + pthread_join(intr_thread, NULL); > > + close(intr_pipe.readfd); > > + close(intr_pipe.writefd); > > What happens to the

Re: [dpdk-dev] [PATCH v2 3/3] eal/windows: fix build by enabling trace compilation

2020-04-26 Thread Dmitry Kozlyuk
On 2020-04-26 17:38 GMT+0200 Thomas Monjalon wrote: > I think this patch is doing too many things at once. > Why not just disabling tracing on Windows for now, > and apply proper patches for memory management, timer, endianness, etc > in 20.08? Sounds reasonable since tracing cannot be fully suppo

[dpdk-dev] [PATCH v3] eal: disable tracing on Windows

2020-04-26 Thread Dmitry Kozlyuk
Fix build errors caused by using Unix-specific functions in common code. Hide and disable command-line options related to tracing on Windows. Fixes: 3d26a70ae338 ("trace: add trace configuration parameter") Fixes: 3b155d24bdaf ("trace: hook subsystem to Linux") Reported-by: Pallavi Kadam Suggest

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

2020-04-26 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

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

2020-04-26 Thread Stephen Hemminger
On Sun, 26 Apr 2020 09:18:54 + Dekel Peled wrote: > Thanks, PSB. > > > -Original Message- > > From: Andrew Rybchenko > > Sent: Saturday, April 25, 2020 5:00 PM > > To: Dekel Peled ; Ori Kam ; > > john.mcnam...@intel.com; marko.kovace...@intel.com; Thomas Monjalon > > ; ferruh.yi...@

[dpdk-dev] [PATCH] bus/pci: optimize pci device probe

2020-04-26 Thread jerinj
From: Jerin Jacob If the PCI device is not attached to any driver then there is no point in probing it. As an optimization, skip the PCI device probe if the PCI device driver of type RTE_KDRV_NONE. Signed-off-by: Jerin Jacob --- Notes: -- - virtio drivers does special treatment based on RTE

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

2020-04-26 Thread Jerin Jacob
On Sun, Apr 26, 2020 at 1:42 AM Thomas Monjalon wrote: > > 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 pro

Re: [dpdk-dev] [PATCH v3] eal: disable tracing on Windows

2020-04-26 Thread Jerin Jacob
On Sun, Apr 26, 2020 at 10:12 PM Dmitry Kozlyuk wrote: > > Fix build errors caused by using Unix-specific functions in common code. > Hide and disable command-line options related to tracing on Windows. > > Fixes: 3d26a70ae338 ("trace: add trace configuration parameter") > Fixes: 3b155d24bdaf ("tr

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

2020-04-26 Thread Thomas Monjalon
26/04/2020 19:42, Jerin Jacob: > On Sun, Apr 26, 2020 at 1:42 AM Thomas Monjalon wrote: > > 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 machine

Re: [dpdk-dev] [PATCH] bus/pci: optimize pci device probe

2020-04-26 Thread Thomas Monjalon
26/04/2020 19:38, jer...@marvell.com: > From: Jerin Jacob > > If the PCI device is not attached to any driver then there is no > point in probing it. As an optimization, skip the PCI device probe if > the PCI device driver of type RTE_KDRV_NONE. > > Signed-off-by: Jerin Jacob > --- > Notes: > -

Re: [dpdk-dev] [PATCH v3] eal: disable tracing on Windows

2020-04-26 Thread Thomas Monjalon
26/04/2020 19:46, Jerin Jacob: > On Sun, Apr 26, 2020 at 10:12 PM Dmitry Kozlyuk > wrote: > > > > Fix build errors caused by using Unix-specific functions in common code. > > Hide and disable command-line options related to tracing on Windows. > > > > Fixes: 3d26a70ae338 ("trace: add trace configu

Re: [dpdk-dev] [PATCH] bus/pci: optimize pci device probe

2020-04-26 Thread Jerin Jacob
On Sun, Apr 26, 2020 at 11:38 PM Thomas Monjalon wrote: > > 26/04/2020 19:38, jer...@marvell.com: > > From: Jerin Jacob > > > > If the PCI device is not attached to any driver then there is no > > point in probing it. As an optimization, skip the PCI device probe if > > the PCI device driver of t

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

2020-04-26 Thread Jerin Jacob
On Sun, Apr 26, 2020 at 11:37 PM Thomas Monjalon wrote: > > 26/04/2020 19:42, Jerin Jacob: > > On Sun, Apr 26, 2020 at 1:42 AM Thomas Monjalon wrote: > > > 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...@mar

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

2020-04-26 Thread Carrillo, Erik G
> -Original Message- > From: Phil Yang > Sent: Sunday, April 26, 2020 9:20 AM > To: Carrillo, Erik G ; tho...@monjalon.net > Cc: rsanf...@akamai.com; dev@dpdk.org; david.march...@redhat.com; > Honnappa Nagarahalli ; Gavin Hu > ; nd ; nd ; nd > > Subject: RE: [dpdk-dev] [PATCH v3] lib/t

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

2020-04-26 Thread Thomas Monjalon
26/04/2020 20:48, Jerin Jacob: > On Sun, Apr 26, 2020 at 11:37 PM Thomas Monjalon wrote: > > 26/04/2020 19:42, Jerin Jacob: > > > On Sun, Apr 26, 2020 at 1:42 AM Thomas Monjalon > > > wrote: > > > > 06/02/2020 15:36, Jerin Jacob: > > > > > On Thu, Feb 6, 2020 at 7:44 PM Thomas Monjalon > > > >

Re: [dpdk-dev] [PATCH] bus/pci: optimize pci device probe

2020-04-26 Thread Thomas Monjalon
26/04/2020 20:41, Jerin Jacob: > On Sun, Apr 26, 2020 at 11:38 PM Thomas Monjalon wrote: > > > > 26/04/2020 19:38, jer...@marvell.com: > > > From: Jerin Jacob > > > > > > If the PCI device is not attached to any driver then there is no > > > point in probing it. As an optimization, skip the PCI d

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

2020-04-26 Thread Thomas Monjalon
26/04/2020 16:45, 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] [PATCH v2] doc: fix incorrect example for specifying log level

2020-04-26 Thread Thomas Monjalon
18/03/2020 01:58, Xiaolong Ye: > Now we need to add prefix like lib. to enable the log, also changing val 8 to > "debug"" which would be more descriptive. > > Fixes: ffb9fd1b0808 ("log: update legacy modules dynamic logs regex") > Cc: sta...@dpdk.org > > Reported-by: Haiyue Wang > Signed-off-by:

Re: [dpdk-dev] [PATCH v2] eal: add madvise to avoid dump memory

2020-04-26 Thread Feng Li
Bruce Richardson 于2020年4月24日周五 下午5:14写道: > > On Fri, Apr 24, 2020 at 10:12:10AM +0100, Burakov, Anatoly wrote: > > On 23-Apr-20 9:04 PM, David Marchand wrote: > > > On Thu, Apr 23, 2020 at 6:34 PM Burakov, Anatoly > > > wrote: > > > > > diff --git a/lib/librte_eal/common/eal_common_memory.c > >

Re: [dpdk-dev] [dpdk-stable] [PATCH] examples/l2fwd-keepalive: fix packet drops limited mbufs

2020-04-26 Thread Thomas Monjalon
11/03/2020 13:04, Louise Kilheeney: > MBUF pool of size 8192 was causing packet loss when using four ports. To > fix this issue this patch specifies the number of MBUF's per port > instead of having one set MBUF pool size, this way it will adapt to any > number of ports. > > Fixes: e64833f2273a ("

Re: [dpdk-dev] [dpdk-stable] [PATCH] examples/l2fwd-keepalive: fix packet drops limited mbufs

2020-04-26 Thread Thomas Monjalon
13/03/2020 04:07, Jiang, MaoX: > Tested-by:xix.zh...@intel.com Please provide full name.

Re: [dpdk-dev] [PATCH] [v2 1/1] examples/l2fwd: add cmdline option for forwarding port info

2020-04-26 Thread Thomas Monjalon
05/04/2020 05:52, vattun...@marvell.com: > From: Vamsi Attunuru > > Current l2fwd application configures adjacent ports as destination > ports for forwarding the traffic which is a kind of static mapping > that can not be altered by the command line options. > > Patch adds a config option to pas

Re: [dpdk-dev] [PATCH v2 2/2] l3fwd-power: implement proper shutdown handling

2020-04-26 Thread Thomas Monjalon
20/04/2020 19:56, Anatoly Burakov: > Currently, shutdown for l3fwd-power application is all over the place > and may or may not happen either in the signal handler or in the main() > function. Fix this so that the signal handler will only set the exit > variable, thereby allowing all of the loops t

[dpdk-dev] [dpdk-announce] release candidate 20.05-rc1

2020-04-26 Thread Thomas Monjalon
A new DPDK release candidate is ready for testing: https://git.dpdk.org/dpdk/tag/?id=v20.05-rc1 There are 822 new patches in this snapshot. Release notes: https://doc.dpdk.org/guides/rel_notes/release_20_05.html Highlights of 20.05-rc1, grouped by category: * General - lo

Re: [dpdk-dev] [dpdk-stable] [PATCH] examples/l2fwd-keepalive: fix packet drops limited mbufs

2020-04-26 Thread Jiang, MaoX
Tested-by:zhang,xi Best regards, Jiang Mao > -Original Message- > From: stable [mailto:stable-boun...@dpdk.org] On Behalf Of Louise > Kilheeney > Sent: Wednesday, March 11, 2020 8:05 PM > To: dev@dpdk.org > Cc: Kilheeney, Louise ; sta...@dpdk.org > Subject: [dpdk-stable] [PATCH] example

[dpdk-dev] [PATCH] maintainers: update for Intel ixgbe/igb/igc

2020-04-26 Thread Wei Zhao
Replace Wenzhuo Lu, Alvin Zhang and Konstantin Ananyev with Wei Zhao and Jeff Guo. Signed-off-by: Wei Zhao --- MAINTAINERS | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index d31a80929..7a57535ee 100644 --- a/MAINTAINERS +++ b/MAINTAINE

[dpdk-dev] [PATCH] maintainers: update for Intel ixgbe/igb/igc

2020-04-26 Thread Wei Zhao
Replace Wenzhuo Lu, Alvin Zhang and Konstantin Ananyev with Wei Zhao and Jeff Guo. Signed-off-by: Wei Zhao --- MAINTAINERS | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index d31a80929..7a57535ee 100644 --- a/MAINTAINERS +++ b/MAINTAINE

[dpdk-dev] [PATCH] maintainers: update for Intel ixgbe/igb/igc

2020-04-26 Thread Wei Zhao
Replace Wenzhuo Lu, Alvin Zhang and Konstantin Ananyev with Wei Zhao and Jeff Guo. Signed-off-by: Wei Zhao --- MAINTAINERS | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index d31a80929..7a57535ee 100644 --- a/MAINTAINERS +++ b/MAINTAINER

[dpdk-dev] [PATCH] lib/librte_hash: add rte_hash_del_key_fixed without compact

2020-04-26 Thread Lilijun (Jerry)
The keys idx are stored in rte_hash main bucket key slots and extend bucket key stots. We iterate every no empty Keys in h->buckets and h->buckets_ext from start to last. When deleting keys the function __rte_hash_compact_ll() may move last_bkt's key to previous bucket in order to compact exte

[dpdk-dev] [PATCH] lib/librte_hash: avoid iterate bugs with delete keys.

2020-04-26 Thread Lilijun (Jerry)
>From 0faea722b82ffe30adfa55d5ea4ad3a23ed30d4e Mon Sep 17 00:00:00 2001 From: Yunjian Wang Date: Mon, 27 Apr 2020 11:12:25 +0800 Subject: [PATCH] lib/librte_hash: avoid iterate bugs with delete keys. The keys idx are stored in rte_hash main and extend bucket key slots. We iterate every no empty K

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

2020-04-26 Thread Kumar, Ravi1
[AMD Public Use] Acked-by: Ravi Kumar >-Original Message- >From: wangyunjian >Sent: Sunday, April 26, 2020 12:06 PM >To: dev@dpdk.org; Kumar, Ravi1 >Cc: jerry.lili...@huawei.com; xudin...@huawei.com; Yunjian Wang >; sta...@dpdk.org >Subject: [dpdk-dev] [PATCH] crypto/ccp: fix fd leak

Re: [dpdk-dev] [PATCH dpdk-dev v3 2/2] mempool: use shared memzone for rte_mempool_ops

2020-04-26 Thread Tonghao Zhang
On Thu, Apr 23, 2020 at 9:38 PM Andrew Rybchenko wrote: > > On 4/13/20 5:21 PM, xiangxia.m@gmail.com wrote: > > From: Tonghao Zhang > > > > The order of mempool initiation affects mempool index in the > > rte_mempool_ops_table. For example, when building APPs with: > > > > $ gcc -lrte_mempool

[dpdk-dev] [PATCH v2] net/axgbe: support sfp module EEPROM

2020-04-26 Thread asomalap
From: Amaranath Somalapuram Adding API for get_module_eeprom and get_module_info. Signed-off-by: Amaranath Somalapuram --- doc/guides/nics/features/axgbe.ini | 1 + drivers/net/axgbe/axgbe_ethdev.c | 2 + drivers/net/axgbe/axgbe_phy.h | 4 ++ drivers/net/axgbe/axgbe_phy_impl.c | 1

[dpdk-dev] [PATCH v2] net/axgbe: support sfp module EEPROM

2020-04-26 Thread asomalap
From: Amaranath Somalapuram Adding API for get_module_eeprom and get_module_info. Signed-off-by: Amaranath Somalapuram --- doc/guides/nics/features/axgbe.ini | 1 + drivers/net/axgbe/axgbe_ethdev.c | 2 + drivers/net/axgbe/axgbe_phy.h | 4 ++ drivers/net/axgbe/axgbe_phy_impl.c | 1

Re: [dpdk-dev] [PATCH v2] net/axgbe: support sfp module EEPROM

2020-04-26 Thread Somalapuram, Amaranath
Hi Ravi, Can you acknowledge this patch. Regards, S.Amarnath -Original Message- From: Somalapuram, Amaranath Sent: Monday, April 27, 2020 11:13 AM To: dev@dpdk.org Cc: Kumar, Ravi1 Subject: [PATCH v2] net/axgbe: support sfp module EEPROM From: Amaranath Somalapuram Adding API for ge

[dpdk-dev] [PATCH v1] maintainers: update for AMD xgbe and ccp crypto

2020-04-26 Thread asomalap
From: Amaranath Somalapuram Ownership change. Signed-off-by: Amaranath Somalapuram --- MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index d31a80929..c3dcedbb3 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -566,7 +566,7 @@ F: doc/

Re: [dpdk-dev] [PATCH v1] maintainers: update for AMD xgbe and ccp crypto

2020-04-26 Thread Kumar, Ravi1
[AMD Public Use] Acked-by: Ravi Kumar >-Original Message- >From: Somalapuram, Amaranath >Sent: Monday, April 27, 2020 11:42 AM >To: dev@dpdk.org >Cc: Kumar, Ravi1 >Subject: [PATCH v1] maintainers: update for AMD xgbe and ccp crypto > >From: Amaranath Somalapuram > >Ownership change. >

Re: [dpdk-dev] [PATCH 3/3] maintainers: update for driver testing tool

2020-04-26 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Sunday, April 26, 2020 4:22 PM > To: dev@dpdk.org; Wu, Jingjing ; Lu, Wenzhuo > ; Zhang, Qi Z > Subject: [PATCH 3/3] maintainers: update for driver testing tool > > Replace Jingjing Wu with Beilei Xing. > > Signed-off-by: Beilei Xing

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

2020-04-26 Thread Ori Kam
Hi Stephen, > -Original Message- > From: Stephen Hemminger > Sent: Sunday, April 26, 2020 8:02 PM > To: Dekel Peled > Cc: Andrew Rybchenko ; Ori Kam > ; john.mcnam...@intel.com; > marko.kovace...@intel.com; Thomas Monjalon ; > ferruh.yi...@intel.com; dev@dpdk.org; Asaf Penso > Subject: