Re: [dpdk-dev] [RFC 0/9] get Rx and Tx used descriptors

2017-01-17 Thread Olivier Matz
Hi, Thanks Bruce for the comments. On Fri, 13 Jan 2017 17:32:38 +, "Richardson, Bruce" wrote: > > -Original Message- > > From: Olivier Matz [mailto:olivier.m...@6wind.com] > > Sent: Friday, January 13, 2017 4:44 PM > > To: dev@dpdk.org > > Cc: thomas.monja...@6wind.com; Ananyev, Kons

Re: [dpdk-dev] [PATCH v4 00/10] rxq interrupt mode for virtio PMD

2017-01-17 Thread Yuanhan Liu
On Tue, Jan 17, 2017 at 07:10:20AM +, Jianfeng Tan wrote: > v4: > - Update documents: > * doc/guides/nics/features/virtio.ini > * doc/guides/nics/features/virtio_vec.ini > * doc/guides/nics/virtio.rst > - Remove unneeded parenthesis in return statement. > - Change c++ comment

Re: [dpdk-dev] [PATCH v5 0/5] Elastic Flow Distributor

2017-01-17 Thread De Lara Guarch, Pablo
Hi Thomas, > -Original Message- > From: Thomas Monjalon [mailto:thomas.monja...@6wind.com] > Sent: Monday, January 16, 2017 3:08 PM > To: De Lara Guarch, Pablo > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v5 0/5] Elastic Flow Distributor > > Unfortunately, it does not build: > > r

Re: [dpdk-dev] delay for 17.02-rc1

2017-01-17 Thread Xu, Qian Q
Thomas For validation, we don't expect too much difference b/w RC1 and RC2. If only 1-2 features gap, then it's acceptable, but if too many features differences b/w RC1 and RC2, then RC1 test result may be meaningless. If some patches are ready, could we merge them to master branch ASAP, we hav

[dpdk-dev] [PATCH v2] tools: add tags and cscope index file generation support

2017-01-17 Thread Jerin Jacob
This script generates cscope, gtags, and tags index files based on EAL environment. (architecture and OS(linux/bsd)) Selection of the architecture and OS environment is based on dpdk configuration target(T=) example usage: make tags T=x86_64-native-linuxapp-gcc make cscope T=x86_64-native-linuxap

[dpdk-dev] [PATCH v12 00/26] Support VFD on i40e - EXPERIMENTAL

2017-01-17 Thread Wenzhuo Lu
1, VF Daemon (VFD) VFD is an idea to control all the VFs from PF. As we need to support the scenario kernel PF + DPDK VF, DPDK follows the interface between kernel PF + kernel VF. We don't want to introduce too many new messages between PF and VF. So this patch set adds some new APIs to control VFs

[dpdk-dev] [PATCH v12 03/26] net/i40e: set VF MAC anti-spoofing from PF

2017-01-17 Thread Wenzhuo Lu
Support enabling/disabling VF MAC anti-spoofing from PF. User can call the API on PF to enable/disable a specific VF's MAC anti-spoofing. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_ethdev.c| 65 +++ drivers/net/i40e/rte_pmd_i40e.h | 19 +

[dpdk-dev] [PATCH v12 04/26] net/i40e: set VF VLAN anti-spoofing from PF

2017-01-17 Thread Wenzhuo Lu
Support enabling/disabling VF VLAN anti-spoofing from PF. User can call the API on PF to enable/disable a specific VF's VLAN anti-spoofing. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_ethdev.c| 140 -- drivers/net/i40e/i40e_ethdev.h|

[dpdk-dev] [PATCH v12 05/26] net/i40e: set Tx loopback from PF

2017-01-17 Thread Wenzhuo Lu
Support enabling/disabling TX loopback from PF. User can call the API on PF to enable/disable TX loopback for all the PF and VFs. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_ethdev.c| 241 ++ drivers/net/i40e/rte_pmd_i40e.h | 16 ++ driv

[dpdk-dev] [PATCH v12 01/26] net/i40e: support link status notification

2017-01-17 Thread Wenzhuo Lu
Add an API to expose the ability, that PF can notify VF when link status changes, to APP. So if PF APP doesn't want to enable interruption but check link status by itself, PF APP can let VF know link status changed. Signed-off-by: Wenzhuo Lu --- MAINTAINERS | 1 +

[dpdk-dev] [PATCH v12 02/26] net/i40e: add callback to user on VF to PF mbox msg

2017-01-17 Thread Wenzhuo Lu
The callback asks the user application if it is allowed to perform the mailbox messages. If the return value from user is RTE_PMD_I40E_MB_EVENT_PROCEED then continue. If ACK or NACK, do nothing and send not_supported to VF. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_pf.c | 230 +++

[dpdk-dev] [PATCH v12 06/26] net/i40e: set VF unicast promisc mode from PF

2017-01-17 Thread Wenzhuo Lu
Support enabling/disabling VF unicast promiscuous mode from PF. User can call the API on PF to enable/disable a specific VF's unicast promiscuous mode. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_ethdev.c| 41 +++ drivers/net/i40e/rte_pmd_i40e.h

[dpdk-dev] [PATCH v12 07/26] net/i40e: set VF multicast promisc mode from PF

2017-01-17 Thread Wenzhuo Lu
Support enabling/disabling VF multicast promiscuous mode from PF. User can call the API on PF to enable/disable a specific VF's multicast promiscuous mode. Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_ethdev.c| 41 +++ drivers/net/i40e/rte_pmd_i40e.

[dpdk-dev] [PATCH v12 08/26] net/i40e: enable VF MTU change

2017-01-17 Thread Wenzhuo Lu
From: Qi Zhang This patch implement mtu_set ops for i40e VF. Signed-off-by: Qi Zhang --- drivers/net/i40e/i40e_ethdev_vf.c | 33 + 1 file changed, 33 insertions(+) diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c index f50ac2d

[dpdk-dev] [PATCH v12 09/26] net/i40e: fix VF reset flow

2017-01-17 Thread Wenzhuo Lu
From: Qi Zhang Add missing step during VF reset: PF should set I40E_VFGEN_RSTAT to ACTIVE at end of the VF reset operation or VF driver may not able to detect that reset is already completed. This patch also remove the unnecessary enum for vfr state. Fixes: 4861cde46116 ("i40e: new poll mode dri

[dpdk-dev] [PATCH v12 10/26] net/i40e: set VF MAC from PF support

2017-01-17 Thread Wenzhuo Lu
From: Ferruh Yigit Support setting VF MAC address from PF. User can call the API on PF to set a specific VF's MAC address. PF should set MAC address before VF initialized, if PF sets the MAC address after VF initialized, new MAC address won't be effective until VF reinitialized. This will remov

[dpdk-dev] [PATCH v12 12/26] net/i40e: fix VF MAC address assignment

2017-01-17 Thread Wenzhuo Lu
From: Ferruh Yigit If PF sets vf->mac_addr, in VF initialization hw->mac.addr will be set to that same value. It is possible to check if PF set a MAC address or not through the hw->mac.addr variable. hw->mac.addr set by i40e_vf_parse_hw_config(), call stack is: In PF side i40e_pf_host_process_c

[dpdk-dev] [PATCH v12 11/26] net/i40e: set VF MAC from VF support

2017-01-17 Thread Wenzhuo Lu
From: Ferruh Yigit Support changing VF default MAC address. This function is not supported if PF set the MAC address for the PF. Signed-off-by: Ferruh Yigit --- drivers/net/i40e/i40e_ethdev.h| 4 +++- drivers/net/i40e/i40e_ethdev_vf.c | 49 +-- 2 files

[dpdk-dev] [PATCH v12 13/26] net/i40e: set VF VLAN strip from PF

2017-01-17 Thread Wenzhuo Lu
From: "Chen Jing D(Mark)" Add a function to configure vlan strip enable/disable for specific SRIOV VF device. Signed-off-by: Chen Jing D(Mark) --- drivers/net/i40e/i40e_ethdev.c| 37 +++ drivers/net/i40e/rte_pmd_i40e.h | 19 dr

[dpdk-dev] [PATCH v12 16/26] net/i40e: set VF VLAN tag from PF

2017-01-17 Thread Wenzhuo Lu
From: Bernard Iremonger Add rte_pmd_i40e_set_vf_vlan_tag API. User can call the API on PF to enable/disable a specific VF's VLAN tag. Signed-off-by: Bernard Iremonger --- drivers/net/i40e/i40e_ethdev.c| 68 +++ drivers/net/i40e/rte_pmd_i40e.h |

[dpdk-dev] [PATCH v12 14/26] net/i40e: set VF VLAN insertion from PF

2017-01-17 Thread Wenzhuo Lu
From: Bernard Iremonger Support inserting VF VLAN id from PF. User can call the API on PF to insert a VLAN id to a specific VF. Signed-off-by: Bernard Iremonger --- drivers/net/i40e/i40e_ethdev.c| 65 +++ drivers/net/i40e/rte_pmd_i40e.h | 19 ++

[dpdk-dev] [PATCH v12 17/26] net/i40e: set VF VLAN filter from PF

2017-01-17 Thread Wenzhuo Lu
From: Bernard Iremonger add rte_pmd_i40e_set_vf_vlan_filter API. User can call the API on PF to enable/disable a set of VF's VLAN filters. Signed-off-by: Bernard Iremonger --- drivers/net/i40e/i40e_ethdev.c| 63 +++ drivers/net/i40e/rte_pmd_i40e.h

[dpdk-dev] [PATCH v12 19/26] app/testpmd: use unicast promiscuous mode on i40e

2017-01-17 Thread Wenzhuo Lu
Add testpmd CLI to set VF unicast promiscuous mode on i40e. Signed-off-by: Wenzhuo Lu --- app/test-pmd/cmdline.c | 93 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 9 +++ 2 files changed, 102 insertions(+) diff --git a/app/test-pmd/cmdline.c

[dpdk-dev] [PATCH v12 15/26] net/i40e: set VF broadcast mode from PF

2017-01-17 Thread Wenzhuo Lu
From: Bernard Iremonger Support enabling/disabling VF broadcast mode from PF. User can call the API on PF to enable/disable a specific VF's broadcast mode. Signed-off-by: Bernard Iremonger --- drivers/net/i40e/i40e_ethdev.c| 56 +++ drivers/net/i40e/rte_

[dpdk-dev] [PATCH v12 18/26] app/testpmd: use VFD APIs on i40e

2017-01-17 Thread Wenzhuo Lu
The new VF Daemon (VFD) APIs is implemented on i40e. Change testpmd code to use them, including VF MAC anti-spoofing, VF VLAN anti-spoofing, TX loopback, VF VLAN strip, VF VLAN insert. Signed-off-by: Wenzhuo Lu Signed-off-by: Chen Jing D(Mark) Signed-off-by: Bernard Iremonger --- app/test-pmd/

[dpdk-dev] [PATCH v12 20/26] app/testpmd: use multicast promiscuous mode on i40e

2017-01-17 Thread Wenzhuo Lu
Add testpmd CLI to set VF multicast promiscuous mode on i40e. Signed-off-by: Wenzhuo Lu --- app/test-pmd/cmdline.c | 93 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 9 +++ 2 files changed, 102 insertions(+) diff --git a/app/test-pmd/cmdline.

[dpdk-dev] [PATCH v12 21/26] app/testpmd: add command to test VF broadcast mode on i40e

2017-01-17 Thread Wenzhuo Lu
From: Bernard Iremonger Add command to call rte_pmd_i40e_set_vf_broadcast. Add set vf broadcast in testpmd_funcs.rst file. Signed-off-by: Bernard Iremonger --- app/test-pmd/cmdline.c | 93 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 7 +++

[dpdk-dev] [PATCH v12 23/26] app/testpmd: handle i40e in VF VLAN filter command

2017-01-17 Thread Wenzhuo Lu
From: Bernard Iremonger modify set_vf_rx_vlan function to handle the i40e PMD. Signed-off-by: Bernard Iremonger --- app/test-pmd/cmdline.c | 38 +++--- app/test-pmd/config.c | 13 - app/test-pmd/testpmd.h | 2 -- 3 files changed, 31 insertions(+),

[dpdk-dev] [PATCH v12 22/26] app/testpmd: add command to test VF VLAN tag on i40e

2017-01-17 Thread Wenzhuo Lu
From: Bernard Iremonger command is: set vf vlan tag port_id vf_id on|off Signed-off-by: Bernard Iremonger --- app/test-pmd/cmdline.c | 99 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 7 ++ 2 files changed, 106 insertions(+) diff --git a/ap

[dpdk-dev] [PATCH v12 25/26] net/i40e: set/clear VF stats from PF

2017-01-17 Thread Wenzhuo Lu
From: Qi Zhang This patch add support to get/clear VF statistics from PF side. Two APIs are added: rte_pmd_i40e_get_vf_stats. rte_pmd_i40e_reset_vf_stats. Signed-off-by: Qi Zhang --- drivers/net/i40e/i40e_ethdev.c| 79 +++ drivers/net/i40e/rte_pmd_i40e.h

[dpdk-dev] [PATCH v12 24/26] net/i40e: enhance in sanity check of MAC

2017-01-17 Thread Wenzhuo Lu
From: "Chen Jing D(Mark)" When VF sends request to add a new MAC address, PF host will check if it's a non-zero or unicast address, or it will return with error. In fact, VF still can set multicast address. This change remove to check if it's a unicast address. Signed-off-by: Chen Jing D(Mark)

[dpdk-dev] [PATCH v12 26/26] doc: update doc for VFD

2017-01-17 Thread Wenzhuo Lu
Update the doc and release note. Signed-off-by: Wenzhuo Lu --- doc/guides/contributing/design.rst | 14 ++ doc/guides/nics/i40e.rst | 1 + doc/guides/rel_notes/release_17_02.rst | 29 + 3 files changed, 44 insertions(+) diff --git a/doc

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

2017-01-17 Thread Jerin Jacob
On Mon, Jan 16, 2017 at 03:40:41PM +, 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 v6 14/18] net/ixgbe: parse L2 tunnel filter

2017-01-17 Thread Zhao1, Wei
Hi, Ferruh > -Original Message- > From: Yigit, Ferruh > Sent: Tuesday, January 17, 2017 12:39 AM > To: Adrien Mazarguil ; Zhao1, Wei > > Cc: dev@dpdk.org; Lu, Wenzhuo > Subject: Re: [dpdk-dev] [PATCH v6 14/18] net/ixgbe: parse L2 tunnel filter > > On 1/16/2017 1:03 PM, Adrien Mazarguil

Re: [dpdk-dev] [PATCH v6 3/8] pci: split match and probe function

2017-01-17 Thread Ferruh Yigit
On 1/17/2017 4:54 AM, Shreyansh Jain wrote: > Hello Ferruh, > > On Tuesday 17 January 2017 01:23 AM, Ferruh Yigit wrote: >> On 1/16/2017 3:38 PM, Shreyansh Jain wrote: >>> Matching of PCI device address and driver ID table is being done at two >>> discreet locations duplicating the code. (rte_eal_

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

2017-01-17 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > > > > #include > > -#include > > -#include > > +#include > > + > > +struct rte_mbuf; /* we just use mbuf pointers; no need to include > > rte_mbuf.h */ > > This "struct rte_mbuf" reference is not present in dpdk-next-eventdev tree

Re: [dpdk-dev] [PATCH v6 14/18] net/ixgbe: parse L2 tunnel filter

2017-01-17 Thread Ferruh Yigit
On 1/17/2017 9:27 AM, Zhao1, Wei wrote: > Hi, Ferruh > >> -Original Message- >> From: Yigit, Ferruh >> Sent: Tuesday, January 17, 2017 12:39 AM >> To: Adrien Mazarguil ; Zhao1, Wei >> >> Cc: dev@dpdk.org; Lu, Wenzhuo >> Subject: Re: [dpdk-dev] [PATCH v6 14/18] net/ixgbe: parse L2 tunnel

[dpdk-dev] [PATCH v7 0/9] Introducing EAL Bus-Device-Driver Model

2017-01-17 Thread Shreyansh Jain
Link to v6: [16] :: Introduction :: DPDK has been inherently a PCI inclined framework. Because of this, the design of device tree (or list) within DPDK is also PCI inclined. A non-PCI device doesn't have a way of being expressed without using hooks started from EAL to PMD. (Check 'Version Change

[dpdk-dev] [PATCH v7 1/9] eal/bus: introduce bus abstraction

2017-01-17 Thread Shreyansh Jain
This patch introduces the rte_bus abstraction for EAL. The model is: - One or more buses are connected to a CPU (or core) - One or more devices are conneted to a Bus - Drivers are running instances which manage one or more devices - Bus is responsible for identifying devices (and interrupt prop

[dpdk-dev] [PATCH v7 3/9] pci: split match and probe function

2017-01-17 Thread Shreyansh Jain
Matching of PCI device address and driver ID table is being done at two discreet locations duplicating the code. (rte_eal_pci_probe_one_driver and rte_eal_pci_detach_dev). Splitting the matching function into a public fn rte_pci_match. Signed-off-by: Shreyansh Jain --- lib/librte_eal/bsdapp/eal

[dpdk-dev] [PATCH v7 4/9] eal/bus: support for scanning of bus

2017-01-17 Thread Shreyansh Jain
Scan for bus discovers the devices available on the bus and adds them to a bus specific device list. Each bus mandatorily implements this method. Test cases for Bus are also updated by this patch. Signed-off-by: Shreyansh Jain --- app/test/test_bus.c | 175 ++

[dpdk-dev] [PATCH v7 6/9] eal: integrate bus scan and probe with EAL

2017-01-17 Thread Shreyansh Jain
Each bus implementation defines their own callbacks for scanning its bus and probing devices available on the bus. Enable EAL to call bus specific scan and probe functions during DPDK initialization. Existing PCI scan/probe continues to exist. It will removed in subsequent patches. Signed-off-by:

[dpdk-dev] [PATCH v7 2/9] test: add basic bus infrastructure tests

2017-01-17 Thread Shreyansh Jain
Verification of bus registration, deregistration methods. Signed-off-by: Shreyansh Jain --- app/test/Makefile | 2 +- app/test/test.h | 2 + app/test/test_bus.c | 359 lib/librte_eal/common/inc

[dpdk-dev] [PATCH v7 9/9] eal: enable hotplugging of devices on bus

2017-01-17 Thread Shreyansh Jain
Given a bus, attach and detach callbacks allow the implementation to handles calls from EAL for attaching or detaching a named device. Signed-off-by: Shreyansh Jain --- lib/librte_eal/bsdapp/eal/eal_pci.c | 2 + lib/librte_eal/common/eal_common_dev.c | 56 - lib/librte_

[dpdk-dev] [PATCH v7 5/9] eal/bus: introduce support for bus probing

2017-01-17 Thread Shreyansh Jain
Bus implementations can implement a probe handler to match the devices scanned against the drivers registered. This patch introduces the callback which would be implemented for PCI in subsequent patch. Signed-off-by: Shreyansh Jain --- lib/librte_eal/common/eal_common_bus.c | 1 + lib/librte_

Re: [dpdk-dev] [PATCH v6 3/8] pci: split match and probe function

2017-01-17 Thread Shreyansh Jain
On Monday 16 January 2017 11:54 PM, Stephen Hemminger wrote: On Mon, 16 Jan 2017 21:08:22 +0530 Shreyansh Jain wrote: -rte_eal_pci_probe_one_driver(struct rte_pci_driver *dr, struct rte_pci_device *dev) +int +rte_pci_match(struct rte_pci_driver *pci_drv, + struct rte_pci_devic

[dpdk-dev] [PATCH v7 8/9] eal: enable PCI bus

2017-01-17 Thread Shreyansh Jain
Remove EAL initiated direct PCI scan/probe and enable PCI Bus linkage. Signed-off-by: Shreyansh Jain --- lib/librte_eal/bsdapp/eal/eal.c | 7 - lib/librte_eal/bsdapp/eal/eal_pci.c | 4 +++ lib/librte_eal/bsdapp/eal/rte_eal_version.map | 2 -- lib/librte_eal/c

[dpdk-dev] [PATCH v7 7/9] test: update bus and pci unit test cases

2017-01-17 Thread Shreyansh Jain
Signed-off-by: Shreyansh Jain --- app/test/test_bus.c | 152 app/test/test_pci.c | 164 2 files changed, 266 insertions(+), 50 deletions(-) diff --git a/app/test/test_bus.c b/app/test/test_bus.c

Re: [dpdk-dev] [PATCH v6 7/8] eal: enable PCI bus

2017-01-17 Thread Shreyansh Jain
On Tuesday 17 January 2017 01:28 AM, Ferruh Yigit wrote: On 1/16/2017 3:38 PM, Shreyansh Jain wrote: Remove EAL initiated direct PCI scan/probe and enable PCI Bus linkage. Signed-off-by: Shreyansh Jain --- <...> -/* Init the PCI EAL subsystem */ -int -rte_eal_pci_init(void) -{ - /* f

Re: [dpdk-dev] [PATCH v6 5/8] eal: introduce bus scan and probe in EAL

2017-01-17 Thread Shreyansh Jain
Just an update on things fixed/updated in v7 against these comments: On Tuesday 17 January 2017 01:28 AM, Ferruh Yigit wrote: On 1/16/2017 3:38 PM, Shreyansh Jain wrote: Each bus implementation defines their own callbacks for scanning bus and probing devices available on the bus. Enable EAL to

Re: [dpdk-dev] [PATCH v6 3/8] pci: split match and probe function

2017-01-17 Thread Shreyansh Jain
On Tuesday 17 January 2017 03:28 PM, Ferruh Yigit wrote: On 1/17/2017 4:54 AM, Shreyansh Jain wrote: Hello Ferruh, On Tuesday 17 January 2017 01:23 AM, Ferruh Yigit wrote: On 1/16/2017 3:38 PM, Shreyansh Jain wrote: Matching of PCI device address and driver ID table is being done at two discr

Re: [dpdk-dev] [PATCH] app/test: fix symmetric session free in crypto perf tests

2017-01-17 Thread De Lara Guarch, Pablo
Hi Arek, > -Original Message- > From: Kusztal, ArkadiuszX > Sent: Monday, January 16, 2017 11:50 AM > To: dev@dpdk.org > Cc: Trahe, Fiona; De Lara Guarch, Pablo; Griffin, John; Jain, Deepak K; > Kusztal, ArkadiuszX > Subject: [PATCH] app/test: fix symmetric session free in crypto perf test

Re: [dpdk-dev] [PATCH] net/virtio: fix advertised Rx offload capabilities

2017-01-17 Thread Olivier Matz
On Mon, 16 Jan 2017 14:12:43 +0800, Yuanhan Liu wrote: > On Wed, Jan 11, 2017 at 06:05:25PM +0100, Olivier Matz wrote: > > When the virtio PMD is used on top of a vhost that does not support > > offloads, Rx offload capabilities are still advertised by > > virtio_dev_info_get(). But if an applicat

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

2017-01-17 Thread Jerin Jacob
On Tue, Jan 17, 2017 at 09:59:59AM +, Van Haaren, Harry wrote: > > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > > > > > > #include > > > -#include > > > -#include > > > +#include > > > + > > > +struct rte_mbuf; /* we just use mbuf pointers; no need to include > > > rte_mbuf

Re: [dpdk-dev] [PATCH v7 9/9] eal: enable hotplugging of devices on bus

2017-01-17 Thread Ferruh Yigit
On 1/17/2017 10:09 AM, Shreyansh Jain wrote: > Given a bus, attach and detach callbacks allow the implementation to > handles calls from EAL for attaching or detaching a named device. > > Signed-off-by: Shreyansh Jain <...> > +/** > + * Search and detach a PCI device from PCI Bus > + * Implemen

Re: [dpdk-dev] [PATCH v7 0/9] Introducing EAL Bus-Device-Driver Model

2017-01-17 Thread Ferruh Yigit
On 1/17/2017 10:09 AM, Shreyansh Jain wrote: <...> > Shreyansh Jain (9): > eal/bus: introduce bus abstraction > test: add basic bus infrastructure tests > pci: split match and probe function > eal/bus: support for scanning of bus > eal/bus: introduce support for bus probing > eal: int

[dpdk-dev] [PATCH v2] net/virtio: fix advertised Rx offload capabilities

2017-01-17 Thread Olivier Matz
When the virtio PMD is used on top of a vhost that does not support offloads, Rx offload capabilities are still advertised by virtio_dev_info_get(). But if an application tries to start the PMD with Rx offloads enabled (rxmode.hw_ip_checksum = 1), the initialization of the device will fail with -EN

[dpdk-dev] [PATCH v4] Scheduler: add driver for scheduler crypto pmd

2017-01-17 Thread Fan Zhang
This patch provides the initial implementation of the scheduler poll mode driver using DPDK cryptodev framework. Scheduler PMD is used to schedule and enqueue the crypto ops to the hardware and/or software crypto devices attached to it (slaves). The dequeue operation from the slave(s), and the pos

Re: [dpdk-dev] [PATCH v7 1/6] lib: add information metrics library

2017-01-17 Thread Van Haaren, Harry
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Remy Horton > This patch adds a new information metric library that allows other > modules to register named metrics and update their values. It is > intended to be independent of ethdev, rather than mixing ethdev

Re: [dpdk-dev] [PATCH v7 9/9] eal: enable hotplugging of devices on bus

2017-01-17 Thread Shreyansh Jain
Hi Ferruh, > -Original Message- > From: Ferruh Yigit [mailto:ferruh.yi...@intel.com] > Sent: Tuesday, January 17, 2017 4:18 PM > To: Shreyansh Jain ; david.march...@6wind.com > Cc: dev@dpdk.org; thomas.monja...@6wind.com > Subject: Re: [dpdk-dev] [PATCH v7 9/9] eal: enable hotplugging of d

Re: [dpdk-dev] [PATCH v2] net/virtio: fix advertised Rx offload capabilities

2017-01-17 Thread Yuanhan Liu
On Tue, Jan 17, 2017 at 11:35:53AM +0100, Olivier Matz wrote: > + host_features = hw->vtpci_ops->get_features(hw); Note that hw->vtpci_ops doesn't exist any more, due to fixing the virtio multiple process bugs. I changed it to: host_features = VTPCI_OPS(hw)->get_features(hw); And a

Re: [dpdk-dev] [PATCH v7 2/6] app/proc_info: add metrics displaying

2017-01-17 Thread Van Haaren, Harry
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Remy Horton > Sent: Monday, January 16, 2017 4:19 PM > To: dev@dpdk.org > Cc: Pattan, Reshma ; Thomas Monjalon > > Subject: [dpdk-dev] [PATCH v7 2/6] app/proc_info: add metrics displaying > > From: Reshma Pattan

Re: [dpdk-dev] [PATCH v7 3/6] lib: add bitrate statistics library

2017-01-17 Thread Van Haaren, Harry
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Remy Horton > Sent: Monday, January 16, 2017 4:20 PM > To: dev@dpdk.org > Cc: Thomas Monjalon > Subject: [dpdk-dev] [PATCH v7 3/6] lib: add bitrate statistics library > > This patch adds a library that calculates

Re: [dpdk-dev] [PATCH v7 5/6] lib: added new library for latency stats

2017-01-17 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jerin Jacob > Sent: Tuesday, January 17, 2017 4:30 AM > To: Horton, Remy > Cc: dev@dpdk.org; Pattan, Reshma ; Thomas > Monjalon > Subject: Re: [dpdk-dev] [PATCH v7 5/6] lib: added new library for latency > stats >

Re: [dpdk-dev] [PATCH 5/5] net/virtio: fix Tso when mbuf is shared

2017-01-17 Thread Olivier Matz
Hi Yuanhan, On Mon, 16 Jan 2017 14:48:19 +0800, Yuanhan Liu wrote: > On Mon, Jan 09, 2017 at 06:46:25PM +0100, Olivier Matz wrote: > > The virtio specifications requires that the L4 checksum is set to > > the pseudo header checksum. You can search for "pseudo header" in > > the following doc: > >

Re: [dpdk-dev] [PATCH v7 4/6] app/test-pmd: add bitrate statistics calculation

2017-01-17 Thread Van Haaren, Harry
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Remy Horton > Sent: Monday, January 16, 2017 4:20 PM > To: dev@dpdk.org > Cc: Thomas Monjalon > Subject: [dpdk-dev] [PATCH v7 4/6] app/test-pmd: add bitrate statistics > calculation > > Calculate bitrate statisti

Re: [dpdk-dev] [PATCH v2] net/virtio: fix advertised Rx offload capabilities

2017-01-17 Thread Olivier Matz
On Tue, 17 Jan 2017 19:08:38 +0800, Yuanhan Liu wrote: > On Tue, Jan 17, 2017 at 11:35:53AM +0100, Olivier Matz wrote: > > > + host_features = hw->vtpci_ops->get_features(hw); > > Note that hw->vtpci_ops doesn't exist any more, due to fixing the > virtio multiple process bugs. I changed it

[dpdk-dev] [PATCH v6 0/2] crypto/aesni_gcm: migration from MB library to ISA-L

2017-01-17 Thread Piotr Azarewicz
Current Cryptodev AES-NI GCM PMD is implemented using Multi Buffer Crypto library.This patch reimplement the device using ISA-L Crypto library: https://github.com/01org/isa-l_crypto. The migration entailed the following additional support for: * GMAC algorithm. * 256-bit cipher key. * Sessio

[dpdk-dev] [PATCH v6 1/2] crypto/aesni_gcm: migration from MB library to ISA-L

2017-01-17 Thread Piotr Azarewicz
Current Cryptodev AES-NI GCM PMD is implemented using Multi Buffer Crypto library.This patch reimplement the device using ISA-L Crypto library: https://github.com/01org/isa-l_crypto. The migration entailed the following additional support for: * GMAC algorithm. * 256-bit cipher key. * Sessio

[dpdk-dev] [PATCH v6 2/2] app/test: add GCM additional tests

2017-01-17 Thread Piotr Azarewicz
Added new unit tests for AES-NI GCM PMD to verify new functionalities. Signed-off-by: Piotr Azarewicz Acked-by: Declan Doherty --- v5 changes: - rebase on top of dpdk-next-crypto - fix typo v4 changes: - rebase on top of dpdk-next-crypto v3 changes: - rebase on top of dpdk-next-crypto v2 cha

Re: [dpdk-dev] [PATCH v7 5/6] lib: added new library for latency stats

2017-01-17 Thread Van Haaren, Harry
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Remy Horton > Sent: Monday, January 16, 2017 4:20 PM > To: dev@dpdk.org > Cc: Pattan, Reshma ; Thomas Monjalon > > Subject: [dpdk-dev] [PATCH v7 5/6] lib: added new library for latency stats > > From: Reshma Patt

Re: [dpdk-dev] [PATCH v7 6/6] app/test-pmd: add latency statistics calculation

2017-01-17 Thread Van Haaren, Harry
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Remy Horton > Sent: Monday, January 16, 2017 4:20 PM > To: dev@dpdk.org > Cc: Pattan, Reshma ; Thomas Monjalon > > Subject: [dpdk-dev] [PATCH v7 6/6] app/test-pmd: add latency statistics > calculation > > From:

Re: [dpdk-dev] drops while transmitting to the kni using rte_kni_tx_burst()

2017-01-17 Thread Shirley Avishour
Hi, can the KNI_KTHREAD_RESCHEDULE_INTERVAL decrease to lower values than 5 usecs?? is it effective at all? and what is the purpose of KNI_RX_LOOP_NUM? I am not sure I understand what it does and what should I do with it to improve the performance. thanks! On Mon, Jan 16, 2017 at 5:43 PM, Shirley

Re: [dpdk-dev] [PATCH v7 5/6] lib: added new library for latency stats

2017-01-17 Thread Jerin Jacob
On Tue, Jan 17, 2017 at 11:19:24AM +, Mcnamara, John wrote: > > -Original Message- > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jerin Jacob > > Sent: Tuesday, January 17, 2017 4:30 AM > > To: Horton, Remy > > Cc: dev@dpdk.org; Pattan, Reshma ; Thomas > > Monjalon > > Subje

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

2017-01-17 Thread Wu, Jingjing
Hi, Oliver Let me Christos reports this issue is introduced by the http://dpdk.org/ml/archives/dev/2016-September/047663.html Which is the commit commit edfb226f69bf68d514c9abae4b99b98aeb7c6a32 Author: Qi Zhang Date: Tue Sep 27 09:37:21 2016 +0800 net/i40e: use PHY type to check PHY

Re: [dpdk-dev] [PATCH v4 20/29] net/ena: use eal I/O device memory read/write API

2017-01-17 Thread Jan Mędala
Jerin, Santosh, As you are introducing improved I/O access API, I would like to ask to change ENA platform code to: * #define ENA_REG_WRITE32(value, reg) rte_write32_relaxed((value), (reg))* * #define ENA_REG_READ32(reg) rte_read32_relaxed((reg))* There is no more need to have read/write functio

[dpdk-dev] [PATCH] mbuf: use pktmbuf helper to create the pool

2017-01-17 Thread Hemant Agrawal
When possible, replace the uses of rte_mempool_create() with the helper provided in librte_mbuf: rte_pktmbuf_pool_create(). This is the preferred way to create a mbuf pool. This also updates the documentation. Signed-off-by: Olivier Matz Signed-off-by: Hemant Agrawal --- This patch is derived

Re: [dpdk-dev] [PATCH v12 00/26] Support VFD on i40e - EXPERIMENTAL

2017-01-17 Thread Ferruh Yigit
On 1/17/2017 8:45 AM, Wenzhuo Lu wrote: <...> > Bernard Iremonger (7): > net/i40e: set VF VLAN insertion from PF > net/i40e: set VF broadcast mode from PF > net/i40e: set VF VLAN tag from PF > net/i40e: set VF VLAN filter from PF > app/testpmd: add command to test VF broadcast mode on i40

[dpdk-dev] [PATCH v5] crypto/scheduler: add driver for scheduler crypto pmd

2017-01-17 Thread Fan Zhang
This patch provides the initial implementation of the scheduler poll mode driver using DPDK cryptodev framework. Scheduler PMD is used to schedule and enqueue the crypto ops to the hardware and/or software crypto devices attached to it (slaves). The dequeue operation from the slave(s), and the pos

[dpdk-dev] [PATCHv4 00/33] NXP DPAA2 PMD

2017-01-17 Thread Hemant Agrawal
The patch series adds NXP’s QorIQ-Layerscape DPAA2 Architecture based fsl-mc bus driver and network SoC PMD. This version of the driver supports NXP LS208xA, LS204xA and LS108x families Network SoCs. DPAA2, or Data Path Acceleration Architecture, is a hardware architecture designed for high-speed

[dpdk-dev] [PATCHv4 02/33] doc: add dpaa2 nic details

2017-01-17 Thread Hemant Agrawal
This patch adds the NXP dpaa2 architecture and pmd details in the Network interfaces section. Signed-off-by: Hemant Agrawal --- MAINTAINERS| 8 + doc/guides/nics/dpaa2.rst | 594 + doc/guides/nics/features/dpaa2.ini |

[dpdk-dev] [PATCHv4 01/33] mk/dpaa2: add the crc support to the machine type

2017-01-17 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal Acked-by: Jerin Jacob --- mk/machine/dpaa2/rte.vars.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mk/machine/dpaa2/rte.vars.mk b/mk/machine/dpaa2/rte.vars.mk index 8541633..e4735c2 100644 --- a/mk/machine/dpaa2/rte.vars.mk +++ b/mk/mach

[dpdk-dev] [PATCHv4 04/33] bus/fslmc: introducing fsl-mc bus driver

2017-01-17 Thread Hemant Agrawal
The fslmc bus driver is a rte_bus driver which scans the fsl-mc bus for NXP DPAA2 SoCs. Signed-off-by: Hemant Agrawal --- config/common_base | 6 + config/defconfig_arm64-dpaa2-linuxapp-gcc | 5 + drivers/Makefile | 1 + driver

[dpdk-dev] [PATCHv4 05/33] bus/fslmc: introduce mc object functions

2017-01-17 Thread Hemant Agrawal
This patch intoduces the DPAA2 MC(Management complex Driver). This is a minimal set of low level functions to send and receive commands to the fsl-mc. It includes support for basic management commands and commands to manipulate MC objects. This is common to be used by various DPAA2 PMDs. e.g.net,

[dpdk-dev] [PATCHv4 06/33] bus/fslmc: add mc dpni object support

2017-01-17 Thread Hemant Agrawal
This patch add support for dpni object support in MC driver. DPNI represent a network interface object in DPAA2. Signed-off-by: Alex Marginean Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/Makefile |1 + drivers/bus/fslmc/mc/dpni.c| 732 ++

[dpdk-dev] [PATCHv4 07/33] bus/fslmc: add mc dpio object support

2017-01-17 Thread Hemant Agrawal
This patch adds the DPIO object support in MC driver. DPIO - Data Path Input Output represent the processing context to access the QBMAN HW for packet I/O. Signed-off-by: Alex Marginean Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/Makefile | 1 + drivers/bus/fslmc/

[dpdk-dev] [PATCHv4 09/33] bus/fslmc: add mc dpseci object support

2017-01-17 Thread Hemant Agrawal
dpseci represent a instance of SEC HW in DPAA2. Signed-off-by: Cristian Sovaiala Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/Makefile | 1 + drivers/bus/fslmc/mc/dpseci.c | 527 drivers/bus/fslmc/mc/fsl_dpseci.h |

[dpdk-dev] [PATCHv4 11/33] bus/fslmc: add vfio support

2017-01-17 Thread Hemant Agrawal
Add support for using VFIO for dpaa2 based fsl-mc bus. There are some differences in the way vfio used for fsl-mc bus from the eal vfio. - The scanning of bus for individual objects on the basis of the DPRC container. - The use and mapping of MC portal for object access With the evolution of

[dpdk-dev] [PATCHv4 10/33] eal/vfio: adding vfio utility functions in map file

2017-01-17 Thread Hemant Agrawal
adding extra vfio utility functions to map file. They will be used by other vfio supported buses like fslmc bus for NXP DPAA2 devices Signed-off-by: Hemant Agrawal --- lib/librte_eal/bsdapp/eal/rte_eal_version.map | 3 +++ lib/librte_eal/linuxapp/eal/rte_eal_version.map | 3 +++ 2 files change

[dpdk-dev] [PATCHv4 08/33] bus/fslmc: add mc dpbp object support

2017-01-17 Thread Hemant Agrawal
DPBP object represent a hw based buffer pool instance in the DPAA2 hardware. Signed-off-by: Alex Marginean Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/Makefile | 1 + drivers/bus/fslmc/mc/dpbp.c| 230 + drivers/bus/fslmc/

[dpdk-dev] [PATCHv4 13/33] net/dpaa2: introducing NXP dpaa2 pmd driver

2017-01-17 Thread Hemant Agrawal
add support for fsl-mc bus based dpaa2 pmd driver. Signed-off-by: Hemant Agrawal --- config/common_base | 4 + config/defconfig_arm64-dpaa2-linuxapp-gcc | 5 + drivers/bus/Makefile| 2 + drivers/common/Makefile | 2 +

[dpdk-dev] [PATCHv4 12/33] bus/fslmc: scan for net and sec devices

2017-01-17 Thread Hemant Agrawal
This patch will add support in fslmc vfio process to scan and parse the dpni and dpseci object for net and crypto devices. It will add the scanned devices to the fslmc bus. Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/fslmc_vfio.c | 63 +- 1 file ch

[dpdk-dev] [PATCHv4 14/33] bus/fslmc: add debug log message support

2017-01-17 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- config/common_base| 7 +++ config/defconfig_arm64-dpaa2-linuxapp-gcc | 5 ++ drivers/bus/fslmc/Makefile| 5 ++ drivers/bus/fslmc/fslmc_logs.h| 76 +++ drivers/common/dpaa2/qbman/Ma

[dpdk-dev] [PATCHv4 16/33] drivers/pool/dpaa2: adding hw offloaded mempool

2017-01-17 Thread Hemant Agrawal
Adding NXP DPAA2 architecture specific mempool support Each mempool instance is represented by a DPBP object from the FSL-MC bus. This patch also registers a dpaa2 type MEMPOOL OPS Signed-off-by: Hemant Agrawal --- config/common_base| 1 + config/defconfig_arm6

[dpdk-dev] [PATCHv4 17/33] drivers/common/dpaa2: dpio routine to affine to crypto threads

2017-01-17 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/portal/dpaa2_hw_dpio.c | 45 ++ drivers/bus/fslmc/portal/dpaa2_hw_dpio.h | 3 ++ drivers/bus/fslmc/rte_pmd_fslmcbus_version.map | 1 + 3 files changed, 49 insertions(+) diff --git a/drivers/bus/fslmc/portal

[dpdk-dev] [PATCHv4 15/33] drivers/common/dpaa2: dpio portal driver

2017-01-17 Thread Hemant Agrawal
The portal driver is bound to DPIO objects discovered on the fsl-mc bus and provides services that: - allow other drivers, such as the Ethernet driver, to enqueue and dequeue frames for their respective objects A system will typically allocate 1 DPIO object per CPU to allow queuing operations to

[dpdk-dev] [PATCHv4 19/33] net/dpaa2: add rss flow distribution

2017-01-17 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- doc/guides/nics/features/dpaa2.ini | 1 + drivers/net/dpaa2/Makefile | 1 + drivers/net/dpaa2/base/dpaa2_hw_dpni.c | 287 + drivers/net/dpaa2/dpaa2_ethdev.c | 31 +++- drivers/net/dpaa2/dpaa2_ethdev.h

[dpdk-dev] [PATCHv4 18/33] net/dpaa2: adding eth ops to dpaa2

2017-01-17 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- doc/guides/nics/features/dpaa2.ini | 1 + drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 20 ++ drivers/net/dpaa2/Makefile | 3 + drivers/net/dpaa2/dpaa2_ethdev.c| 412 +++- drivers/net/dpaa2/dpaa2_ethdev.h

[dpdk-dev] [PATCHv4 21/33] net/dpaa2: attach the buffer pool to dpni

2017-01-17 Thread Hemant Agrawal
This patch configures a MC-DPNI based DPAA2 PMD network port with a DPBP based buffer pool. Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 10 ++ drivers/net/dpaa2/Makefile | 3 ++ drivers/net/dpaa2/base/dpaa2_hw_dpni.c | 57 +++

[dpdk-dev] [PATCHv4 20/33] net/dpaa2: configure mac address at init

2017-01-17 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- drivers/net/dpaa2/dpaa2_ethdev.c | 28 drivers/net/dpaa2/dpaa2_ethdev.h | 3 +++ 2 files changed, 31 insertions(+) diff --git a/drivers/net/dpaa2/dpaa2_ethdev.c b/drivers/net/dpaa2/dpaa2_ethdev.c index 1d7ca66..54f4498 100644 --- a/

  1   2   3   4   >