Re: [dpdk-dev] [PATCH v2 00/15] next-eventdev: event/sw software eventdev

2017-02-06 Thread Jerin Jacob
On Tue, Jan 31, 2017 at 04:14:18PM +, Harry van Haaren wrote: > The following patchset adds software eventdev implementation > to the next-eventdev tree. > > This implementation is based on the previous software eventdev > v1 patchset, now with comments addressed: > 1) xstats api return values

Re: [dpdk-dev] [PATCH v2 01/15] eventdev: remove unneeded dependencies

2017-02-06 Thread Jerin Jacob
On Tue, Jan 31, 2017 at 04:14:19PM +, Harry van Haaren wrote: > From: Bruce Richardson > > Since eventdev uses event structures rather than working directly on > mbufs, there is no actual dependencies on the mbuf library. The > inclusion of an mbuf pointer element inside the event itself does

Re: [dpdk-dev] [PATCH v2 02/15] eventdev: add APIs for extended stats

2017-02-06 Thread Jerin Jacob
On Tue, Jan 31, 2017 at 04:14:20PM +, Harry van Haaren wrote: > From: Bruce Richardson > > Add in APIs for extended stats so that eventdev implementations can report > out information on their internal state. The APIs are based on, but not > identical to, the equivalent ethdev functions. The

Re: [dpdk-dev] [PATCH v2 03/15] event/sw: add new software-only eventdev driver

2017-02-06 Thread Jerin Jacob
On Tue, Jan 31, 2017 at 04:14:21PM +, Harry van Haaren wrote: > From: Bruce Richardson > > This adds the minimal changes to allow a SW eventdev implementation to > be compiled, linked and created at run time. The eventdev does nothing, > but can be created via vdev on commandline, e.g. > >

Re: [dpdk-dev] [PATCH v2 04/15] event/sw: add device capabilities function

2017-02-06 Thread Jerin Jacob
On Tue, Jan 31, 2017 at 04:14:22PM +, Harry van Haaren wrote: > From: Bruce Richardson > > Add in the info_get function to return details on the queues, flow, > prioritization capabilities, etc. that this device has. > > Signed-off-by: Bruce Richardson > Signed-off-by: Harry van Haaren > -

[dpdk-dev] [PATCH] net/i40e: fix tunnel filter issue

2017-02-06 Thread Beilei Xing
Creating IPv4 flow and IPv6 flow will cause confilct error. Root cause is there's no IP info included in tunnel filter input. Fixes: 425c3325f0b0 ("net/i40e: store tunnel filter") Fixes: d416530e6358 ("net/i40e: parse tunnel filter") Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c

Re: [dpdk-dev] [PATCH v2 3/5] net/ixgbe: fix bitmask of supported Tx flags

2017-02-06 Thread Wu, Jingjing
> -Original Message- > From: Ananyev, Konstantin > Sent: Sunday, February 5, 2017 8:11 PM > To: Ananyev, Konstantin ; Wu, Jingjing > ; dev@dpdk.org > Subject: RE: [dpdk-dev] [PATCH v2 3/5] net/ixgbe: fix bitmask of supported > Tx flags > > > > > -Original Message- > > From: dev

Re: [dpdk-dev] [RFC 1/2] doc: introduction to prgdev

2017-02-06 Thread Chen, Jing D
Hi, Jan, On 2/1/2017 7:41 PM, Jan Blunck wrote: On Fri, Jan 20, 2017 at 4:21 AM, Chen Jing D(Mark) wrote: This is the documentation to describe what prgdev is, how to use prgdev API and accomplish an image download. Signed-off-by: Chen Jing D(Mark) --- doc/guides/prog_guide/prgdev_lib.rst

Re: [dpdk-dev] [PATCH v2 07/15] event/sw: add support for event queues

2017-02-06 Thread Jerin Jacob
On Tue, Jan 31, 2017 at 04:14:25PM +, Harry van Haaren wrote: > From: Bruce Richardson > > Add in the data structures for the event queues, and the eventdev > functions to create and destroy those queues. > > Signed-off-by: Bruce Richardson > Signed-off-by: Harry van Haaren > --- > driver

Re: [dpdk-dev] buf->hash.rss always empty with i40e

2017-02-06 Thread tom . barbette
That also leave the question of how to HASH only on the IP tuple for TCP and UDP packets? The use case is that I want all packets from the same IP src/dst pair to be hashed to the same queue. This cannot be enforced with a complete hash on TCP/UDP fields. Tom

Re: [dpdk-dev] [PATCH v2 09/15] event/sw: add support for linking queues to ports

2017-02-06 Thread Jerin Jacob
On Tue, Jan 31, 2017 at 04:14:27PM +, Harry van Haaren wrote: > From: Bruce Richardson > > Signed-off-by: Bruce Richardson > Signed-off-by: Harry van Haaren > --- > drivers/event/sw/sw_evdev.c | 68 > + > 1 file changed, 68 insertions(+) > > di

Re: [dpdk-dev] [PATCH v2 00/15] next-eventdev: event/sw software eventdev

2017-02-06 Thread Van Haaren, Harry
> -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Monday, February 6, 2017 8:07 AM > To: Van Haaren, Harry > Cc: dev@dpdk.org > Subject: Re: [PATCH v2 00/15] next-eventdev: event/sw software eventdev > > On Tue, Jan 31, 2017 at 04:14:18PM +, Harr

Re: [dpdk-dev] vhost user MTU and promisc mode

2017-02-06 Thread Maxime Coquelin
Hi Jianfeng, On 02/06/2017 07:39 AM, Tan, Jianfeng wrote: Hi Maxime, Have seen that you submit a feature in QEMU, commit c5f048d8fb69 (“vhost-user: Add MTU protocol feature and op”). Appreciate your insights on: (1) Do you have plan to enable it in DPDK vhost user? Yes, I plan to propose

Re: [dpdk-dev] [PATCH v2 07/15] event/sw: add support for event queues

2017-02-06 Thread Van Haaren, Harry
> -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Monday, February 6, 2017 9:25 AM > To: Van Haaren, Harry > Cc: dev@dpdk.org; Richardson, Bruce > Subject: Re: [PATCH v2 07/15] event/sw: add support for event queues > > On Tue, Jan 31, 2017 at 04:14

Re: [dpdk-dev] [PATCH v2 2/5] net/i40e: fix bitmask of supported Tx flags

2017-02-06 Thread Olivier Matz
Hi Jingjing, On Sat, 4 Feb 2017 11:36:12 +0800, Jingjing Wu wrote: > Some Tx offload flags are missed in bitmask of all supported packet > Tx flags by i40e. > This patch fixes it. Could you detail which flag was missing? Is it PKT_TX_TUNNEL_MASK? If yes, shouldn't we have a "Fixes:" line? I th

Re: [dpdk-dev] [PATCH v2 2/5] net/i40e: fix bitmask of supported Tx flags

2017-02-06 Thread Olivier Matz
On Mon, 6 Feb 2017 03:02:12 +, "Wu, Jingjing" wrote: > > > > Functionally will be same, but what do you think about following, > > to make easy to see what define adds: > > > > +#define I40E_TX_OFFLOAD_MASK ( \ > > + PKT_TX_IP_CKSUM |\ > > + PKT_TX_IP

Re: [dpdk-dev] [PATCH v2 02/15] eventdev: add APIs for extended stats

2017-02-06 Thread Van Haaren, Harry
> -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Monday, February 6, 2017 8:23 AM > To: Van Haaren, Harry > Cc: dev@dpdk.org; Richardson, Bruce > Subject: Re: [PATCH v2 02/15] eventdev: add APIs for extended stats > > On Tue, Jan 31, 2017 at 04:14:

[dpdk-dev] 答复: RE: [PATCH v2] net/ixgbe/base: clear redundant macro define

2017-02-06 Thread yao . chenghu
> As 1.x is for linux/freebsd, but 2.0 is for solaris, 2.0 doesn't > leverage the messages from 1.x. For example, 0x0a has different > meaning in 1.x and 2.0. So better letting it be. > Ok, thanks for your reply.

[dpdk-dev] [PATCH] net/ena: solve problem with host attributes

2017-02-06 Thread Jakub Palider
The hardware may reject adding host_info in case support for host_info is missing in the list of supported features. On the other hand the list of supported featues may contain support for the host_info - typical bootstrap problem. This patch solves it by removing check against support for host_inf

[dpdk-dev] [PATCH v2] net/ena: solve problem with host attributes

2017-02-06 Thread Jakub Palider
The hardware may reject adding host_info in case support for host_info is missing in the list of supported features. On the other hand the list of supported featues may contain support for the host_info - typical bootstrap problem. This patch solves it by removing check against support for host_inf

Re: [dpdk-dev] [PATCH v2 3/5] net/ixgbe: fix bitmask of supported Tx flags

2017-02-06 Thread Ananyev, Konstantin
> -Original Message- > From: Wu, Jingjing > Sent: Monday, February 6, 2017 8:54 AM > To: Ananyev, Konstantin ; dev@dpdk.org > Subject: RE: [dpdk-dev] [PATCH v2 3/5] net/ixgbe: fix bitmask of supported Tx > flags > > > > > -Original Message- > > From: Ananyev, Konstantin > > Se

Re: [dpdk-dev] buf->hash.rss always empty with i40e

2017-02-06 Thread Ananyev, Konstantin
Hi Tom, > > That also leave the question of how to HASH only on the IP tuple for TCP and > UDP packets? The use case is that I want all packets from the > same IP src/dst pair to be hashed to the same queue. This cannot be enforced > with a complete hash on TCP/UDP fields. > That's for IPv4 o

[dpdk-dev] [PATCH] app/crypto-perf: fix dereference null return value

2017-02-06 Thread Slawomir Mrozowicz
Dereferencing a pointer that might be null key_token when calling strstr. Check if the pointer is null before. Coverity issue: 141071 Fixes: f8be1786b1b8 ("app/crypto-perf: introduce performance test application") Signed-off-by: Slawomir Mrozowicz --- app/test-crypto-perf/cperf_test_vector_pars

[dpdk-dev] [PATCH] eventdev: update event port link and unlink callbacks

2017-02-06 Thread Nipun Gupta
Added a pointer to the rte_eventdev type in the event port link and unlink callbacks. This device shall be used by some of the event drivers to fetch queue related information. Also, update the skeleton eventdev driver with corresponding changes. Signed-off-by: Nipun Gupta --- drivers/event/ske

[dpdk-dev] 17.02-rc2: i40e and LSC

2017-02-06 Thread Ivan Nardi
Hi guys we are upgrading our application from dpdk 16.11 to 17.02-rc2 and we are facing a strange behavior with i40e driver and LSC If we call rte_eth_dev_configure() with port_conf.intr_conf.lsc = 1, the call always failed with error Configuring Port 0 (socket 1) rte_eth_dev_configure: driver net

[dpdk-dev] [PATCH] doc: add known issue for virtio TSO with clones

2017-02-06 Thread Olivier Matz
Document the issue with Tso on shared packets. Signed-off-by: Olivier Matz --- doc/guides/rel_notes/known_issues.rst | 31 +++ 1 file changed, 31 insertions(+) diff --git a/doc/guides/rel_notes/known_issues.rst b/doc/guides/rel_notes/known_issues.rst index 018e999..

Re: [dpdk-dev] [PATCH v2] app/test-crypto-perf: fix gcc compilation under FreeBSD

2017-02-06 Thread De Lara Guarch, Pablo
Hi Daniel, > -Original Message- > From: Mrzyglod, DanielX T > Sent: Friday, February 03, 2017 12:10 PM > To: De Lara Guarch, Pablo; Thomas Monjalon; Mrozowicz, SlawomirX > Cc: dev@dpdk.org > Subject: RE: [dpdk-dev] [PATCH v2] app/test-crypto-perf: fix gcc compilation > under FreeBSD > >

[dpdk-dev] [RFC 0/8] eal: dynamic logs

2017-02-06 Thread Olivier Matz
The objective of this RFC patchset is to introduce a framework to support dynamic log types in EAL. It also provides one example of use (in i40e). Features: - log types are identified by a string - at registration, a uniq identifier is associated to a log type - each log type can have its level ch

[dpdk-dev] [RFC 1/8] eal: support dynamic log types

2017-02-06 Thread Olivier Matz
Introduce 2 new functions to support dynamic log types: - rte_log_register(): register a log name, and return a log type id - rte_log_set_level(): set the log level of a given log type Signed-off-by: Olivier Matz --- app/test/test_logs.c| 6 +- doc/guides/contribut

[dpdk-dev] [RFC 2/8] eal: dump registered log types

2017-02-06 Thread Olivier Matz
Introduce a function to dump the global level and the registered log types. Signed-off-by: Olivier Matz --- lib/librte_eal/bsdapp/eal/rte_eal_version.map | 1 + lib/librte_eal/common/eal_common_log.c | 34 + lib/librte_eal/common/include/rte_log.h | 10

[dpdk-dev] [RFC 3/8] eal: change several log levels matching a regexp

2017-02-06 Thread Olivier Matz
Introduce a function to set the log level of several log types that match a regular expression. Signed-off-by: Olivier Matz --- lib/librte_eal/bsdapp/eal/rte_eal_version.map | 1 + lib/librte_eal/common/eal_common_log.c | 21 + lib/librte_eal/common/include/rte_lo

[dpdk-dev] [RFC 5/8] eal: deprecate log functions

2017-02-06 Thread Olivier Matz
Deprecate the following functions: - rte_set_log_level(), replaced by rte_log_set_global_level() - rte_get_log_level(), replaced by rte_log_get_global_level() - rte_set_log_type(), rte_log_set_level() - rte_get_log_type(), rte_log_get_level() The new functions provide a better control of the per-t

[dpdk-dev] [RFC 7/8] app/testpmd: new command to dump log types

2017-02-06 Thread Olivier Matz
Signed-off-by: Olivier Matz --- app/test-pmd/cmdline.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index 43fc636..849d807 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -7673,6 +7673,8 @@ static void

[dpdk-dev] [RFC 6/8] app/test: new command to dump log types

2017-02-06 Thread Olivier Matz
Signed-off-by: Olivier Matz --- app/test/commands.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/test/commands.c b/app/test/commands.c index 2df46b0..488dc41 100644 --- a/app/test/commands.c +++ b/app/test/commands.c @@ -158,13 +158,15 @@ static void cmd_dump_parsed(

[dpdk-dev] [RFC 4/8] eal: change specific log levels at startup

2017-02-06 Thread Olivier Matz
Example of use: ./app/test-pmd --log-level='pmd\.i40e.*,8' This enables debug logs for all dynamic logs whose type starts with 'pmd.i40e'. Signed-off-by: Olivier Matz --- lib/librte_eal/bsdapp/eal/eal.c| 4 +-- lib/librte_eal/common/eal_common_options.c | 48 +

[dpdk-dev] [RFC 8/8] net/i40e: use dynamic log type for control logs

2017-02-06 Thread Olivier Matz
This is an example of how a dynamic log type can be used in a PMD. Signed-off-by: Olivier Matz --- drivers/net/i40e/i40e_ethdev.c | 18 -- drivers/net/i40e/i40e_fdir.c | 4 drivers/net/i40e/i40e_logs.h | 17 ++--- 3 files changed, 22 insertions(+), 17 deleti

[dpdk-dev] cryptodev - Session and queue pair relationship

2017-02-06 Thread Akhil Goyal
Hi, I have some issues w.r.t the mapping sessions and queue pairs. As per my understanding: - Number of sessions may be large – they are independent of number of queue pairs - Queue pairs are L-core specific - Depending on the implementation, one queue pair can be mapped to many sessions. Or,

Re: [dpdk-dev] [RFC 0/8] eal: dynamic logs

2017-02-06 Thread Bruce Richardson
On Mon, Feb 06, 2017 at 02:29:08PM +0100, Olivier Matz wrote: > The objective of this RFC patchset is to introduce a framework to > support dynamic log types in EAL. It also provides one example of use > (in i40e). > > Features: > - log types are identified by a string > - at registration, a uniq

Re: [dpdk-dev] [PATCH] net/ixgbevf: reset hardware when stopping port

2017-02-06 Thread Olivier Matz
Hi, On Wed, 11 Jan 2017 17:52:04 +0100, Olivier Matz wrote: > From: Guo Fengtian > > When PF triggers a reset, VF port must acknowledge it by calling > ixgbe_reset_hw(). > > Before this patch, the port link status, speed and duplex are invalid > (all set to 0). > > The patch move the call to

Re: [dpdk-dev] [PATCH] net/ixgbevf: fix stats update after a PF reset

2017-02-06 Thread Olivier Matz
Hi, On Wed, 11 Jan 2017 18:04:14 +0100, Olivier Matz wrote: > From: Guo Fengtian > > When PF is set down, in VF, the value of stats register is zero. > So only increase stats when it's non zero. > > Fixes: af75078fece3 ("first public release") > > CC: sta...@dpdk.org > Signed-off-by: Guo Feng

Re: [dpdk-dev] [RFC 0/8] eal: dynamic logs

2017-02-06 Thread Olivier Matz
Hi Bruce, On Mon, 6 Feb 2017 13:49:03 +, Bruce Richardson wrote: > On Mon, Feb 06, 2017 at 02:29:08PM +0100, Olivier Matz wrote: > > The objective of this RFC patchset is to introduce a framework to > > support dynamic log types in EAL. It also provides one example of > > use (in i40e). > >

Re: [dpdk-dev] [RFC 0/8] eal: dynamic logs

2017-02-06 Thread Wiles, Keith
> On Feb 6, 2017, at 8:10 AM, Olivier Matz wrote: > > Hi Bruce, > > On Mon, 6 Feb 2017 13:49:03 +, Bruce Richardson > wrote: >> On Mon, Feb 06, 2017 at 02:29:08PM +0100, Olivier Matz wrote: >>> The objective of this RFC patchset is to introduce a framework to >>> support dynamic log types

[dpdk-dev] [PATCH v1] doc: add distributor library API change notice

2017-02-06 Thread David Hunt
Given that the packet distributor library improvements (1) will not be in 17.02, I plan on doing some consolidation of the API for burst operation for 17.05, merging the two api's into one, with options for single or burst operation. (1) http://dpdk.org/dev/patchwork/patch/19911/ Signed-off-by: D

Re: [dpdk-dev] buf->hash.rss always empty with i40e

2017-02-06 Thread tom . barbette
Hi Konstantin, It seems a little overkill to play with the key... The XL710 seems to be able to hash on IP fields only. It seems only a configuration issue, I'm adding i40e maintainers in CC so they can confirm? I think the i40e driver should configure XL710 to hash on IP fields for TCP and UDP

Re: [dpdk-dev] [RFC 0/8] eal: dynamic logs

2017-02-06 Thread Olivier Matz
On Mon, 6 Feb 2017 15:01:30 +, "Wiles, Keith" wrote: > > On Feb 6, 2017, at 8:10 AM, Olivier Matz > > wrote: > > > > Hi Bruce, > > > > On Mon, 6 Feb 2017 13:49:03 +, Bruce Richardson > > wrote: > >> On Mon, Feb 06, 2017 at 02:29:08PM +0100, Olivier Matz wrote: > >>> The objective o

Re: [dpdk-dev] [PATCH v3 0/3] xen: netfront poll mode driver

2017-02-06 Thread Konrad Rzeszutek Wilk
On Sun, Feb 05, 2017 at 03:44:52PM +0100, Thomas Monjalon wrote: > Hi Jan, > > 2016-03-22 10:55, Jan Blunck: > > v3 changes: > > - removed fake PCI interface > > - removed struct virt_eth_driver > > - check for UIO name and version > > - added basic documentation > > > > Jan Blunck (3): > > xen

Re: [dpdk-dev] [PATCH v2 4/6] net/tap: fix multi-queue support

2017-02-06 Thread Pascal Mazon
On Sun, 5 Feb 2017 10:05:07 -0600 Keith Wiles wrote: > At the same time remove the code which created the first device queue > at probe time. Now all queues are created during queue setup calls. > > Signed-off-by: Keith Wiles > --- > drivers/net/tap/rte_eth_tap.c | 104 > ++---

Re: [dpdk-dev] [RFC 0/8] eal: dynamic logs

2017-02-06 Thread Wiles, Keith
> On Feb 6, 2017, at 9:27 AM, Olivier Matz wrote: > > On Mon, 6 Feb 2017 15:01:30 +, "Wiles, Keith" > wrote: >>> On Feb 6, 2017, at 8:10 AM, Olivier Matz >>> wrote: >>> >>> Hi Bruce, >>> >>> On Mon, 6 Feb 2017 13:49:03 +, Bruce Richardson >>> wrote: On Mon, Feb 06, 2017 at 02

Re: [dpdk-dev] [PATCH v2 6/6] net/tap: link set down must be before close

2017-02-06 Thread Pascal Mazon
On Sun, 5 Feb 2017 10:05:09 -0600 Keith Wiles wrote: > Signed-off-by: Keith Wiles > --- > drivers/net/tap/rte_eth_tap.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c > index 65e4bab..966e91a 100644 > --

Re: [dpdk-dev] [PATCH v2 4/6] net/tap: fix multi-queue support

2017-02-06 Thread Wiles, Keith
> On Feb 6, 2017, at 9:45 AM, Pascal Mazon wrote: > > On Sun, 5 Feb 2017 10:05:07 -0600 > Keith Wiles wrote: > >> At the same time remove the code which created the first device queue >> at probe time. Now all queues are created during queue setup calls. >> >> Signed-off-by: Keith Wiles >>

Re: [dpdk-dev] [PATCH v2 6/6] net/tap: link set down must be before close

2017-02-06 Thread Wiles, Keith
> On Feb 6, 2017, at 9:57 AM, Pascal Mazon wrote: > > Fixes: ee418a25b0d3 ("net/tap: implement link up and down callbacks”) As I need to add these changes I will produce a v3 patch Regards, Keith

Re: [dpdk-dev] [RFC 0/8] eal: dynamic logs

2017-02-06 Thread Olivier Matz
On Mon, 6 Feb 2017 15:55:20 +, "Wiles, Keith" wrote: > > On Feb 6, 2017, at 9:27 AM, Olivier Matz > > wrote: > > > > On Mon, 6 Feb 2017 15:01:30 +, "Wiles, Keith" > > wrote: > >>> On Feb 6, 2017, at 8:10 AM, Olivier Matz > >>> wrote: > >>> > >>> Hi Bruce, > >>> > >>> On Mon, 6 Feb

Re: [dpdk-dev] [PATCH v2] mempool: Introduce _populate_mz_range api

2017-02-06 Thread Olivier Matz
On Tue, 31 Jan 2017 20:02:26 +0530, Santosh Shukla wrote: > Hi Olivier, > > Reply inline. > > On Tue, Jan 31, 2017 at 11:31:51AM +0100, Olivier Matz wrote: > > Hi Santosh, > > > > I guess this patch is targeted for 17.05, right? > > > > Yes. > > > Please see some other comments below. > >

[dpdk-dev] [PATCH] sched: fix segmentation fault when freeing port

2017-02-06 Thread Jan Blunck
From: Alan Dewar Prevent a segmentation fault in rte_sched_port_free by only accessing the port structure after the NULL pointer check has been made. Fixes: 7b3c4f35 ("sched: fix releasing enqueued packets") Signed-off-by: Alan Dewar Signed-off-by: Jan Blunck --- lib/librte_sched/rte_sched.c

Re: [dpdk-dev] [RFC 0/8] eal: dynamic logs

2017-02-06 Thread Wiles, Keith
> On Feb 6, 2017, at 10:18 AM, Olivier Matz wrote: > > On Mon, 6 Feb 2017 15:55:20 +, "Wiles, Keith" > wrote: >>> On Feb 6, 2017, at 9:27 AM, Olivier Matz >>> wrote: >>> >>> On Mon, 6 Feb 2017 15:01:30 +, "Wiles, Keith" >>> wrote: > On Feb 6, 2017, at 8:10 AM, Olivier Matz >>>

Re: [dpdk-dev] [RFC 0/8] mbuf: structure reorganization

2017-02-06 Thread Ananyev, Konstantin
Hi Olivier, Looks good in general, some comments from me below. Thanks Konstantin > > The main changes are: > - reorder structure to increase vector performance on some non-ia > platforms. > - add a 64bits timestamp field in the 1st cache line Wonder why it deserves to be in first cache line?

Re: [dpdk-dev] [PATCH] sched: fix segmentation fault when freeing port

2017-02-06 Thread Dumitrescu, Cristian
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jan Blunck > Sent: Monday, February 6, 2017 5:33 PM > To: dev@dpdk.org > Cc: h.mikit...@gmail.com; Alan Dewar > Subject: [dpdk-dev] [PATCH] sched: fix segmentation fault when freeing port > > From: Alan Dewar >

[dpdk-dev] [PATCH v3 1/7] net/tap: fix tap docs for device name

2017-02-06 Thread Keith Wiles
Signed-off-by: Keith Wiles --- doc/guides/nics/tap.rst | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/guides/nics/tap.rst b/doc/guides/nics/tap.rst index 622b9e7..c4f207b 100644 --- a/doc/guides/nics/tap.rst +++ b/doc/guides/nics/tap.rst @@ -45,18 +45,18

[dpdk-dev] [PATCH v3 2/7] net/tap: remove redundant fds array

2017-02-06 Thread Keith Wiles
Signed-off-by: Keith Wiles --- drivers/net/tap/rte_eth_tap.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c index c7b04bb..6d93eb7 100644 --- a/drivers/net/tap/rte_eth_tap.c +++ b/drivers/net/tap/rte_e

[dpdk-dev] [PATCH v3 3/7] net/tap: remove unused variable and minor cleanup

2017-02-06 Thread Keith Wiles
Signed-off-by: Keith Wiles --- drivers/net/tap/rte_eth_tap.c | 10 +++--- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c index 6d93eb7..61659bc 100644 --- a/drivers/net/tap/rte_eth_tap.c +++ b/drivers/net/tap/rte_eth

[dpdk-dev] [PATCH v3 4/7] net/tap: fix multi-queue support

2017-02-06 Thread Keith Wiles
At the same time remove the code which created the first device queue at probe time. Now all queues are created during queue setup calls. Signed-off-by: Keith Wiles --- drivers/net/tap/rte_eth_tap.c | 104 ++ 1 file changed, 34 insertions(+), 70 deletions(

[dpdk-dev] [PATCH v3 5/7] net/tap: cleanup log messages

2017-02-06 Thread Keith Wiles
Signed-off-by: Keith Wiles --- drivers/net/tap/rte_eth_tap.c | 54 ++- 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c index 7c923a2..65e4bab 100644 --- a/drivers/net/tap/rte_eth_

[dpdk-dev] [PATCH v3 6/7] net/tap: link set down must be done before close

2017-02-06 Thread Keith Wiles
Fixes: ee418a25b0d3 ("net/tap: implement link up and down callbacks") Signed-off-by: Keith Wiles --- drivers/net/tap/rte_eth_tap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c index 65e4bab..966e91a 100644 ---

[dpdk-dev] [PATCH v3 7/7] net/tap: move closing fds to pmd close from pmd stop

2017-02-06 Thread Keith Wiles
At the same time remove closing fds code from pmd stop routine. Signed-off-by: Keith Wiles --- drivers/net/tap/rte_eth_tap.c | 18 +++--- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c index 966e91a..0a7f4a

[dpdk-dev] i40e and memory allocations restricted on node 1

2017-02-06 Thread Ivan Nardi
Hi With dpdk 17.02-rc2 i40e driver doesn't load at all when memory allocation is restricted on numa node 1 (on system with more than 1 node, obviously) [root@micro ~]# /tmp/testpmd -d /home/micro/lib/librte_pmd_i40e.so -c 0xFFFC000 -w :81:00.0 -w :81:00.1 -n 4 --socket-mem=0,8192 -- -i -

Re: [dpdk-dev] i40e_aq_get_phy_capabilities() fails when using SFP+ with no link

2017-02-06 Thread Ivan Nardi
Thanks for the suggestions! I'll try them and I will report back the results in the next days. Regards Ivan On 6 February 2017 at 02:04, Zhang, Qi Z wrote: > Hi Ivan: > > I'm looking at this issue, but I can't repeat it on my environment > both with X710x4 and XL710x1 > Not sure

Re: [dpdk-dev] [PATCH] doc: add known issue for virtio TSO with clones

2017-02-06 Thread Stephen Hemminger
On Mon, 6 Feb 2017 14:16:53 +0100 Olivier Matz wrote: > +**Implication**: > + In this situation, the shared data will be modified by the driver, > + potentially causing race conditions with the other users of the mbuf > + data. This is a driver bug! The driver must check for refcount and

Re: [dpdk-dev] bnx2x and VFIO

2017-02-06 Thread Harish Patil
> >This PMD driver doesn't seem to work with VFIO. I haven't had time >to look into it very closely, so I was going to ask here first just >in case someone had any ideas why this might be the case. Thanks >for any pointers here! > Hi Chas, Yes its a known issue - we haven’t looked at it yet, but

Re: [dpdk-dev] 17.02-rc2: i40e and LSC

2017-02-06 Thread Zhang, Qi Z
Hi Ivan: This is a bug and is fixed with below patch http://dpdk.org/dev/patchwork/patch/20163/ Regards Qi > -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ivan Nardi > Sent: Monday, February 6, 2017 9:13 PM > To: dev@dpdk.org > Subject: [dpdk-dev

Re: [dpdk-dev] i40e and memory allocations restricted on node 1

2017-02-06 Thread Zhang, Helin
> -Original Message- > From: Ivan Nardi [mailto:nardi.i...@gmail.com] > Sent: Tuesday, February 7, 2017 5:04 AM > To: dev@dpdk.org > Cc: Zhang, Helin; Wu, Jingjing > Subject: i40e and memory allocations restricted on node 1 > > Hi > With dpdk 17.02-rc2 i40e driver doesn't load at all whe

Re: [dpdk-dev] buf->hash.rss always empty with i40e

2017-02-06 Thread Zhang, Helin
Hi Tom Sorry, by default, i40e HW is a bit different from ixgbe HW. It will not treat UDP as an IP packet, when setting hash enable flags. But, a feature of configuring 'input set' can help to change the default HW behavior. Please refer to testpmd input set part to understand how to use that.

Re: [dpdk-dev] [PATCH v2 3/5] net/ixgbe: fix bitmask of supported Tx flags

2017-02-06 Thread Wu, Jingjing
> -Original Message- > From: Ananyev, Konstantin > Sent: Monday, February 6, 2017 8:11 PM > To: Wu, Jingjing ; dev@dpdk.org > Subject: RE: [dpdk-dev] [PATCH v2 3/5] net/ixgbe: fix bitmask of supported > Tx flags > > > > > -Original Message- > > From: Wu, Jingjing > > Sent: Mond

Re: [dpdk-dev] [PATCH v2 2/5] net/i40e: fix bitmask of supported Tx flags

2017-02-06 Thread Wu, Jingjing
> -Original Message- > From: Olivier Matz [mailto:olivier.m...@6wind.com] > Sent: Monday, February 6, 2017 6:29 PM > To: Wu, Jingjing > Cc: Yigit, Ferruh ; dev@dpdk.org; Zhang, Helin > > Subject: Re: [dpdk-dev] [PATCH v2 2/5] net/i40e: fix bitmask of supported Tx > flags > > On Mon, 6

Re: [dpdk-dev] [PATCH v2 2/5] net/i40e: fix bitmask of supported Tx flags

2017-02-06 Thread Wu, Jingjing
> -Original Message- > From: Olivier Matz [mailto:olivier.m...@6wind.com] > Sent: Monday, February 6, 2017 6:27 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Zhang, Helin ; Ananyev, > Konstantin ; Yigit, Ferruh > > Subject: Re: [dpdk-dev] [PATCH v2 2/5] net/i40e: fix bitmask of supported Tx

[dpdk-dev] [PATCH] cfgfile: fix uninitialized variable on load error

2017-02-06 Thread Dmitriy Yakovlev
Uninitialized scalar variable. Using uninitialized value cfg->sections[curr_section]->num_entries when calling rte_cfgfile_close. And memory in variables cfg->sections[curr_section], sect->entries[curr_entry] maybe not equal NULL. We must decrement counters curr_section, curr_entry when failed t

[dpdk-dev] [PATCH v3 0/4] fix bitmask of supported Tx flags

2017-02-06 Thread Jingjing Wu
Some Tx offload flags are missed in bitmask of all supported packet Tx flags, it will cause rte_eth_tx_prepare fails when Tx burst packets. v3 changes: - add PKT_TX_MACSEC to PKT_TX_OFFLOAD_MASK - refine code of drivers' TX_OFFLOAD_MASK definition v2 changes: - redefine the PKT_TX_OFFLOAD_MASK

[dpdk-dev] [PATCH v3 2/4] net/ixgbe: fix bitmask of supported Tx flags

2017-02-06 Thread Jingjing Wu
Add missed PKT_TX_IEEE1588_TMST to bitmask of all supported packet Tx flags. Fixes: 7829b8d52be0 ("net/ixgbe: add Tx preparation") Signed-off-by: Jingjing Wu --- drivers/net/ixgbe/ixgbe_rxtx.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/ixgbe_rxtx

[dpdk-dev] [PATCH v3 1/4] net/i40e: fix bitmask of supported Tx flags

2017-02-06 Thread Jingjing Wu
PKT_TX_TUNNEL_MASK and PKT_TX_IEEE1588_TMST are missed in bitmask of all supported packet Tx flags by i40e. It will cause packet preparing fail when sending tunnel packets with Tx offload. This patch fixes it. Fixes: 3f33e643e5c6 ("net/i40e: add Tx preparation") Signed-off-by: Jingjing Wu --- dr

[dpdk-dev] [PATCH v3 3/4] net/e1000: fix bitmask of supported Tx flags

2017-02-06 Thread Jingjing Wu
Add missed PKT_TX_IEEE1588_TMST to bitmask of all supported packet Tx flags. Fixes: 2b76648872c9 ("net/e1000: add Tx preparation") Signed-off-by: Jingjing Wu --- drivers/net/e1000/igb_rxtx.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/drivers/net/e1000/igb_rxtx.c b

[dpdk-dev] [PATCH v3 4/4] mbuf: fix bitmask of Tx offload flags

2017-02-06 Thread Jingjing Wu
Add missed PKT_TX_MACSEC flag to bitmask of all supported packet Tx offload features flags. Fixes: 4fb7e803eb1a ("ethdev: add Tx preparation") Signed-off-by: Jingjing Wu --- lib/librte_mbuf/rte_mbuf.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/librte_mbuf/rte_mbuf.

[dpdk-dev] [PATCH] net/i40e: fix ethertype filter func fail on X722

2017-02-06 Thread Jeff Guo
The GL_SWR_PRI_JOIN_MAP registers are affecting filters hit, modify the register default value will result the ethertype filter function fail. The GL_SWR_PRI_JOIN_MAP value is difference between different NICs, should keep up the register value with default NVM value in X722. Fixes: 973273c7a4b7 (

Re: [dpdk-dev] [PATCH v2] mempool: Introduce _populate_mz_range api

2017-02-06 Thread Santosh Shukla
Hi Olivier, On Mon, Feb 06, 2017 at 06:01:15PM +0100, Olivier Matz wrote: > On Tue, 31 Jan 2017 20:02:26 +0530, Santosh Shukla > wrote: > > Hi Olivier, > > > > Reply inline. > > > > On Tue, Jan 31, 2017 at 11:31:51AM +0100, Olivier Matz wrote: > > > Hi Santosh, > > > > > > I guess this patch i

Re: [dpdk-dev] [PATCH v4 1/6] eventdev: introduce event driven programming model

2017-02-06 Thread Jerin Jacob
On Fri, Feb 03, 2017 at 04:28:15PM +0530, Hemant Agrawal wrote: > On 2/3/2017 12:08 PM, Nipun Gupta wrote: > > > > > -Original Message- > > > > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jerin Jacob > > > > > Sent: Wednesday, December 21, 2016 14:55 > > > > > To: dev@dpdk.org >

Re: [dpdk-dev] [RFC] Add GRO support in DPDK

2017-02-06 Thread Jiayu Hu
On Wed, Jan 25, 2017 at 05:51:50PM +0800, Ananyev, Konstantin wrote: > > > > -Original Message- > > From: Wiles, Keith > > Sent: Wednesday, January 25, 2017 3:40 AM > > To: Stephen Hemminger > > Cc: Ananyev, Konstantin ; Hu, Jiayu > > ; dev@dpdk.org; Kinsella, Ray > > ; Gilmore, Walter

[dpdk-dev] [PATCH] doc: announce ixgbe MTU setting limitation

2017-02-06 Thread Wenzhuo Lu
Signed-off-by: Wenzhuo Lu --- doc/guides/nics/ixgbe.rst | 16 ++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/doc/guides/nics/ixgbe.rst b/doc/guides/nics/ixgbe.rst index 3b6851b..1f7d6b3 100644 --- a/doc/guides/nics/ixgbe.rst +++ b/doc/guides/nics/ixgbe.rst @@ -185

Re: [dpdk-dev] [PATCH v2 02/15] eventdev: add APIs for extended stats

2017-02-06 Thread Jerin Jacob
On Mon, Feb 06, 2017 at 10:37:31AM +, Van Haaren, Harry wrote: > > -Original Message- > > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > > Sent: Monday, February 6, 2017 8:23 AM > > To: Van Haaren, Harry > > Cc: dev@dpdk.org; Richardson, Bruce > > Subject: Re: [PATCH v2 0

[dpdk-dev] [PATCH v3] net/ixgbe: clean up rte_eth_dev_info_get

2017-02-06 Thread Wenzhuo Lu
It's not appropriate to call rte_eth_dev_info_get in PMD, as rte_eth_dev_info_get need to get info from PMD. Remove rte_eth_dev_info_get from PMD code and get the info directly. Signed-off-by: Wenzhuo Lu --- v2: - change is_ixgbe_pmd to is_device_supported to make it more generic. v3: - minor cha

Re: [dpdk-dev] [PATCH v2 07/15] event/sw: add support for event queues

2017-02-06 Thread Jerin Jacob
On Mon, Feb 06, 2017 at 10:25:18AM +, Van Haaren, Harry wrote: > > -Original Message- > > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > > Sent: Monday, February 6, 2017 9:25 AM > > To: Van Haaren, Harry > > Cc: dev@dpdk.org; Richardson, Bruce > > Subject: Re: [PATCH v2 0

Re: [dpdk-dev] [RFC] lib/librte_ether: consistent PMD batching behavior

2017-02-06 Thread Yang, Zhiyong
Hi, Adrien: Sorry for the late reply due to Chinese new year. > -Original Message- > From: Adrien Mazarguil [mailto:adrien.mazarg...@6wind.com] > Sent: Tuesday, January 24, 2017 12:36 AM > To: Richardson, Bruce > Cc: Ananyev, Konstantin ; Andrew > Rybchenko ; Yang, Zhiyong > ; d