[dpdk-dev] [PATCH v2 00/22] vhost: generic vhost API

2017-03-23 Thread Yuanhan Liu
This patchset makes DPDK vhost library be generic enough, so that we could build other vhost-user drivers on top of it. For example, SPDK (Storage Performance Development Kit) is trying to enable vhost-user SCSI. The basic idea is, let DPDK vhost be a vhost-user agent. It stores all the info about

[dpdk-dev] [PATCH v2 01/22] vhost: introduce driver features related APIs

2017-03-23 Thread Yuanhan Liu
Introduce few APIs to set/get/enable/disable driver features. Signed-off-by: Yuanhan Liu Reviewed-by: Maxime Coquelin --- doc/guides/prog_guide/vhost_lib.rst| 10 +++- lib/librte_vhost/rte_vhost_version.map | 4 ++ lib/librte_vhost/rte_virtio_net.h | 51 +++ lib/librte

[dpdk-dev] [PATCH v2 03/22] vhost: use new APIs to handle features

2017-03-23 Thread Yuanhan Liu
Signed-off-by: Yuanhan Liu --- examples/tep_termination/main.c| 4 +++- examples/vhost/main.c | 43 +- lib/librte_vhost/rte_vhost_version.map | 3 --- lib/librte_vhost/rte_virtio_net.h | 13 -- lib/librte_vhost/socket.c

[dpdk-dev] [PATCH v2 02/22] net/vhost: remove feature related APIs

2017-03-23 Thread Yuanhan Liu
The rte_eth_vhost_feature_disable/enable/get APIs are just a wrapper of rte_vhost_feature_disable/enable/get. However, the later are going to be refactored; it's going to take an extra parameter (socket_file path), to let it be per-device. Instead of changing those vhost-pmd APIs to adapt to the n

[dpdk-dev] [PATCH v2 04/22] vhost: make notify ops per vhost driver

2017-03-23 Thread Yuanhan Liu
Assume there is an application both support vhost-user net and vhost-user scsi, the callback should be different. Making notify ops per vhost driver allow application define different set of callbacks for different driver. Signed-off-by: Yuanhan Liu --- v2: - check the return value of callback_r

[dpdk-dev] [PATCH v2 06/22] vhost: introduce API to fetch negotiated features

2017-03-23 Thread Yuanhan Liu
Signed-off-by: Yuanhan Liu --- lib/librte_vhost/rte_vhost_version.map | 2 ++ lib/librte_vhost/rte_virtio_net.h | 10 ++ lib/librte_vhost/vhost.c | 12 3 files changed, 24 insertions(+) diff --git a/lib/librte_vhost/rte_vhost_version.map b/lib/librte_vho

[dpdk-dev] [PATCH v2 05/22] vhost: export guest memory regions

2017-03-23 Thread Yuanhan Liu
Some vhost-user driver may need this info to setup its own page tables for GPA (guest physical addr) to HPA (host physical addr) translation. SPDK (Storage Performance Development Kit) is one example. Besides, by exporting this memory info, we could also export the gpa_to_vva() as an inline functi

[dpdk-dev] [PATCH v2 08/22] vhost: export API to translate gpa to vva

2017-03-23 Thread Yuanhan Liu
Signed-off-by: Yuanhan Liu Reviewed-by: Maxime Coquelin --- lib/librte_vhost/rte_vhost_version.map | 1 + lib/librte_vhost/rte_virtio_net.h | 28 lib/librte_vhost/vhost.h | 19 --- lib/librte_vhost/virtio_net.c | 23 ++

[dpdk-dev] [PATCH v2 07/22] vhost: export vhost vring info

2017-03-23 Thread Yuanhan Liu
Signed-off-by: Yuanhan Liu --- v2: - fix off-by-one check - add API comments --- lib/librte_vhost/rte_vhost_version.map | 1 + lib/librte_vhost/rte_virtio_net.h | 26 ++ lib/librte_vhost/vhost.c | 30 ++ lib/librte_vhost

[dpdk-dev] [PATCH v2 09/22] vhost: turn queue pair to vring

2017-03-23 Thread Yuanhan Liu
The queue pair is very virtio-net specific, other devices don't have such concept. To make it generic, we should log the number of vrings instead of the number of queue pairs. This patch just does a simple convert, a later patch would export the number of vrings to applications. Signed-off-by: Yu

[dpdk-dev] [PATCH v2 10/22] vhost: export the number of vrings

2017-03-23 Thread Yuanhan Liu
We used to use rte_vhost_get_queue_num() for telling how many vrings. However, the return value is the number of "queue pairs", which is very virtio-net specific. To make it generic, we should return the number of vrings instead, and let the driver do the proper translation. Say, virtio-net driver

[dpdk-dev] [PATCH v2 14/22] vhost: rename device ops struct

2017-03-23 Thread Yuanhan Liu
rename "virtio_net_device_ops" to "vhost_device_ops", to not let it be virtio-net specific. Signed-off-by: Yuanhan Liu Reviewed-by: Maxime Coquelin --- doc/guides/prog_guide/vhost_lib.rst| 2 +- doc/guides/rel_notes/release_17_05.rst | 3 +++ drivers/net/vhost/rte_eth_vhost.c | 2 +- e

[dpdk-dev] [PATCH v2 11/22] vhost: move the device ready check at proper place

2017-03-23 Thread Yuanhan Liu
Currently, we check vq->desc, vq->kickfd and vq->callfd to know whether a virtio device is ready or not. However, we only do it when handling SET_VRING_KICK message, which could be wrong if a vhost-user frontend send SET_VRING_KICK first and SET_VRING_CALL later. To work for all possible vhost-use

[dpdk-dev] [PATCH v2 12/22] vhost: drop the Rx and Tx queue macro

2017-03-23 Thread Yuanhan Liu
They are virtio-net specific and should be defined inside the virtio-net driver. Signed-off-by: Yuanhan Liu Reviewed-by: Maxime Coquelin --- v2: - update release note --- doc/guides/rel_notes/release_17_05.rst | 6 ++ drivers/net/vhost/rte_eth_vhost.c | 2 ++ examples/tep_termination/

[dpdk-dev] [PATCH v2 13/22] vhost: do not include net specific headers

2017-03-23 Thread Yuanhan Liu
Include it internally, at vhost.h. Signed-off-by: Yuanhan Liu Reviewed-by: Maxime Coquelin --- v2: - update release note --- doc/guides/rel_notes/release_17_05.rst | 7 +++ examples/vhost/main.h | 2 ++ lib/librte_vhost/rte_virtio_net.h | 4 lib/librte_vhost/vhos

[dpdk-dev] [PATCH v2 16/22] vhost: add features changed callback

2017-03-23 Thread Yuanhan Liu
Features could be changed after the feature negotiation. For example, VHOST_F_LOG_ALL will be set/cleared at the start/end of live migration, respecitively. Thus, we need a new callback to inform the application on such change. Signed-off-by: Yuanhan Liu --- doc/guides/prog_guide/vhost_lib.rst |

[dpdk-dev] [PATCH v2 15/22] vhost: rename virtio-net to vhost

2017-03-23 Thread Yuanhan Liu
Rename "virtio-net" to "vhost" in the API comments and vhost prog guide. Signed-off-by: Yuanhan Liu Reviewed-by: Maxime Coquelin --- doc/guides/prog_guide/vhost_lib.rst | 6 +++--- lib/librte_vhost/rte_virtio_net.h | 14 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff

[dpdk-dev] [PATCH v2 19/22] vhost: rename header file

2017-03-23 Thread Yuanhan Liu
Rename "rte_virtio_net.h" to "rte_vhost.h", to not let it be virtio net specific. Signed-off-by: Yuanhan Liu Reviewed-by: Maxime Coquelin --- doc/guides/rel_notes/deprecation.rst | 9 - doc/guides/rel_notes/release_17_05.rst | 3 + drivers/net/vhost/rte_eth_vhost.c | 2 +- drivers/

[dpdk-dev] [PATCH v2 20/22] vhost: workaround the build dependency on mbuf header

2017-03-23 Thread Yuanhan Liu
rte_mbuf struct is something more likely will be used only in vhost-user net driver, while we have made vhost-user generic enough that it can be used for implementing other drivers (such as vhost-user SCSI), they have also include . Otherwise, the build will be broken. We could workaround it by us

[dpdk-dev] [PATCH v2 17/22] vhost: export APIs for live migration support

2017-03-23 Thread Yuanhan Liu
Export few APIs for the vhost-user driver to log the guest memory writes, which is a must for live migration support. This patch basically moves vhost_log_write() and vhost_log_used_vring() into vhost.h and then add an wrapper (the public API) to them. Signed-off-by: Yuanhan Liu --- lib/librte_

[dpdk-dev] [PATCH v2 18/22] vhost: introduce API to start a specific driver

2017-03-23 Thread Yuanhan Liu
We used to use rte_vhost_driver_session_start() to trigger the vhost-user session. It takes no argument, thus it's a global trigger. And it could be problematic. The issue is, currently, rte_vhost_driver_register(path, flags) actually tries to put it into the session loop (by fdset_add). However,

[dpdk-dev] [PATCH v2 21/22] vhost: do not destroy device on repeat mem table message

2017-03-23 Thread Yuanhan Liu
It doesn't make any sense to invoke destroy_device() callback at while handling SET_MEM_TABLE message. >From the vhost-user spec, it's the GET_VRING_BASE message indicates the end of a vhost device: the destroy_device() should be invoked from there (luckily, we already did that). Signed-off-by: Y

[dpdk-dev] [PATCH v2 22/22] examples/vhost: demonstrate the new generic vhost APIs

2017-03-23 Thread Yuanhan Liu
Now DPDK vhost lib has been generic enough, that it can be used to implement any vhost-user drivers. For example, this patch implements a very simple vhost-user net driver, mainly for demonstrating how to use those generic vhost APIs. And when the --builtin-net-driver option is used, the example

[dpdk-dev] [PATCH v2 1/2] cryptodev: add api for attach-detach session with queue pair

2017-03-23 Thread akhil.goyal
From: Akhil Goyal HW based crypto drivers may only support limited number of sessions per queue pair. This requires support for attaching sessions to specific queue pair. New APIs are introduced to attach/detach a session with/from a particular queue pair. These are optional APIs. Application

[dpdk-dev] [PATCH v2 2/2] examples/ipsec-secgw: attach session-qp

2017-03-23 Thread akhil.goyal
From: Akhil Goyal adding support for attaching session to queue pairs. This is required as underlying crypto driver may only support limited number of sessions per queue pair if max_nb_sessions_per_qp > 0, session should be attached to a particular qp. Signed-off-by: Akhil Goyal --- examples/i

[dpdk-dev] [PATCH v7 1/4] net/tap: move private elements to external header

2017-03-23 Thread Pascal Mazon
In the next patch, access to struct pmd_internals will be necessary in tap_flow.c to store the flows. Signed-off-by: Pascal Mazon Acked-by: Olga Shern Acked-by: Keith Wiles --- drivers/net/tap/Makefile | 1 + drivers/net/tap/rte_eth_tap.c | 36 ++--- drivers/net/tap/rte_e

[dpdk-dev] [PATCH v7 3/4] net/tap: add netlink back-end for flow API

2017-03-23 Thread Pascal Mazon
Each kernel netdevice may have queueing disciplines set for it, which determine how to handle the packet (mostly on egress). That's part of the TC (Traffic Control) mechanism. Through TC, it is possible to set filter rules that match specific packets, and act according to what is in the rule. This

[dpdk-dev] [PATCH v7 0/4] net/tap: support flow API

2017-03-23 Thread Pascal Mazon
This series adds support for the flow API in tap PMD. It enables filtering specific packets incoming on the tap netdevice, to process only desired ones. Under the hood, it uses kernel TC (traffic control), which takes place very early in the stack, and supports most common pattern items and action

[dpdk-dev] [PATCH v7 2/4] net/tap: add preliminary support for rte_flow

2017-03-23 Thread Pascal Mazon
The flow API provides the ability to classify packets received by a tap netdevice. This patch only implements skeleton functions for flow API support, no patterns are supported yet. Signed-off-by: Pascal Mazon Acked-by: Olga Shern Acked-by: Keith Wiles --- doc/guides/nics/features/tap.ini |

[dpdk-dev] [PATCH v7 4/4] net/tap: add basic flow API patterns and actions

2017-03-23 Thread Pascal Mazon
Supported flow rules are now mapped to TC rules on the tap netdevice. The netlink message used for creating the TC rule is stored in struct rte_flow. That way, by simply changing a metadata in it, we can require for the rule deletion without further parsing. Supported items: - eth: src and dst (wi

[dpdk-dev] [PATCH v6 0/1] net/tap: remote netdevice traffic capture

2017-03-23 Thread Pascal Mazon
This patchset adds the special "remote" feature to the tap PMD, that actually enables capturing traffic from another netdevice. This is especially useful to get packets into the DPDK app, when the remote netdevice has no DPDK support. The "remote" feature requires flow API support as flow rules wi

Re: [dpdk-dev] [PATCH] doc: reformat crypto drivers overview

2017-03-23 Thread Mcnamara, John
> -Original Message- > From: De Lara Guarch, Pablo > Sent: Wednesday, March 22, 2017 4:15 PM > To: Mcnamara, John > Cc: Trahe, Fiona ; dev@dpdk.org; De Lara Guarch, > Pablo > Subject: [PATCH] doc: reformat crypto drivers overview > > Follow the approach in the network devices overview,

[dpdk-dev] [PATCH v6 1/1] net/tap: add remote netdevice traffic capture

2017-03-23 Thread Pascal Mazon
By default, a tap netdevice is of no use when not fed by a separate process. The ability to automatically feed it from another netdevice allows applications to capture any kind of traffic normally destined to the kernel stack. This patch implements this ability through a new optional "remote" para

[dpdk-dev] [PATCH] net/sfc: fix incorrect rebase during development

2017-03-23 Thread Andrew Rybchenko
Patch which factors out libefx-based Tx datapath was incorrectly rebased during development over patch which removes RTE_LIBRTE_SFC_EFX_TSO config option. Fixes: c5a7da9b5d10 ("net/sfc: factor out libefx-based Tx datapath") Signed-off-by: Andrew Rybchenko --- Please, squash the patch into c5a7da

[dpdk-dev] [PATCH v3 0/5] pipeline personalization profile support

2017-03-23 Thread Beilei Xing
Due to limited resources of X*710 (parser and analyzer configuration tables, number of packet classification types, number of packet types, filters configuration tables, etc.), it's impossible to simultaneously support all protocols/filters required for different parts on network. To enable protoco

[dpdk-dev] [PATCH v3 2/5] app/testpmd: add command for loading a profile

2017-03-23 Thread Beilei Xing
This patch is to add testpmd CLI for loading a pipeline personalization profile. Signed-off-by: Beilei Xing --- app/test-pmd/cmdline.c | 73 + app/test-pmd/config.c | 67 + app/test-pmd/testpmd.h

[dpdk-dev] [PATCH v3 4/5] app/testpmd: add command for getting loaded profiles

2017-03-23 Thread Beilei Xing
This patch is to add testpmd CLI for getting all loaded profiles. Signed-off-by: Beilei Xing --- app/test-pmd/cmdline.c | 89 ++ app/test-pmd/testpmd.h | 22 + 2 files changed, 111 insertions(+) diff --git a/app/test-pmd/cmdline.c b/ap

[dpdk-dev] [PATCH v3 3/5] net/i40e: add get all loaded profiles

2017-03-23 Thread Beilei Xing
This patch is to add get all loaded profiles function. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c| 28 drivers/net/i40e/rte_pmd_i40e.h | 12 drivers/net/i40e/rte_pmd_i40e_version.map | 1 + 3 files changed, 41 in

[dpdk-dev] [PATCH v3 1/5] net/i40e: add pipeline personalization profile processing

2017-03-23 Thread Beilei Xing
Add support for adding or removing a pipeline personalization profile package. Signed-off-by: Beilei Xing --- app/test-pmd/cmdline.c| 1 + drivers/net/i40e/i40e_ethdev.c| 200 ++ drivers/net/i40e/i40e_ethdev.h| 5 + driv

[dpdk-dev] [PATCH v3 5/5] doc: add pipeline personalization profile support for i40e

2017-03-23 Thread Beilei Xing
Signed-off-by: Beilei Xing --- doc/guides/rel_notes/release_17_05.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/release_17_05.rst b/doc/guides/rel_notes/release_17_05.rst index 3e48224..f17e03b 100644 --- a/doc/guides/rel_notes/release_17_05.rst +++ b/doc/guide

Re: [dpdk-dev] [PATCH 0/7] net/i40e: base code update

2017-03-23 Thread Ferruh Yigit
On 3/23/2017 1:26 AM, Wu, Jingjing wrote: > > >> -Original Message- >> From: Yigit, Ferruh >> Sent: Wednesday, March 22, 2017 10:29 PM >> To: Wu, Jingjing ; dev@dpdk.org >> Cc: Zhang, Helin ; Xing, Beilei >> >> Subject: Re: [dpdk-dev] [PATCH 0/7] net/i40e: base code update >> >> On 3/22

Re: [dpdk-dev] [PATCH 01/39] eventdev: update PMD dequeue timeout conversion callback

2017-03-23 Thread Jerin Jacob
On Wed, Mar 15, 2017 at 05:27:15PM +, Van Haaren, Harry wrote: > > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > > Sent: Friday, March 3, 2017 5:28 PM > > To: dev@dpdk.org > > Subject: [dpdk-dev] [PATCH 01/39] eventdev: update PMD dequeue timeout > > conversion > > callback > >

Re: [dpdk-dev] [PATCH 02/39] app/test: fix eventdev reconfigure test

2017-03-23 Thread Jerin Jacob
On Wed, Mar 15, 2017 at 05:28:35PM +, Van Haaren, Harry wrote: > > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > > Sent: Friday, March 3, 2017 5:28 PM > > To: dev@dpdk.org > > Subject: [dpdk-dev] [PATCH 02/39] app/test: fix eventdev reconfigure test > > > > Minimum value of nb_ev

Re: [dpdk-dev] [PATCH v2] eventdev: remove default queue overriding

2017-03-23 Thread Jerin Jacob
On Tue, Mar 21, 2017 at 01:51:45PM +0530, Jerin Jacob wrote: > On Fri, Mar 10, 2017 at 03:19:15PM +, Harry van Haaren wrote: > > PMDs that only do a specific type of scheduling cannot provide > > CFG_ALL_TYPES, so the Eventdev infrastructure should not demand > > that every PMD supports CFG_ALL

Re: [dpdk-dev] [PATCH v4 02/17] app/test: eventdev link all queues before start

2017-03-23 Thread Jerin Jacob
On Mon, Mar 20, 2017 at 10:16:04AM +0530, Jerin Jacob wrote: > On Fri, Mar 10, 2017 at 07:43:17PM +, Harry van Haaren wrote: > > The software eventdev can lock-up if not all queues are > > linked to a port. For this reason, the software evendev > > fails to start if queues are not linked to any

Re: [dpdk-dev] [PATCH v4 04/17] eventdev: add APIs for extended stats

2017-03-23 Thread Jerin Jacob
On Fri, Mar 17, 2017 at 05:52:28PM +0530, Jerin Jacob wrote: > On Fri, Mar 10, 2017 at 07:43:19PM +, 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

Re: [dpdk-dev] [PATCH 0/5] add device removal event

2017-03-23 Thread Gaetan Rivet
Hi all, Following the discussion that took place during the tech board meeting, it seems that some clarification and some additional discussion is needed about this series. As of now, what I plan to do is to: 1. Rebase this series upon the bus framework [1][2][3]. 2. Write further documentation

Re: [dpdk-dev] [PATCH v2 2/2] examples/ipsec-secgw: attach session-qp

2017-03-23 Thread Sergio Gonzalez Monroy
That was simpler than I thought. For some reason I understood that the device will support thousands of queues and single session per queue which would have needed more app changes. On 23/03/2017 08:06, akhil.go...@nxp.com wrote: From: Akhil Goyal adding support for attaching session to qu

Re: [dpdk-dev] [PATCH] net/sfc: fix incorrect rebase during development

2017-03-23 Thread Ferruh Yigit
On 3/23/2017 8:24 AM, Andrew Rybchenko wrote: > Patch which factors out libefx-based Tx datapath was incorrectly > rebased during development over patch which removes > RTE_LIBRTE_SFC_EFX_TSO config option. > > Fixes: c5a7da9b5d10 ("net/sfc: factor out libefx-based Tx datapath") > > Signed-off-by

Re: [dpdk-dev] [PATCH v2 2/2] examples/ipsec-secgw: attach session-qp

2017-03-23 Thread Akhil Goyal
On 3/23/2017 4:00 PM, Sergio Gonzalez Monroy wrote: That was simpler than I thought. For some reason I understood that the device will support thousands of queues and single session per queue which would have needed more app changes. On 23/03/2017 08:06, akhil.go...@nxp.com wrote: From: Akhil

Re: [dpdk-dev] [PATCH v7 1/3] ethdev: new API to free consumed buffers in Tx ring

2017-03-23 Thread Olivier MATZ
Hi Billy, On Wed, 15 Mar 2017 14:02:24 -0400, Billy McFall wrote: > Add a new API to force free consumed buffers on Tx ring. API will return > the number of packets freed (0-n) or error code if feature not supported > (-ENOTSUP) or input invalid (-ENODEV). > > Signed-off-by: Billy McFall > ---

Re: [dpdk-dev] [PATCH v2 2/2] examples/ipsec-secgw: attach session-qp

2017-03-23 Thread Sergio Gonzalez Monroy
On 23/03/2017 10:38, Akhil Goyal wrote: On 3/23/2017 4:00 PM, Sergio Gonzalez Monroy wrote: That was simpler than I thought. For some reason I understood that the device will support thousands of queues and single session per queue which would have needed more app changes. On 23/03/2017 08:06,

[dpdk-dev] [PATCH v2 0/4] Rework tunnel filter functions

2017-03-23 Thread Beilei Xing
1. Rework tunnel filter functions to align with the new added cloud filer command buffer structure. 2. Support tunnel filter to VF for consistent filter API. v2 changes: Remove replace cloud filter function as it's in share code. Beilei Xing (4): net/i40e: rework tunnel filter functions n

[dpdk-dev] [PATCH v2 1/4] net/i40e: rework tunnel filter functions

2017-03-23 Thread Beilei Xing
Rework tunnel filter functions to align with the new command buffer for add/remove cloud filter. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c | 100 +++-- drivers/net/i40e/i40e_ethdev.h | 1 + drivers/net/i40e/i40e_flow.c | 28 +++

[dpdk-dev] [PATCH v2 4/4] net/i40e: refine consistent tunnel filter

2017-03-23 Thread Beilei Xing
Add i40e_tunnel_type enumeration type to refine consistent tunnel filter, it will be esay to add new tunnel type for i40e. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c | 8 drivers/net/i40e/i40e_ethdev.h | 18 -- drivers/net/i40e/i40e_flow.c | 6 +++-

[dpdk-dev] [PATCH v2 3/4] net/i40e: support tunnel filter to VF

2017-03-23 Thread Beilei Xing
Previously, only tunnel filter to PF is supported. This patch adds i40e_dev_consistent_tunnel_filter_set function for consistent filter API to support tunnel filter to VF. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c | 145 + drivers/net/i

[dpdk-dev] [PATCH v2 2/4] net/i40e: change tunnel filter function name

2017-03-23 Thread Beilei Xing
Change tunnel filter function name to VXLAN filter function, prepare for other tunnel filter function. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_flow.c | 58 1 file changed, 21 insertions(+), 37 deletions(-) diff --git a/drivers/net/i40e/i

[dpdk-dev] Minutes of tech-board meeting 2017-03-20

2017-03-23 Thread Ananyev, Konstantin
Hi, Below are the minutes of the last DPDK technical board meeting that occurred at 2017-03-20. Please note that meetings are open to all to attend. The next meeting is planned for the first week of April, any topics to be referred to the tech board for discussion at that meeting should be emai

[dpdk-dev] [PATCH v2 0/3] add support for MPLS tunnel filter

2017-03-23 Thread Beilei Xing
This patchset adds support for MPLSoGRE and MPLSoUDP tunnel filters. I40e NICs can't recongnize MPLS tunnel packets by default, so need to load a profile to FW first, then MPLS tunnel packets can be recongnized with packet type 61 and 63. It depends on pipeline personalization profile support and c

[dpdk-dev] [PATCH v2 1/3] app/testpmd: add support for MPLS and GRE items

2017-03-23 Thread Beilei Xing
This patch adds sopport for MPLS and GRE items to generic filter API. Signed-off-by: Beilei Xing --- app/test-pmd/cmdline_flow.c | 46 + app/test-pmd/config.c | 2 ++ doc/guides/prog_guide/rte_flow.rst | 20 +++--

[dpdk-dev] [PATCH v2 2/3] net/i40e: add MPLS parsing function

2017-03-23 Thread Beilei Xing
This patch add MPLS parsing function to support MPLS filtering. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.h | 5 + drivers/net/i40e/i40e_flow.c | 217 + 2 files changed, 222 insertions(+) diff --git a/drivers/net/i40e/i40e_ethdev.h b

[dpdk-dev] [PATCH v2 3/3] net/i40e: enable tunnel filter for MPLS

2017-03-23 Thread Beilei Xing
This patch enables MPLS tunnel filter by replacing inner_mac filter. This configuration will be set when adding MPLSoUDP and MPLSoGRE filter rules, and it will be invalid only by NIC core reset. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c | 45 +++-- drivers/net/i4

[dpdk-dev] [PATCH v2 2/3] crypto/scheduler: enable packet size based scheduling mode

2017-03-23 Thread Fan Zhang
This patch enables the packet size based scheduling mode in scheduler PMD. Signed-off-by: Fan Zhang --- drivers/crypto/scheduler/Makefile | 1 + drivers/crypto/scheduler/rte_cryptodev_scheduler.c | 7 +++ drivers/crypto/scheduler/rte_cryptodev_scheduler.h | 3 +++ 3 files ch

[dpdk-dev] [PATCH v2 3/3] doc: update cryptodev scheduler PMD documentation

2017-03-23 Thread Fan Zhang
This patch updates packet size based scheduling mode description. Signed-off-by: Fan Zhang --- doc/guides/cryptodevs/scheduler.rst | 14 ++ 1 file changed, 14 insertions(+) diff --git a/doc/guides/cryptodevs/scheduler.rst b/doc/guides/cryptodevs/scheduler.rst index 70fb62e..51f2a78

[dpdk-dev] [PATCH v2 1/3] crypto/scheduler: add packet size based mode code

2017-03-23 Thread Fan Zhang
This patch adds the packet size based distribution mode main source file. Signed-off-by: Fan Zhang --- .../crypto/scheduler/scheduler_pkt_size_distr.c| 427 + 1 file changed, 427 insertions(+) create mode 100644 drivers/crypto/scheduler/scheduler_pkt_size_distr.c diff -

[dpdk-dev] [PATCH v2 0/3] crypto/scheduler: add packet-base scheduling mode

2017-03-23 Thread Fan Zhang
Packet-size based distribution mode, which works with 2 slaves, primary slave and secondary slave, and distribute the enqueued crypto ops to them based on their data lengths. A crypto op will be distributed to the primary slave if its data length equals or bigger than the designated threshold, othe

[dpdk-dev] [PATCH v5 00/14] Wind River Systems AVP PMD

2017-03-23 Thread Allain Legacy
This patch series submits an initial version of the AVP PMD from Wind River Systems. The series includes shared header files, driver implementation, and changes to documentation files in support of this new driver. The AVP driver is a shared memory based device. It is intended to be used as a PM

[dpdk-dev] [PATCH v5 03/14] net/avp: debug log macros

2017-03-23 Thread Allain Legacy
Adds a header file with log macros for the AVP PMD Signed-off-by: Allain Legacy Signed-off-by: Matt Peters --- config/common_base | 4 drivers/net/avp/avp_logs.h | 59 ++ 2 files changed, 63 insertions(+) create mode 100644 drivers/net/

[dpdk-dev] [PATCH v5 04/14] net/avp: driver registration

2017-03-23 Thread Allain Legacy
Adds the initial framework for registering the driver against the support PCI device identifiers. Signed-off-by: Allain Legacy Signed-off-by: Matt Peters --- config/common_linuxapp | 1 + config/defconfig_i686-native-linuxapp-gcc| 5 + config/defconfig_i686-native-

[dpdk-dev] [PATCH v5 02/14] net/avp: public header files

2017-03-23 Thread Allain Legacy
Adds public/exported header files for the AVP PMD. The AVP device is a shared memory based device. The structures and constants that define the method of operation of the device must be visible by both the PMD and the host DPDK application. They must not change without proper version controls an

[dpdk-dev] [PATCH v5 06/14] net/avp: device configuration

2017-03-23 Thread Allain Legacy
Adds support for "dev_configure" operations to allow an application to configure the device. Signed-off-by: Allain Legacy Signed-off-by: Matt Peters --- doc/guides/nics/features/avp.ini | 4 + drivers/net/avp/avp_ethdev.c | 241 +++ 2 files changed, 245

[dpdk-dev] [PATCH v5 07/14] net/avp: queue setup and release

2017-03-23 Thread Allain Legacy
Adds queue management operations so that an appliation can setup and release the transmit and receive queues. Signed-off-by: Allain Legacy Signed-off-by: Matt Peters --- drivers/net/avp/avp_ethdev.c | 180 ++- 1 file changed, 179 insertions(+), 1 deletion

[dpdk-dev] [PATCH v5 05/14] net/avp: device initialization

2017-03-23 Thread Allain Legacy
Adds support for initialization newly probed AVP PCI devices. Initial queue translations are setup in preparation for device configuration. Signed-off-by: Allain Legacy Signed-off-by: Matt Peters --- drivers/net/avp/avp_ethdev.c | 315 +++ 1 file changed

[dpdk-dev] [PATCH v5 01/14] drivers/net: adds AVP PMD base files

2017-03-23 Thread Allain Legacy
This commit introduces the AVP PMD file structure without adding any actual driver functionality. Functional blocks will be added in later patches. Signed-off-by: Allain Legacy Signed-off-by: Matt Peters --- MAINTAINERS | 5 config/common_base

[dpdk-dev] [PATCH v5 10/14] net/avp: device statistics operations

2017-03-23 Thread Allain Legacy
Adds device functions to query and reset statistics. Signed-off-by: Allain Legacy --- doc/guides/nics/features/avp.ini | 2 ++ drivers/net/avp/avp_ethdev.c | 67 2 files changed, 69 insertions(+) diff --git a/doc/guides/nics/features/avp.ini b/doc/g

[dpdk-dev] [PATCH v5 09/14] net/avp: packet transmit functions

2017-03-23 Thread Allain Legacy
Adds support for packet transmit functions so that an application can send packets to the host application via an AVP device queue. Both the simple and scattered functions are supported. Signed-off-by: Allain Legacy Signed-off-by: Matt Peters --- drivers/net/avp/avp_ethdev.c | 335

[dpdk-dev] [PATCH v5 11/14] net/avp: device promiscuous functions

2017-03-23 Thread Allain Legacy
Adds support for setting and clearing promiscuous mode on an AVP device. When enabled the _mac_filter function will allow packets destined to any MAC address to be processed by the receive functions. Signed-off-by: Allain Legacy Signed-off-by: Matt Peters --- doc/guides/nics/features/avp.ini |

[dpdk-dev] [PATCH v5 13/14] net/avp: migration interrupt handling

2017-03-23 Thread Allain Legacy
This commit introduces changes required to support VM live-migration. This is done by registering and responding to interrupts coming from the host to signal that the memory is about to be made invalid and replaced with a new memory zone on the destination compute node. Enabling and disabling of

[dpdk-dev] [PATCH v5 12/14] net/avp: device start and stop operations

2017-03-23 Thread Allain Legacy
Adds support for device start and stop functions. This allows an application to control the administrative state of an AVP device. Stopping the device will notify the host application to stop sending packets on that device's receive queues. Signed-off-by: Allain Legacy Signed-off-by: Matt Peter

[dpdk-dev] [PATCH v5 14/14] doc: adds information related to the AVP PMD

2017-03-23 Thread Allain Legacy
Updates the documentation and feature lists for the AVP PMD device. Signed-off-by: Allain Legacy Signed-off-by: Matt Peters Acked-by: John McNamara --- MAINTAINERS| 1 + doc/guides/nics/avp.rst| 107 + doc/guides/nic

[dpdk-dev] [PATCH v5 08/14] net/avp: packet receive functions

2017-03-23 Thread Allain Legacy
Adds function required for receiving packets from the host application via AVP device queues. Both the simple and scattered functions are supported. Signed-off-by: Allain Legacy Signed-off-by: Matt Peters --- doc/guides/nics/features/avp.ini | 3 + drivers/net/avp/Makefile | 1 + d

Re: [dpdk-dev] [PATCH v4 1/7] net/ark: PMD for Atomic Rules Arkville driver stub

2017-03-23 Thread Ferruh Yigit
On 3/23/2017 1:03 AM, Ed Czeck wrote: > Enable Arkville on supported configurations > Add overview documentation > Minimum driver support for valid compile > Arkville PMD is not supported on ARM or PowerPC at this time Can you please send new version of patchset as reply to previous version, using

Re: [dpdk-dev] [PATCH v4 2/7] net/ark: HW API part 1 of 3

2017-03-23 Thread Ferruh Yigit
On 3/23/2017 1:03 AM, Ed Czeck wrote: > Provide C-level interface for Arkville's internal HW resources > mpu, pktdir, and rqp modules For patch title, instead of using " HW API part x of y", can you please describe the content of the patch, like: " net/ark: HW API for MPU, pktdir, and RQP modules

[dpdk-dev] [PATCH v2] doc: reformat crypto drivers overview

2017-03-23 Thread Pablo de Lara
Follow the approach in the network devices overview, for the feature matrix, so it improves readibility and maintainability. Signed-off-by: Pablo de Lara Acked-by: John McNamara --- Changes in v2: - Added missing algorithms - Fixed PEP8 errors .gitignore |

Re: [dpdk-dev] [PATCH 22/39] app/test: octeontx eventdev unit test infrastructure

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 23/39] app/test: octeontx unit test case setup and teardown

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 25/39] app/test: octeontx simple event enqueue and dequeue test

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 24/39] app/test: octeontx unit test case helper functions

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 26/39] app/test: octeontx multi queue enqueue and dequeue test

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 27/39] app/test: octeontx eventdev priority test

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 28/39] app/test: add infrastructure for multicore octeontx tests

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 29/39] app/test: octeontx multi queue and multi core/port tests

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 30/39] app/test: octeontx single link establishment test

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 31/39] app/test: octeontx multi link establishment test

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 32/39] app/test: octeontx flow based two stage sched type test

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH] vfio: add hotplug support

2017-03-23 Thread Burakov, Anatoly
Hi Alejandro, I think the documentation should also be updated to reflect the fact that this patch adds VFIO support for hotplug. Thanks, Anatoly

Re: [dpdk-dev] [PATCH 33/39] app/test: octeontx queue based two stage sched type test

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 34/39] app/test: octeontx flow based maximum stage pipeline

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 35/39] app/test: octeontx queue based maximum stage pipeline

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

Re: [dpdk-dev] [PATCH 36/39] app/test: octeontx queue and flow based max stage pipeline

2017-03-23 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Friday, March 3, 2017 5:28 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; Van Haaren, > Harry ; hemant.agra...@nxp.com; Eads, Gage > ; > nipun.gu...@nxp.com; santosh.shu...@caviumnetworks.com; Jerin

  1   2   3   >