[dpdk-dev] [PATCH v2 2/2] net/failsafe: support multicast address list set

2018-09-02 Thread Andrew Rybchenko
From: Evgeny Im Signed-off-by: Evgeny Im Signed-off-by: Andrew Rybchenko --- doc/guides/nics/features/failsafe.ini | 1 + doc/guides/rel_notes/release_18_11.rst | 6 drivers/net/failsafe/failsafe.c | 1 + drivers/net/failsafe/failsafe_ether.c | 17 + drivers/net/fa

[dpdk-dev] [PATCH v2 0/2] net/failsafe: support multicast MAC address set

2018-09-02 Thread Andrew Rybchenko
Evgeny Im (2): net/failsafe: remove not supported multicast MAC filter net/failsafe: support multicast address list set doc/guides/rel_notes/release_18_11.rst | 6 drivers/net/failsafe/failsafe.c | 1 + drivers/net/failsafe/failsafe_ether.c | 17 + drivers/net/failsa

[dpdk-dev] [PATCH v2 1/2] net/failsafe: remove not supported multicast MAC filter

2018-09-02 Thread Andrew Rybchenko
From: Evgeny Im set_mc_addr_list method is not implemented by the driver yet. Fixes: a46f8d584eb8 ("net/failsafe: add fail-safe PMD") Cc: sta...@dpdk.org Signed-off-by: Evgeny Im Signed-off-by: Andrew Rybchenko --- doc/guides/nics/features/failsafe.ini | 1 - 1 file changed, 1 deletion(-) d

Re: [dpdk-dev] [PATCH 2/2] net/failsafe: support multicast address list set

2018-09-02 Thread Andrew Rybchenko
On 08/31/2018 06:53 PM, Andrew Rybchenko wrote: From: Evgeny Im Signed-off-by: Evgeny Im Signed-off-by: Andrew Rybchenko <...> diff --git a/drivers/net/failsafe/failsafe_ops.c b/drivers/net/failsafe/failsafe_ops.c index 24e91c931..2583cff58 100644 --- a/drivers/net/failsafe/failsafe_ops

[dpdk-dev] [PATCH] doc: update for GTPv1 package release

2018-09-02 Thread Beilei Xing
Add link of GTPv1 package release. Signed-off-by: Beilei Xing --- doc/guides/nics/i40e.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index 65d87f8..5d8500c 100644 --- a/doc/guides/nics/i40e.rst +++ b/doc/guides/nics/i40e.rst @@ -42

Re: [dpdk-dev] [PATCH] vhost: fix crash if set vring num handling failed

2018-09-02 Thread Tiwei Bie
On Thu, Aug 30, 2018 at 09:54:50AM +0300, Ilya Maximets wrote: > On 30.08.2018 09:06, Tiwei Bie wrote: > > On Wed, Aug 29, 2018 at 05:00:47PM +0300, Ilya Maximets wrote: > >> Any thoughts on this? > > > > Hi Ilya, > > > > Currently, the errors happened during messages handling > > aren't handled

Re: [dpdk-dev] [PATCH 4/4] build: generate API documentation with Meson

2018-09-02 Thread Thomas Monjalon
31/08/2018 20:20, Luca Boccassi: > Both a configuration-time "enable_docs" boolean option and an optional > 'ninja doc' target are available. Note that due to a Meson bug for now > the latter will only build, but not install the files. > > Signed-off-by: Luca Boccassi > --- > doc/api/generate_do

Re: [dpdk-dev] [PATCH 3/4] build: use same version as make showversion in Meson

2018-09-02 Thread Thomas Monjalon
31/08/2018 20:20, Luca Boccassi: > make showversion will print 18.11.0-rc0 but Meson sets 18.11-rc0, > causing among other things a difference in the generated documentation. > > Fixes: 76b9d9de5c7d ("version: 18.11-rc0") > > Signed-off-by: Luca Boccassi Acked-by: Thomas Monjalon

Re: [dpdk-dev] [PATCH 2/4] mk: use templated doxygen config, modified on the fly

2018-09-02 Thread Thomas Monjalon
Good idea. While at putting all in the same file (template), we can re-organize the template a bit. 31/08/2018 20:20, Luca Boccassi: > --- /dev/null > +++ b/doc/api/doxy-api.conf.in > @@ -0,0 +1,96 @@ > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright 2013-2017 6WIND S.A. > + > +PROJECT_NAM

Re: [dpdk-dev] [PATCH 1/4] mk: use script to generate examples.dox

2018-09-02 Thread Thomas Monjalon
31/08/2018 20:20, Luca Boccassi: > +# SC2129 - avoid multiple individual redirects What is SC2129 ? > +{ \ > +printf '/**\n'; \ > +printf '@page examples DPDK Example Programs\n\n'; \ > +find "${EXAMPLES_DIR}" -type f -name '*.c' -printf '@example > examples/%P\n' | LC_ALL=C sort; \

[dpdk-dev] [dpdk-announce] DPDK 17.11.4 released

2018-09-02 Thread Yongseok Koh
Hi all, Here is a new stable release: https://fast.dpdk.org/rel/dpdk-17.11.4.tar.xz The git tree is at: https://dpdk.org/browse/dpdk-stable/?h=17.11 Thanks, Yongseok --- MAINTAINERS| 12 +- app/test-crypto-perf/cperf_ops.c

Re: [dpdk-dev] [PATCH v3] hash table: add an iterator over conflicting entries

2018-09-02 Thread Honnappa Nagarahalli
Hi Qiaobin, Thank you for the patch. Please see few comments inline. -Original Message- From: Qiaobin Fu Sent: Friday, August 31, 2018 11:51 AM To: bruce.richard...@intel.com; pablo.de.lara.gua...@intel.com Cc: dev@dpdk.org; douce...@bu.edu; keith.wi...@intel.com; sameh.gobr...@

[dpdk-dev] [PATCH v2] build: enable Arm NEON flags when __aarch64__ is defined

2018-09-02 Thread Honnappa Nagarahalli
GCC version 4.8.5 does not pre-define __ARM_NEON. NEON is not optional for ArmV8. Hence NEON related code can be enabled when __aarch64__ is defined. Bugzilla ID: 82 Cc: sta...@dpdk.org Reported-by: Raslan Darawsheh Reported-by: Thomas F Herbert Signed-off-by: Honnappa Nagarahalli Reviewed-by:

Re: [dpdk-dev] [dpdk-stable] [PATCH 17.11] mem: fix max DMA maskbit size

2018-09-02 Thread Yongseok Koh
> On Aug 31, 2018, at 7:53 AM, Alejandro Lucero > wrote: > > The sanity check inside rte_eal_check_dma_mask is using 47 bits as > the maximum size. It turns out there are some IOMMU hardware reporting > 48 bits precluding the IOVA VA mode to be enabled. > > It is harmless to raise the maximum

[dpdk-dev] [PATCH] net/mlx5: add bluefield vf support

2018-09-02 Thread Ori Kam
Signed-off-by: Ori Kam --- drivers/net/mlx5/mlx5.c | 4 drivers/net/mlx5/mlx5.h | 1 + 2 files changed, 5 insertions(+) diff --git a/drivers/net/mlx5/mlx5.c b/drivers/net/mlx5/mlx5.c index 30d4e70..fd89e2a 100644 --- a/drivers/net/mlx5/mlx5.c +++ b/drivers/net/mlx5/mlx5.c @@ -1489,6 +1489,1

Re: [dpdk-dev] [dpdk-stable] [PATCH v4] net/bonding: per-slave intermediate rx ring

2018-09-02 Thread Matan Azrad
Hi Luca\Chas From: Luca Boccassi > On Wed, 2018-08-29 at 15:20 +, Matan Azrad wrote: > > > > From: Chas Williams > > > On Tue, Aug 28, 2018 at 5:51 AM Matan Azrad > > com> wrote: > > > > > > > > > From: Chas Williams > > > > On Mon, Aug 27, 2018 at 11:30 AM Matan Azra