[dpdk-dev] [PATCH] remove unneeded eal header inclusion

2019-08-11 Thread David Marchand
Restrict this header inclusion to its real users. Fixes: 028669bc9f0d ("eal: hide shared memory config") Signed-off-by: David Marchand --- app/test/test_external_mem.c | 1 - app/test/test_malloc.c| 1 - app/test/test_memory.c| 1

[dpdk-dev] [Bug 337] Live migration with dpdk(in host)+vhost-user+dpdk(in guest) fails: Failed to load virtio-net:virtio

2019-08-11 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=337 Bug ID: 337 Summary: Live migration with dpdk(in host)+vhost-user+dpdk(in guest) fails: Failed to load virtio-net:virtio Product: DPDK Version: 19.08 Hardware: All O

[dpdk-dev] [PATCH] kni: support allmulticast mode set

2019-08-11 Thread Xiaolong Ye
This patch adds support to allow users enable/disable allmulticast mode for kni interface. This requirement comes from bugzilla 312, more details can refer to: https://bugs.dpdk.org/show_bug.cgi?id=312 Bugzilla ID: 312 Signed-off-by: Xiaolong Ye --- .../prog_guide/kernel_nic_interface.rst

[dpdk-dev] [v3] net/i40e: fix vf runtime queues rss config

2019-08-11 Thread Xiao Zhang
I40evf queue can not work properly with kernel pf driver. Eg. when configure 8 queues pair, only 4 queues can receive packets, and half packets will be lost if using 2 queues pair. This issue is caused by misconfiguration of look up table, use aq command to setup the lut to make it work properly.

[dpdk-dev] [PATCH] app/test_thash: replace license text with SPDX tag

2019-08-11 Thread Medvedkin Vladimir
Signed-off-by: Medvedkin Vladimir --- app/test/test_thash.c | 33 ++--- 1 file changed, 2 insertions(+), 31 deletions(-) diff --git a/app/test/test_thash.c b/app/test/test_thash.c index 5a6912c..a6aadd1 100644 --- a/app/test/test_thash.c +++ b/app/test/test_thash.c @@

[dpdk-dev] [PATCH v3 1/2] ethdev: expose basic xstats for driver use

2019-08-11 Thread Stephen Hemminger
Avoid duplication by having generic basic xstats available for use by drivers. A later patch uses this for failsafe driver. Signed-off-by: Stephen Hemminger Acked-by: Gaetan Rivet --- lib/librte_ethdev/rte_ethdev.c | 17 +++ lib/librte_ethdev/rte_ethdev_driver.h| 65 ++

[dpdk-dev] [PATCH v3 0/2] failsafe: add xstats

2019-08-11 Thread Stephen Hemminger
A useful feature of netvsc PMD is the ability to see how many packets were processed through the VF device. This patch set adds a similar (but more limited) capability to failsafe driver. Since failsafe doesn't have top level xstats, this set uses the generic xstats that exist already as a base th

[dpdk-dev] [PATCH v3 2/2] net/failsafe: implement xstats

2019-08-11 Thread Stephen Hemminger
Add support for extended statistics in failsafe driver. Reports basic statistics for the failsafe driver, and detailed statistics for each sub device. Signed-off-by: Stephen Hemminger Acked-by: Gaetan Rivet --- drivers/net/failsafe/failsafe_ops.c | 135 1 file chang

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

2019-08-11 Thread Thomas Monjalon
A new major release is available: https://fast.dpdk.org/rel/dpdk-19.08.tar.xz The statistics - probably the biggest release of the year: 1327 commits from 171 authors 1631 files changed, 138797 insertions(+), 97285 deletions(-) Below are some new features, grouped by categ

Re: [dpdk-dev] [PATCH V3] doc: add guideines for initial PMD submission

2019-08-11 Thread Thomas Monjalon
> From: Rami Rosen [mailto:ramir...@gmail.com] > > > This patch for DPDK Contributor's Guidelines indicates the repos against > > which a new PMD should be prepared; for example, for new network ethernet > > PMDs it should be dpdk-next-net, and for new crypto PMDs it should be > > dpdk-next-crypto