[dpdk-dev] [PATCH] openssl pmd: rename SW crypto device from libcrypto to openssl

2016-10-20 Thread De Lara Guarch, Pablo
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Jain, Deepak K > Sent: Wednesday, October 19, 2016 1:27 AM > To: Mrozowicz, SlawomirX; Doherty, Declan > Cc: dev at dpdk.org; Mrozowicz, SlawomirX > Subject: Re: [dpdk-dev] [PATCH] openssl pmd: rename SW

[dpdk-dev] [opnfv-tech-discuss][apex][ovsnfv]Problem showed up with OVS/DPDK with Cisco VIC adapter

2016-10-20 Thread John Daley (johndale)
Hi, Please see inline. Thanks, john > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas F Herbert > Sent: Tuesday, October 18, 2016 1:35 PM > To: dev at dpdk.org > Cc: Keith Burns ; Edward Warnicke > ; opnfv-tech-discuss at lists.opnfv.org > Subject:

[dpdk-dev] DPDK Summit Userspace - streaming live

2016-10-20 Thread Frederico Cadete
On Thu, 2016-10-20 at 11:04 +, St Leger, Jim wrote: > If you couldn't make it to the Userspace event we are streaming it > live on Periscope.? https://www.periscope.tv/jimstleger > Thank you. This is much appreciated. Regards, Frederico

[dpdk-dev] [PATCH V2 2/2] virtio: support IOMMU platform

2016-10-20 Thread Jason Wang
On 2016?10?11? 12:14, Yuanhan Liu wrote: > On Fri, Oct 07, 2016 at 07:24:44AM +0300, Michael S. Tsirkin wrote: >> On Wed, Sep 28, 2016 at 04:25:12PM +0800, Jason Wang wrote: >>> Negotiate VIRTIO_F_IOMMU_PLATFORM to have IOMMU support. >>> >>> Signed-off-by: Jason Wang >>> --- >>> Changes from

[dpdk-dev] DPDK Summit Userspace - streaming live

2016-10-20 Thread St Leger, Jim
If you couldn't make it to the Userspace event we are streaming it live on Periscope. https://www.periscope.tv/jimstleger The video quality isn't the best, but maybe some talks are worth listening to. The audio quality seems okay. The agenda and most of the presentations are posted online.

[dpdk-dev] [PATCH V2 2/2] virtio: support IOMMU platform

2016-10-20 Thread Jason Wang
On 2016?10?07? 12:24, Michael S. Tsirkin wrote: > On Wed, Sep 28, 2016 at 04:25:12PM +0800, Jason Wang wrote: >> Negotiate VIRTIO_F_IOMMU_PLATFORM to have IOMMU support. >> >> Signed-off-by: Jason Wang >> --- >> Changes from v1: >> - remove unnecessary NEED_MAPPING flag > One thing we probably

[dpdk-dev] [PATCH] net/ixgbe: prevent duplicate callback on list

2016-10-20 Thread Scott Daniels
On Wed, 19 Oct 2016, DANIELS, EDWARD S (EDWARD) wrote: > *** Security Advisory: This Message Originated Outside of AT ***. > Reference http://cso.att.com/EmailSecurity/IDSP.html for more information. > > > > On Wed, 19 Oct 2016, Lu, Wenzhuo wrote: > >> Hi Scott, >> >>> -Original

[dpdk-dev] [PATCH v2] lib/ether: prevent duplicate callback on list

2016-10-20 Thread E. Scott Daniels
This change prevents the attempt to add a structure which is already on the callback list. If a struct with matching parameters is found on the list, then no action is taken. If a struct with matching parameters is found on the list, then no action is taken. Fixes: ac2f69c ("ethdev: fix crash if

[dpdk-dev] [PATCH] [RFC] Elastic Flow Distributor

2016-10-20 Thread Pablo de Lara
The following RFC shows the functionality and usage overview of the new Elastic Flow Distributor (EFD) library. Library code is included in the RFC (implemention in progress, API complete), with a sample application to demonstrate the usage of the library, based on the existing server/client

[dpdk-dev] [PATCH 1/3] mbuf: embedding timestamp into the packet

2016-10-20 Thread Oleg Kuporosov
Hello Konstantin, > > My vote also would be to have timestamp in the second cache line. > About moving seqn to the 2-nd cache line too - that's probably a fair point. It may impact throughput till ~6% for applications required such embedded Timestamps. > About the rest of the patch: > Do you

[dpdk-dev] [PATCH 1/3] mbuf: embedding timestamp into the packet

2016-10-20 Thread Jan Blunck
On Thu, Oct 20, 2016 at 4:03 AM, Oleg Kuporosov wrote: > Hello Konstantin, > >> >> My vote also would be to have timestamp in the second cache line. >> About moving seqn to the 2-nd cache line too - that's probably a fair point. > > It may impact throughput till ~6% for applications required such

[dpdk-dev] [PATCH 2/2] drivers: register aliases for renamed VDEV drivers

2016-10-20 Thread Jan Blunck
This registers the legacy names of the driver being renamed in commit 2f45703c17acb943aaded9f79676fd56a72542b2. Signed-off-by: Jan Blunck --- drivers/net/af_packet/rte_eth_af_packet.c | 1 + drivers/net/bonding/rte_eth_bond_pmd.c| 1 + drivers/net/mpipe/mpipe_tilegx.c | 2 ++

[dpdk-dev] [PATCH 1/2] drivers: add name alias registration for rte_driver

2016-10-20 Thread Jan Blunck
This adds infrastructure for drivers to allow being requested by an alias so that a renamed driver can still get loaded by its legacy name. Signed-off-by: Jan Blunck --- lib/librte_eal/common/eal_common_vdev.c | 8 lib/librte_eal/common/include/rte_dev.h | 1 +

[dpdk-dev] [PATCH v2] net/i40e: fix Rx hang when disable LLDP

2016-10-20 Thread Qi Zhang
Remove stopping LLDP as a workaround for a known errata which can cause Rx hang. Fixes: 4861cde46116 ("i40e: new poll mode driver") Signed-off-by: Qi Zhang --- v2: - more correct commit log. drivers/net/i40e/i40e_ethdev.c | 9 - 1 file changed, 9 deletions(-) diff --git

[dpdk-dev] [PATCH] net/i40e: fix Rx hang when disable LLDP

2016-10-20 Thread Qi Zhang
Disabling LLDP result in the device firmware not configuring the receive packet buffer, this possibly causing a receive hang. Fixes: 4861cde46116 ("i40e: new poll mode driver") Signed-off-by: Qi Zhang --- drivers/net/i40e/i40e_ethdev.c | 9 - 1 file changed, 9 deletions(-) diff --git

[dpdk-dev] [PATCH] net/ixgbe: prevent duplicate callback on list

2016-10-20 Thread Lu, Wenzhuo
Hi Scott, > -Original Message- > From: Scott Daniels [mailto:daniels at research.att.com] > Sent: Thursday, October 20, 2016 10:11 AM > To: Lu, Wenzhuo > Cc: Zhang, Helin; Iremonger, Bernard; dev at dpdk.org; ZELEZNIAK, ALEX > Subject: RE: [dpdk-dev] [PATCH] net/ixgbe: prevent duplicate

[dpdk-dev] [PATCH] net/ixgbe: prevent duplicate callback on list

2016-10-20 Thread Lu, Wenzhuo
Hi Scott, > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of E. Scott Daniels > Sent: Thursday, October 20, 2016 6:23 AM > To: Zhang, Helin; Iremonger, Bernard > Cc: dev at dpdk.org; az5157 at att.com; E. Scott Daniels > Subject: [dpdk-dev] [PATCH] net/ixgbe:

[dpdk-dev] [PATCH v5 1/2] net/ixgbe: support multiqueue mode VMDq DCB with SRIOV

2016-10-20 Thread Lu, Wenzhuo
Hi, > -Original Message- > From: Iremonger, Bernard > Sent: Wednesday, October 19, 2016 6:21 PM > To: dev at dpdk.org; Shah, Rahul R; Lu, Wenzhuo > Cc: Iremonger, Bernard > Subject: [PATCH v5 1/2] net/ixgbe: support multiqueue mode VMDq DCB with > SRIOV > > Modify ixgbe_check_mq_mode

[dpdk-dev] [PATCH v2 0/2] net/ixgbe: fix VF VLAN insert

2016-10-20 Thread Lu, Wenzhuo
Hi, > -Original Message- > From: Iremonger, Bernard > Sent: Wednesday, October 19, 2016 10:48 PM > To: dev at dpdk.org; daniels at research.att.com; Lu, Wenzhuo; az5157 at > att.com > Cc: Iremonger, Bernard > Subject: [PATCH v2 0/2] net/ixgbe: fix VF VLAN insert > > Changes in v2: > Add

[dpdk-dev] [PATCH] net/ixgbe: fix vlan insert parameter type and its use

2016-10-20 Thread Lu, Wenzhuo
Hi Bernard, > -Original Message- > From: Iremonger, Bernard > Sent: Wednesday, October 19, 2016 6:56 PM > To: Lu, Wenzhuo; E. Scott Daniels; Zhang, Helin > Cc: dev at dpdk.org; az5157 at att.com > Subject: RE: [dpdk-dev] [PATCH] net/ixgbe: fix vlan insert parameter type and > its > use