[dpdk-dev] [PATCH] net/tap: fix dev name look-up

2017-03-03 Thread Pascal Mazon
The call to rte_eth_dev_allocate(tap_name) sets dev->data->name to tap_name (e.g. "dtap0"). A look-up using tap_name is expected to return this device, not a look-up using name (e.g. "net_tap0"). Signed-off-by: Pascal Mazon --- drivers/net/tap/rte_eth_tap.c | 2 +- 1 file changed, 1 insertion(+

Re: [dpdk-dev] [PATCH] eventdev: event device to contain rte device holder

2017-03-03 Thread Shreyansh Jain
On Thursday 16 February 2017 04:22 PM, Nipun Gupta wrote: Signed-off-by: Nipun Gupta rte_device is a generic device which is available to the applications and EAL. This patch replaces rte_pci_device in 'struct rte_eventdev' and in 'struct rte_event_dev_info' with common rte_device. Patch cont

Re: [dpdk-dev] [PATCH v2] eal: sPAPR IOMMU support in pci probing for vfio-pci in ppc64le

2017-03-03 Thread Burakov, Anatoly
Hi Muthurkrishnan, > From: Gowrishankar Muthukrishnan > > Below changes adds pci probing support for vfio-pci devices in power8. > > Changes: > v2 - kernel version checked and doc updated > > Signed-off-by: Gowrishankar Muthukrishnan > > --- > doc/guides/rel_notes/release_17_05.rst | 4 ++ >

[dpdk-dev] [PATCH] app/testpmd: add default MAC set cmd

2017-03-03 Thread Pascal Mazon
Signed-off-by: Pascal Mazon --- app/test-pmd/cmdline.c | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index 43fc6366f279..4bbefa43966e 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -405,6 +405,

[dpdk-dev] [PATCH v2] eventdev: event device to contain rte device holder

2017-03-03 Thread Nipun Gupta
rte_device is a generic device which is available to the applications and EAL. This patch replaces rte_pci_device in 'struct rte_eventdev' and in 'struct rte_event_dev_info' with common rte_device. Signed-off-by: Nipun Gupta Acked-by: Shreyansh Jain --- drivers/event/skeleton/skeleton_eventdev.

[dpdk-dev] [PATCH 0/4] support replace filter function

2017-03-03 Thread Beilei Xing
This patchset adds replace filter function according to DCR288 and supports cloud filter to VF. This patchset serves for QinQ and MPLSoUDP/MPLSoGRE. Beilei Xing (4): net/i40e: support replace filter type net/i40e: rework tunnel filter functions net/i40e: support tunnel filter to VF net/i40

[dpdk-dev] [PATCH 1/4] net/i40e: support replace filter type

2017-03-03 Thread Beilei Xing
Add new admin queue function and extended fields in DCR 288: - Add admin queue function for Replace filter command (Opcode: 0x025F) - Add General fields for Add/Remove Cloud filters command This patch will be removed to base driver in future. Signed-off-by: Bernard Iremonger Signed-off-b

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

2017-03-03 Thread Beilei Xing
This patch is to support tunnel filter to VF. Signed-off-by: Bernard Iremonger Signed-off-by: Yong Liu Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c | 145 + drivers/net/i40e/i40e_ethdev.h | 32 + drivers/net/i40e/i40e_flow.c |

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

2017-03-03 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 2/4] net/i40e: rework tunnel filter functions

2017-03-03 Thread Beilei Xing
Rework tunnel filter functions to align with the new command buffer for add/remove cloud filter. This patch also changes tunnel filter function name to VXLAN filter function, it will be easy to add other tunnel type parsing function. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c

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

2017-03-03 Thread Bruce Richardson
I think the title needs to be a bit more specific on this one... On Fri, Mar 03, 2017 at 10:35:33AM +0800, Jingjing Wu wrote: > On X722, we can control whether or not the hardware performs ATR > eviction. Define the correct bit so we can twiddle it. > > Signed-off-by: Jingjing Wu > --- > driver

Re: [dpdk-dev] [PATCH] ppp implemantation

2017-03-03 Thread Bruce Richardson
Given that this patch is not about point-to-point protocol, i.e. the best-known expansion of "PPP", I think you need to clarify the acronym in the commit message, at minimum, if not also in the commit title. /Bruce On Fri, Mar 03, 2017 at 03:26:07PM +0800, Beilei Xing wrote: > Signed-off-by: Beil

Re: [dpdk-dev] [PATCH] ppp implemantation

2017-03-03 Thread Bruce Richardson
On Fri, Mar 03, 2017 at 09:39:26AM +, Bruce Richardson wrote: > Given that this patch is not about point-to-point protocol, i.e. the > best-known expansion of "PPP", I think you need to clarify the acronym > in the commit message, at minimum, if not also in the commit title. > > /Bruce > Nev

[dpdk-dev] [PATCH 0/3] enable MPLS cloud filter

2017-03-03 Thread Beilei Xing
This patchset enables MPLSoUDP & MPLSoGRE cloud filter. This function depends on PPP function and replace filter AQ command. Beilei Xing (3): app/testpmd: support MPLS for generic filter net/i40e: add MPLS parsing function net/i40e: enable cloud filter for MPLS app/test-pmd/cmdline_flow.c

[dpdk-dev] [PATCH 1/3] app/testpmd: support MPLS for generic filter

2017-03-03 Thread Beilei Xing
This patch adds MPLS support for generic filter API. Signed-off-by: Beilei Xing --- app/test-pmd/cmdline_flow.c | 55 + app/test-pmd/config.c | 2 ++ lib/librte_ether/rte_flow.h | 40 + 3 files changed, 97 inserti

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

2017-03-03 Thread Beilei Xing
This patch adds MPLS parsing function to support MPLSoUDP & MPLSoGRE cloud filter. 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/i

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

2017-03-03 Thread Beilei Xing
This patch enables MPLSoUDP and MPLSoGRE cloud filter with replace cloud filter. Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c | 44 +++-- drivers/net/i40e/i40e_ethdev.h | 9 +++- drivers/net/i40e/i40e_flow.c | 108 + 3 fil

[dpdk-dev] [PATCH 3/6] net/tap: add multicast addresses management

2017-03-03 Thread Pascal Mazon
A tap netdevice actually receives every packet, without any filtering whatsoever. There is no need for any multicast address registration to receive multicast packets. Signed-off-by: Pascal Mazon --- doc/guides/nics/features/tap.ini | 1 + drivers/net/tap/rte_eth_tap.c| 13 + 2

[dpdk-dev] [PATCH 5/6] net/tap: add packet type management

2017-03-03 Thread Pascal Mazon
Advertize RTE_PTYPE_UNKNOWN since tap does not report any packet type. Signed-off-by: Pascal Mazon --- doc/guides/nics/features/tap.ini | 1 + drivers/net/tap/rte_eth_tap.c| 15 +++ 2 files changed, 16 insertions(+) diff --git a/doc/guides/nics/features/tap.ini b/doc/guides/nic

[dpdk-dev] [PATCH 1/6] net/tap: add MAC address management ops

2017-03-03 Thread Pascal Mazon
Set a random MAC address when probing the device, as to not leave an empty MAC in pmd->eth_addr. This MAC will be set on the tap netdevice as soon as it's been created using tun_alloc(). As the tap_mac_add() function depend on the fd in the first rxq, move code from tun_alloc() to tap_setup_queue(

[dpdk-dev] [PATCH 6/6] net/tap: add flow control management

2017-03-03 Thread Pascal Mazon
A tap netdevice does not support flow control; ensure nothing but RTE_FC_NONE mode can be set. Signed-off-by: Pascal Mazon --- doc/guides/nics/features/tap.ini | 1 + drivers/net/tap/rte_eth_tap.c| 19 +++ 2 files changed, 20 insertions(+) diff --git a/doc/guides/nics/featu

[dpdk-dev] [PATCH 2/6] net/tap: add speed capabilities

2017-03-03 Thread Pascal Mazon
Tap PMD is flexible, it supports any speed. Signed-off-by: Pascal Mazon --- doc/guides/nics/features/tap.ini | 1 + drivers/net/tap/rte_eth_tap.c| 35 +++ 2 files changed, 36 insertions(+) diff --git a/doc/guides/nics/features/tap.ini b/doc/guides/nics/featu

[dpdk-dev] [PATCH 0/6] net/tap: add additional management ops

2017-03-03 Thread Pascal Mazon
Add a few eth_dev ops to the tap PMD for completeness. We want it to behave as much as possible as a standard PMD. Pascal Mazon (6): net/tap: add MAC address management ops net/tap: add speed capabilities net/tap: add multicast addresses management net/tap: add MTU management net/tap: ad

[dpdk-dev] [PATCH 4/6] net/tap: add MTU management

2017-03-03 Thread Pascal Mazon
The MTU is assigned to the tap netdevice according to the argument, but packet transmission and reception just write/read on an fd with the default limit being the socket buffer size. Signed-off-by: Pascal Mazon --- doc/guides/nics/features/tap.ini | 1 + drivers/net/tap/rte_eth_tap.c| 37 +

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

2017-03-03 Thread Yuanhan Liu
Introduce few APIs to set/get/enable/disable driver features. Signed-off-by: Yuanhan Liu --- lib/librte_vhost/rte_vhost_version.map | 10 lib/librte_vhost/rte_virtio_net.h | 9 lib/librte_vhost/socket.c | 90 ++ 3 files changed, 109 in

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

2017-03-03 Thread Yuanhan Liu
This is a first attempt to make DPDK vhost library be generic enough, so that user could built its own 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 al

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

2017-03-03 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 --- drivers/net/vhost/rte_eth_vhost.c | 20 +++

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

2017-03-03 Thread Yuanhan Liu
vdev options is better for disabling/enabling some features. Signed-off-by: Yuanhan Liu --- drivers/net/vhost/rte_eth_vhost.c | 25 drivers/net/vhost/rte_eth_vhost.h | 30 - drivers/net/vhost/rte_pmd_vhost_version.map | 3

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

2017-03-03 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 03/17] vhost: use new APIs to handle features

2017-03-03 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 08/17] vhost: export API to translate gpa to vva

2017-03-03 Thread Yuanhan Liu
Signed-off-by: Yuanhan Liu --- lib/librte_vhost/rte_vhost_version.map | 1 + lib/librte_vhost/rte_virtio_net.h | 21 + lib/librte_vhost/vhost.h | 19 --- lib/librte_vhost/virtio_net.c | 23 +-- 4 files changed, 3

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

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

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

2017-03-03 Thread Yuanhan Liu
Signed-off-by: Yuanhan Liu --- lib/librte_vhost/rte_vhost_version.map | 1 + lib/librte_vhost/rte_virtio_net.h | 13 + lib/librte_vhost/vhost.c | 30 ++ lib/librte_vhost/vhost.h | 2 ++ 4 files changed, 46 insertions(+) d

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

2017-03-03 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 11/17] vhost: move the device ready check at proper place

2017-03-03 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 10/17] vhost: export the number of vrings

2017-03-03 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 13/17] vhost: do not include net specific headers

2017-03-03 Thread Yuanhan Liu
Include it internally, at vhost.h. Signed-off-by: Yuanhan Liu --- examples/vhost/main.h | 2 ++ lib/librte_vhost/rte_virtio_net.h | 4 lib/librte_vhost/vhost.h | 4 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/vhost/main.h b/examples/vhos

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

2017-03-03 Thread Yuanhan Liu
They are virti-net specific and should be defined inside the virtio-net driver. Signed-off-by: Yuanhan Liu --- drivers/net/vhost/rte_eth_vhost.c | 2 ++ examples/tep_termination/main.h | 2 ++ examples/vhost/main.h | 2 ++ lib/librte_vhost/rte_virtio_net.h | 3 --- 4 files changed,

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

2017-03-03 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 --- drivers/net/vhost/rte_eth_vhost.c | 2 +- examples/tep_termination/main.c | 4 ++-- examples/vhost/main.c | 4 ++-- lib/librte_vhost/Makefile | 2 +- l

[dpdk-dev] [PATCH 16/17] vhost: rename header file

2017-03-03 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 --- doc/guides/rel_notes/deprecation.rst | 9 -- drivers/net/vhost/rte_eth_vhost.c | 2 +- drivers/net/vhost/rte_eth_vhost.h | 2 +- examples/tep_termination/main.c

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

2017-03-03 Thread Yuanhan Liu
Rename "virtio-net" to "vhost" in the API comments. Signed-off-by: Yuanhan Liu --- lib/librte_vhost/rte_virtio_net.h | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/librte_vhost/rte_virtio_net.h b/lib/librte_vhost/rte_virtio_net.h index 5cde87d..2f761da 10

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

2017-03-03 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] app/pdump: fix pdump can't find the driver when compiled dpdk to shared libraries

2017-03-03 Thread zhaozhanxu
When I compiled dpdk With configuration "CONFIG_RTE_BUILD_SHARED_LIB=y", I get error message "EAL: no driver found for net_pcap_rx_0" and "EAL: Driver cannot attach the device (net_pcap_rx_0)" by running pdump. So I add library librte_pmd_pcap.so. Signed-off-by: zhaozhanxu --- app/pdump/Makefile

[dpdk-dev] [PATCH] crypto/aesni_mb: process crypto operation in dequeue function

2017-03-03 Thread Declan Doherty
From: "De Lara Guarch, Pablo" moving the crypto processing from the enqueue burst to the dequeue burst, to remove the requirement to continually call the rte_cryptodev_burst_enqueue function to guarantee that all operations get flushed from the multi-buffer managers buffers. Signed-off-by: Decla

Re: [dpdk-dev] [PATCH 00/61] net/qede/base: qede PMD enhancements

2017-03-03 Thread Ferruh Yigit
On 2/27/2017 7:56 AM, Rasesh Mody wrote: > Hi, > > This patch set adds support for new firmware 8.18.9.0, new features and > bug fixes. This looks like depends other qede driver patchset [1], can you please confirm? If so, it helps to mention from it here. Also I am getting following build error

Re: [dpdk-dev] [PATCH 02/61] send FW version driver state to MFW

2017-03-03 Thread Ferruh Yigit
On 2/27/2017 7:56 AM, Rasesh Mody wrote: > Add support to send FW version and driver state to Management FW. > > Signed-off-by: Rasesh Mody <...> > - return ECORE_SUCCESS; > + if (IS_PF(p_dev)) { > + p_hwfn = ECORE_LEADING_HWFN(p_dev); > + drv_mb_param = (FW_MAJO

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

2017-03-03 Thread Pascal Mazon
This series add 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 actions

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

2017-03-03 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 --- drivers/net/tap/Makefile | 1 + drivers/net/tap/rte_eth_tap.c | 34 ++-- drivers/net/tap/tap.h | 73 ++

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

2017-03-03 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 3/4] net/tap: add netlink back-end for flow API

2017-03-03 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 2/4] net/tap: add preliminary support for rte_flow

2017-03-03 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 --- doc/guides/nics/features/tap.ini | 1 + drivers/net/tap/M

Re: [dpdk-dev] [PATCH 6/7] vmxnet3: introduce command to register memory region

2017-03-03 Thread Ferruh Yigit
On 2/25/2017 9:59 PM, Shrikrishna Khare wrote: > In vmxnet3 version 3, the emulation added support for the vmxnet3 driver > to communicate information about the memory regions the driver will use > for rx/tx buffers. The driver can also indicate which rx/tx queue the > memory region is applicable f

Re: [dpdk-dev] [PATCH 6/7] vmxnet3: introduce command to register memory region

2017-03-03 Thread Ferruh Yigit
On 2/25/2017 9:59 PM, Shrikrishna Khare wrote: > In vmxnet3 version 3, the emulation added support for the vmxnet3 driver > to communicate information about the memory regions the driver will use > for rx/tx buffers. The driver can also indicate which rx/tx queue the > memory region is applicable f

Re: [dpdk-dev] [PATCH 3/5] cfgfile: add support for unamed global section

2017-03-03 Thread Dumitrescu, Cristian
> -Original Message- > From: Allain Legacy [mailto:allain.leg...@windriver.com] > Sent: Thursday, March 2, 2017 7:29 PM > To: Richardson, Bruce ; Dumitrescu, Cristian > > Cc: dev@dpdk.org; Jolliffe, Ian (Wind River) > Subject: [PATCH 3/5] cfgfile: add support for unamed global section >

[dpdk-dev] [PATCH 0/4] extend API to retriving xstats by group and xstats by name

2017-03-03 Thread Kuba Kozak
Added three new functions to API: rte_eth_xstats_get_by_name(), rte_eth_xstats_get_by_group(), rte_eth_xstats_get_names_by_group(). Extension of the 'rte_igb_xstats_name_off' structure with additional field 'group_mask'. For each xstats there is now specified group (e.g. TX_GROUP), one xstatistic

Re: [dpdk-dev] [PATCH 0/7] vmxnet3: upgrade to version 3

2017-03-03 Thread Ferruh Yigit
On 2/25/2017 9:59 PM, Shrikrishna Khare wrote: > vmxnet3 emulation has recently added several new features which includes > support for new commands the driver can issue to emulation, change in > descriptor fields etc. This patch series extends the vmxnet3 driver to > leverage these new features. >

Re: [dpdk-dev] [PATCH 3/5] cfgfile: add support for unamed global section

2017-03-03 Thread Legacy, Allain
> -Original Message- > From: Dumitrescu, Cristian [mailto:cristian.dumitre...@intel.com] > > What is the motivation for the having key/value pair outside of any section? > What would be the drawback of having the user explicitly define a GLOBAL > section to host these key/value pairs? Glob

[dpdk-dev] [PATCH 1/4] ethdev: add retrieving xstats by group and xstats by name

2017-03-03 Thread Kuba Kozak
From: Jacek Piasecki This patch extends library for retriving xstats by specified groups and single xstat by given name. Signed-off-by: Jacek Piasecki Signed-off-by: Kuba Kozak --- lib/librte_ether/rte_ethdev.c | 310 -- lib/librte_ether/rte_ethdev.h |

Re: [dpdk-dev] [PATCH 3/5] cfgfile: add support for unamed global section

2017-03-03 Thread Dumitrescu, Cristian
> -Original Message- > From: Legacy, Allain [mailto:allain.leg...@windriver.com] > Sent: Friday, March 3, 2017 11:04 AM > To: Dumitrescu, Cristian ; Richardson, Bruce > > Cc: dev@dpdk.org; Jolliffe, Ian (Wind River) > Subject: RE: [PATCH 3/5] cfgfile: add support for unamed global secti

Re: [dpdk-dev] [PATCH 1/3] app/testpmd: support MPLS for generic filter

2017-03-03 Thread Adrien Mazarguil
Hi Beilei, I think the commit title should reflect that this commit adds support for GRE and MPLS items to rte_flow, testpmd changes are only a consequence. On Fri, Mar 03, 2017 at 05:43:54PM +0800, Beilei Xing wrote: > This patch adds MPLS support for generic filter > API. > > Signed-off-by: Be

[dpdk-dev] [PATCH 2/4] net/e1000: add grouping of xstats for e1000 driver

2017-03-03 Thread Kuba Kozak
From: Jacek Piasecki This patch extends the 'rte_igb_xstats_name_off' structure with additional field 'group_mask'. For each xstats there is now specified group (e.g. TX_GROUP), one xstatistic can be in several groups. To implement new functionality of retriving xstats by group on driver level, t

Re: [dpdk-dev] [PATCH 3/5] cfgfile: add support for unamed global section

2017-03-03 Thread Legacy, Allain
> -Original Message- > From: Dumitrescu, Cristian [mailto:cristian.dumitre...@intel.com] > > I am not totally against it, but IMO this option is a bit confusing. Again, > what's > wrong with user explicitly adding the GLOBAL section if needed? There's nothing wrong with using a global sec

[dpdk-dev] [PATCH 3/4] net/ixgbe: add grouping of xstats for ixgbe driver

2017-03-03 Thread Kuba Kozak
From: Jacek Piasecki This patch extends the 'rte_ixgbe_xstats_name_off' structure with additional field 'group_mask'. For each xstats there is now specified group (e.g. MAC_GROUP), one xstatistic can be in several groups. To implement new functionality of retriving xstats by group on driver level

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Dumitrescu, Cristian
> > We are trying to avoid adding in extra build-time options to DPDK, so > > can you please rework this patch to make it a run-time option instead. > > +1 for making it a run-time option. > > --yliu > +1 > > Perhaps just add a set_comment_char() API call to the library. If this > > is a

Re: [dpdk-dev] [PATCH 3/5] cfgfile: add support for unamed global section

2017-03-03 Thread Dumitrescu, Cristian
> -Original Message- > From: Legacy, Allain [mailto:allain.leg...@windriver.com] > Sent: Friday, March 3, 2017 11:15 AM > To: Dumitrescu, Cristian ; Richardson, Bruce > > Cc: dev@dpdk.org; Jolliffe, Ian (Wind River) > Subject: RE: [PATCH 3/5] cfgfile: add support for unamed global secti

[dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour

2017-03-03 Thread Zhiyong Yang
The rte_eth_tx_burst() function in the file Rte_ethdev.h is invoked to transmit output packets on the output queue for DPDK applications as follows. static inline uint16_t rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id, struct rte_mbuf **tx_pkts, uint16_t nb_pkts); Note: The

[dpdk-dev] [PATCH v2 1/5] net/fm10k: remove limit of fm10k_xmit_pkts_vec burst size

2017-03-03 Thread Zhiyong Yang
To add a wrapper function to remove the limit of tx burst size. The patch makes fm10k vec function an best effort to transmit pkts in the consistent behavior like fm10k_xmit_pkts does that. Cc: Jing Chen Signed-off-by: Zhiyong Yang --- drivers/net/fm10k/fm10k.h | 4 ++-- drivers/net/f

[dpdk-dev] [PATCH v2 2/5] net/i40e: remove limit of i40e_xmit_pkts_vec burst size

2017-03-03 Thread Zhiyong Yang
To add a wrapper function to remove the limit of tx burst size. The patch makes i40e vec function an best effort to transmit the pkts in the consistent behavior like i40e_xmit_pkts_simple and i40e_xmit_pkts do that. Cc: Helin Zhang Cc: Jingjing Wu Signed-off-by: Zhiyong Yang --- drivers/net/i4

[dpdk-dev] [PATCH v2 3/5] net/ixgbe: remove limit of ixgbe_xmit_pkts_vec burst size

2017-03-03 Thread Zhiyong Yang
To add a wrapper function to remove the limit of tx burst size and implement the "make an best effort to transmit the pkts" policy. The patch makes ixgbe vec function work in a consistent behavior like ixgbe_xmit_pkts_simple and ixgbe_xmit_pkts do that. Cc: Helin Zhang Cc: Konstantin Ananyev Sig

[dpdk-dev] [PATCH v2 5/5] net/vhost: remove limit of vhost RX burst size

2017-03-03 Thread Zhiyong Yang
vhost removes limit of RX burst size(32 pkts) and supports to make an best effort to receive pkts. Cc: yuanhan@linux.intel.com Cc: maxime.coque...@redhat.com Signed-off-by: Zhiyong Yang --- drivers/net/vhost/rte_eth_vhost.c | 17 +++-- 1 file changed, 15 insertions(+), 2 deletion

[dpdk-dev] [PATCH v2 4/5] net/vhost: remove limit of vhost TX burst size

2017-03-03 Thread Zhiyong Yang
vhost removes limit of TX burst size(32 pkts) and supports to make an best effort to transmit pkts. Cc: yuanhan@linux.intel.com Cc: maxime.coque...@redhat.com Signed-off-by: Zhiyong Yang --- drivers/net/vhost/rte_eth_vhost.c | 17 +++-- 1 file changed, 15 insertions(+), 2 deletio

[dpdk-dev] [PATCH 4/4] app/proc_info: add support for xstats-name and xstats-group

2017-03-03 Thread Kuba Kozak
From: Jacek Piasecki This patch provides support for proc_info application to allow printing single xstat value specified by its name and printing xstats values specified by its group name. New proc_info arguments: --xstats-name NAME: to display single xstat value by NAME --xstats-group GROUPNAME

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Legacy, Allain
> -Original Message- > From: Dumitrescu, Cristian [mailto:cristian.dumitre...@intel.com] > Possible options that I see: > 1. Add a new parameters argument to the load functions (e.g. struct > cfgfile_params *p), whit the comment char as one (and currently only) field > of this struct. Drawb

Re: [dpdk-dev] [PATCH 1/4] crypto/qat: adding docsisbpi mode support

2017-03-03 Thread Jain, Deepak K
> -Original Message- > From: Trahe, Fiona > Sent: Thursday, March 2, 2017 1:03 PM > To: dev@dpdk.org; De Lara Guarch, Pablo > Cc: Jain, Deepak K ; Trahe, Fiona > > Subject: [PATCH 1/4] crypto/qat: adding docsisbpi mode support > > DOCSISPBI mode is handled in the QAT PMD by sending full

Re: [dpdk-dev] [PATCH 2/4] test: add AES DOCSIS tests for QAT PMD

2017-03-03 Thread Jain, Deepak K
> -Original Message- > From: Trahe, Fiona > Sent: Thursday, March 2, 2017 1:03 PM > To: dev@dpdk.org; De Lara Guarch, Pablo > Cc: Jain, Deepak K ; Trahe, Fiona > > Subject: [PATCH 2/4] test: add AES DOCSIS tests for QAT PMD > > Extend test suite to run AES DOCSIS tests on Intel QuickAss

Re: [dpdk-dev] [PATCH 4/4] test: added crypto OOP tests

2017-03-03 Thread Jain, Deepak K
> -Original Message- > From: Trahe, Fiona > Sent: Thursday, March 2, 2017 1:03 PM > To: dev@dpdk.org; De Lara Guarch, Pablo > Cc: Jain, Deepak K ; Trahe, Fiona > > Subject: [PATCH 4/4] test: added crypto OOP tests > > Added out-of-place (OOP) tests for AES-CBC, AES-DOCSIS and DES-DOCSIS

Re: [dpdk-dev] [PATCH 3/4] test: add DES DOCSIS tests for QAT PMD

2017-03-03 Thread Jain, Deepak K
> -Original Message- > From: Trahe, Fiona > Sent: Thursday, March 2, 2017 1:03 PM > To: dev@dpdk.org; De Lara Guarch, Pablo > Cc: Jain, Deepak K ; Trahe, Fiona > > Subject: [PATCH 3/4] test: add DES DOCSIS tests for QAT PMD > > Extend test suite to run DES DOCSIS tests on Intel >

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Dumitrescu, Cristian
> -Original Message- > From: Legacy, Allain [mailto:allain.leg...@windriver.com] > Sent: Friday, March 3, 2017 11:31 AM > To: Dumitrescu, Cristian ; Yuanhan Liu > ; Richardson, Bruce > > Cc: dev@dpdk.org; Jolliffe, Ian (Wind River) > Subject: RE: [dpdk-dev] [PATCH 1/5] cfgfile: configur

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Bruce Richardson
On Fri, Mar 03, 2017 at 11:31:11AM +, Legacy, Allain wrote: > > -Original Message- > > From: Dumitrescu, Cristian [mailto:cristian.dumitre...@intel.com] > > Possible options that I see: > > 1. Add a new parameters argument to the load functions (e.g. struct > > cfgfile_params *p), whit

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Legacy, Allain
> -Original Message- > From: Dumitrescu, Cristian [mailto:cristian.dumitre...@intel.com] > Both approaches can support this. Therefore, IMO the separator char is not > enough to justify approach 1. I would only go for approach 1 if there are > some other parameters that we could consider

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Legacy, Allain
> -Original Message- > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Also, for a single parameter like a comment char, I don't think we need to go > creating a separate structure. The current flags parameter is unused, so just > replace it with the comment char one. With usi

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Dumitrescu, Cristian
> -Original Message- > From: Legacy, Allain [mailto:allain.leg...@windriver.com] > Sent: Friday, March 3, 2017 12:14 PM > To: Dumitrescu, Cristian ; Yuanhan Liu > ; Richardson, Bruce > > Cc: dev@dpdk.org; Jolliffe, Ian (Wind River) > Subject: RE: [dpdk-dev] [PATCH 1/5] cfgfile: configur

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Legacy, Allain
> -Original Message- > From: Dumitrescu, Cristian [mailto:cristian.dumitre...@intel.com] > I disagree here. I think we must control the set of allowed separators to > avoid confusion. I don't understand. What will be confusing? The app owns the file format and is responsible to ensure th

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

2017-03-03 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 3/4] net/tap: use the remote MAC address if available

2017-03-03 Thread Pascal Mazon
The remote on a tap is most likely used with netdevices that are not under DPDK control. Outgoing traffic is supposed to use the source MAC address of the remote netdevice. This commit synchronizes the MAC address of the local tap netdevice with the remote one. Of course, it is still possible to

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

2017-03-03 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

[dpdk-dev] [PATCH 4/4] net/tap: set MTU on the remote

2017-03-03 Thread Pascal Mazon
Signed-off-by: Pascal Mazon --- drivers/net/tap/rte_eth_tap.c | 29 +++-- 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c index 98b466aba223..141fc7944a5f 100644 --- a/drivers/net/tap/rte_eth_tap.

[dpdk-dev] [PATCH 2/4] net/tap: reflect tap flags on the remote

2017-03-03 Thread Pascal Mazon
Synchronize PROMISC and ALLMULTI flags to the remote netdevice if possible. Leave the IFF_UP flag as it is, however. Signed-off-by: Pascal Mazon Acked-by: Olga Shern --- drivers/net/tap/rte_eth_tap.c | 36 +++- drivers/net/tap/tap.h | 1 + 2 files chang

Re: [dpdk-dev] [PATCH v2] eal: sPAPR IOMMU support in pci probing for vfio-pci in ppc64le

2017-03-03 Thread gowrishankar muthukrishnan
Hi Anatoly, On Friday 03 March 2017 02:38 PM, Burakov, Anatoly wrote: Please correct me if I'm wrong here, but wouldn't all of these SPAPR-specific defines and structures not be available for pre-4.2? So the kernel check should also contain all the definitions and structs as well. Maybe it's

[dpdk-dev] [PATCH 2/2] net/sfc: add support for statistics reset

2017-03-03 Thread Andrew Rybchenko
From: Ivan Malov Signed-off-by: Ivan Malov Signed-off-by: Andrew Rybchenko --- drivers/net/sfc/sfc.h| 2 ++ drivers/net/sfc/sfc_ethdev.c | 23 +++ drivers/net/sfc/sfc_port.c | 24 3 files changed, 49 insertions(+) diff --git a/drivers/ne

[dpdk-dev] [PATCH 1/2] net/sfc/base: add MCDI agnostic wrapper for MAC stats clear

2017-03-03 Thread Andrew Rybchenko
From: Ivan Malov If a libefx-based driver needs some way to clear port statistics, then an MCDI agnostic method is required. Signed-off-by: Ivan Malov Signed-off-by: Andrew Rybchenko --- drivers/net/sfc/base/efx.h | 4 drivers/net/sfc/base/efx_impl.h | 1 + drivers/net/sfc/base/ef

[dpdk-dev] [PATCH] doc: fix crypto overview matrix for missing QAT items

2017-03-03 Thread Fiona Trahe
Support for all the following was added in release 16.11 but not updated in the matrix: 3DES, MD5_HMAC, SHA224, SHA383, NULL, KASUMI F8/F9, GMAC. Fixes: e1b7f509e6f2 ("crypto/qat: add 3DES cipher algorithm") Fixes: 61ec5181625f ("crypto/qat: add MD5 HMAC capability") Fixes: ebdbe12fbfc1 ("crypto/q

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Dumitrescu, Cristian
> -Original Message- > From: Legacy, Allain [mailto:allain.leg...@windriver.com] > Sent: Friday, March 3, 2017 12:19 PM > To: Dumitrescu, Cristian ; Yuanhan Liu > ; Richardson, Bruce > > Cc: dev@dpdk.org; Jolliffe, Ian (Wind River) > Subject: RE: [dpdk-dev] [PATCH 1/5] cfgfile: configur

Re: [dpdk-dev] [PATCH v2] eal: sPAPR IOMMU support in pci probing for vfio-pci in ppc64le

2017-03-03 Thread Burakov, Anatoly
Hi Gowrishankar, > Hi Anatoly, > > > On Friday 03 March 2017 02:38 PM, Burakov, Anatoly wrote: > > > > Please correct me if I'm wrong here, but wouldn't all of these > > SPAPR-specific defines and structures not be available for pre-4.2? So > > the kernel check should also contain all the defini

Re: [dpdk-dev] [PATCH 1/5] cfgfile: configurable comment character

2017-03-03 Thread Bruce Richardson
On Fri, Mar 03, 2017 at 12:17:47PM +, Legacy, Allain wrote: > > -Original Message- > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > Also, for a single parameter like a comment char, I don't think we need to > go > > creating a separate structure. The current flags pa

Re: [dpdk-dev] [PATCH v3] proc-info: added collectd-format and host-id options.

2017-03-03 Thread Tahhan, Maryam
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Roman Korynkevych > Sent: Wednesday, March 1, 2017 4:27 PM > To: dev@dpdk.org > Cc: Korynkevych, RomanX > Subject: [dpdk-dev] [PATCH v3] proc-info: added collectd-format and host-id > options. > > Extended proc-info application to send DPDK p

[dpdk-dev] [PATCH v4 00/12] Introducing NXP dpaa2_sec based cryptodev pmd

2017-03-03 Thread Akhil Goyal
Based over the DPAA2 PMD driver [1], this series of patches introduces the DPAA2_SEC PMD which provides DPDK crypto driver for NXP's DPAA2 CAAM Hardware accelerator. SEC is NXP DPAA2 SoC's security engine for cryptographic acceleration and offloading. It implements block encryption, stream cipher,

[dpdk-dev] [PATCH v4 01/12] cryptodev: add cryptodev type for dpaa2 sec

2017-03-03 Thread Akhil Goyal
Signed-off-by: Akhil Goyal --- lib/librte_cryptodev/rte_cryptodev.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/librte_cryptodev/rte_cryptodev.h b/lib/librte_cryptodev/rte_cryptodev.h index 82f3bc3..7fd7975 100644 --- a/lib/librte_cryptodev/rte_cryptodev.h +++ b/lib/librte_cryptod

[dpdk-dev] [PATCH v4 01/12] cryptodev: add cryptodev type for dpaa2_sec

2017-03-03 Thread Akhil Goyal
Signed-off-by: Akhil Goyal --- lib/librte_cryptodev/rte_cryptodev.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/librte_cryptodev/rte_cryptodev.h b/lib/librte_cryptodev/rte_cryptodev.h index 82f3bc3..7fd7975 100644 --- a/lib/librte_cryptodev/rte_cryptodev.h +++ b/lib/librte_cryptod

[dpdk-dev] [PATCH v4 02/12] crypto/dpaa2_sec: add dpaa2_sec poll mode driver

2017-03-03 Thread Akhil Goyal
Signed-off-by: Hemant Agrawal Signed-off-by: Akhil Goyal --- config/common_base | 8 + config/defconfig_arm64-dpaa2-linuxapp-gcc | 12 ++ drivers/bus/Makefile | 3 + drivers/crypto/Makefile|

  1   2   3   >