[dpdk-dev] [PATCH v7 3/5] ethdev: redesign link speed config API

2016-01-31 Thread Marc
On 29 January 2016 at 17:16, N?lio Laranjeiro wrote: > Hi Marc, > > On Fri, Jan 29, 2016 at 01:42:05AM +0100, Marc Sune wrote: > >[...] > > /** > > - * Device supported speeds > > - */ > > -#define ETH_SPEED_CAP_NOT_PHY(0) /*< No phy media > */ > > -#define ETH_SPEED_CAP_10M_HD (1 <<

[dpdk-dev] [PATCH v7 5/5] ethdev: add rte_eth_speed_to_bm_flag() to ver. map

2016-01-31 Thread Marc
On 29 January 2016 at 14:05, Panu Matilainen wrote: > On 01/29/2016 02:42 AM, Marc Sune wrote: > >> Added rte_eth_speed_to_bm_flag() to DPDK2.2 version map. >> >> Signed-off-by: Marc Sune >> --- >> lib/librte_ether/rte_ether_version.map | 6 ++ >> 1 file changed, 6 insertions(+) >> >>

[dpdk-dev] [PATCH] null_crypto_pmd: PMD to support null crypto operations

2016-01-31 Thread Declan Doherty
This patch provides the implementation of a NULL crypto PMD, which supports NULL cipher and NULL authentication operations, which can be chained together as follows: - Authentication Only - Cipher Only - Authentication then Cipher - Cipher then Authentication As this is a NULL operation device

[dpdk-dev] [PATCH] example/ipsec-secgw: ipsec security gateway

2016-01-31 Thread Jerin Jacob
On Fri, Jan 29, 2016 at 08:29:12PM +, Sergio Gonzalez Monroy wrote: > Sample app implementing an IPsec Security Geteway. > The main goal of this app is to show the use of cryptodev framework > in a real world application. > > Currently only supported static IPv4 IPsec tunnels using AES-CBC >

[dpdk-dev] [PATCH 2/2] cxgbe: update license year to 2016

2016-01-31 Thread Rahul Lakkireddy
Update CXGBE PMD license year to 2016. Signed-off-by: Rahul Lakkireddy Signed-off-by: Kumar Sanghvi --- doc/guides/nics/cxgbe.rst | 2 +- drivers/net/cxgbe/Makefile | 2 +- drivers/net/cxgbe/base/adapter.h| 2 +- drivers/net/cxgbe/base/common.h | 2 +-

[dpdk-dev] [PATCH 1/2] cxgbe: fix to copy pci info to other ports under same PF

2016-01-31 Thread Rahul Lakkireddy
Chelsio NIC ports share a single PF. Move rte_eth_copy_pci_info() to copy the pci device information to the remaining ports as well. Fixes: eeefe73f0af1 ("drivers: copy PCI device info to ethdev data") Signed-off-by: Rahul Lakkireddy Signed-off-by: Kumar Sanghvi ---

[dpdk-dev] [PATCH 0/2] cxgbe: Minor bug fix and update license year

2016-01-31 Thread Rahul Lakkireddy
Patch 1 fixes an issue where pci device information was not being copied to other ports on the Chelsio NIC. Patch 2 updates the license year for CXGBE PMD to 2016. Rahul Lakkireddy (2): cxgbe: fix to copy pci info to other ports under same PF cxgbe: update license year to 2016