[dpdk-dev] [PATCH] net/i40e: fix wrong return value when handling PF message

2016-12-21 Thread Wenzhuo Lu
When VF receives a message from PF, it should check the return value. But in i40evf_execute_vf_cmd the value is ignored and not returned to the caller. Fixes: 95cd21f45d1b ("i40evf: allocate virtchnl commands buffer per VF") Signed-off-by: Wenzhuo Lu --- drivers/net/i40e/i40e_ethdev.h| 2 +-

[dpdk-dev] [PATCH] app/testpmd: refine xstats show

2016-12-21 Thread Jianfeng Tan
When using "show port xstats all" command to show xstats, the output is usually too long to obtain what you really want, expecially when multi-queue is enabled. This patch refines this situation by skipping showing those with value of zero. Signed-off-by: Jianfeng Tan --- app/test-pmd/config.c

Re: [dpdk-dev] [PATCH v3] drivers: advertise kmod dependencies in pmdinfo

2016-12-21 Thread Andrew Rybchenko
On 12/20/2016 08:26 PM, Thomas Monjalon wrote: Add a new macro RTE_PMD_REGISTER_KMOD_DEP() that allows a driver to declare the list of kernel modules required to run properly. Today, most PCI drivers require uio/vfio. Signed-off-by: Olivier Matz Acked-by: Fiona Trahe Acked-by: Adrien Mazargu

[dpdk-dev] [PATCH v4 2/6] eventdev: define southbound driver interface

2016-12-21 Thread Jerin Jacob
Signed-off-by: Jerin Jacob Acked-by: Bruce Richardson --- lib/librte_eventdev/rte_eventdev.h | 38 + lib/librte_eventdev/rte_eventdev_pmd.h | 294 + 2 files changed, 332 insertions(+) create mode 100644 lib/librte_eventdev/rte_eventdev_pmd.h diff --git

[dpdk-dev] [PATCH v4 0/6] libeventdev API and northbound implementation

2016-12-21 Thread Jerin Jacob
As previously discussed in RFC v1 [1], RFC v2 [2], with changes described in [3] (also pasted below), here is the first non-draft series for this new API. [1] http://dpdk.org/ml/archives/dev/2016-August/045181.html [2] http://dpdk.org/ml/archives/dev/2016-October/048592.html [3] http://dpdk.org/ml

[dpdk-dev] [PATCH v4 1/6] eventdev: introduce event driven programming model

2016-12-21 Thread Jerin Jacob
In a polling model, lcores poll ethdev ports and associated rx queues directly to look for packet. In an event driven model, by contrast, lcores call the scheduler that selects packets for them based on programmer-specified criteria. Eventdev library adds support for event driven programming model,

[dpdk-dev] [PATCH v4 3/6] eventdev: implement the northbound APIs

2016-12-21 Thread Jerin Jacob
This patch implements northbound eventdev API interface using southbond driver interface Signed-off-by: Jerin Jacob Acked-by: Bruce Richardson --- config/common_base | 6 + lib/Makefile | 1 + lib/librte_eal/common/include/rte_log.h

[dpdk-dev] [PATCH v4 4/6] eventdev: implement PMD registration functions

2016-12-21 Thread Jerin Jacob
This patch adds infrastructure for registering the vdev or the PCI based event device. Signed-off-by: Jerin Jacob Acked-by: Bruce Richardson --- lib/librte_eventdev/rte_eventdev.c | 236 +++ lib/librte_eventdev/rte_eventdev_pmd.h | 111 + lib/

[dpdk-dev] [PATCH v4 6/6] app/test: unit test case for eventdev APIs

2016-12-21 Thread Jerin Jacob
This commit adds basic unit tests for the eventdev API. commands to run the test app: ./build/app/test -c 2 RTE>>eventdev_common_autotest Signed-off-by: Jerin Jacob Acked-by: Bruce Richardson --- MAINTAINERS | 1 + app/test/Makefile| 2 + app/test/test_eventdev.c | 778

[dpdk-dev] [PATCH v4 5/6] event/skeleton: add skeleton eventdev driver

2016-12-21 Thread Jerin Jacob
The skeleton driver facilitates, bootstrapping the new eventdev driver and creates a platform to verify the northbound eventdev common code. The driver supports both VDEV and PCI based eventdev devices. Signed-off-by: Jerin Jacob Acked-by: Bruce Richardson --- MAINTAINERS

[dpdk-dev] [PATCH v6] vhost: allow for many vhost user ports

2016-12-21 Thread Yuanhan Liu
From: Jan Wickbom Currently select() is used to monitor file descriptors for vhostuser ports. This limits the number of ports possible to create since the fd number is used as index in the fd_set and we have seen fds > 1023. This patch changes select() to poll(). This way we can keep an packed (p

Re: [dpdk-dev] [PATCH v3 3/9] drivers: Use ETH_DEV_PCI_DEV() helper

2016-12-21 Thread Shreyansh Jain
On Tuesday 20 December 2016 04:41 PM, Jan Blunck wrote: The drivers should not directly access the rte_eth_dev->pci_dev but use a macro instead. This is a preparation for replacing the pci_dev with a struct rte_device member in the future. Signed-off-by: Jan Blunck --- drivers/net/bnx2x/bnx2x_

Re: [dpdk-dev] [PATCH v3 7/9] ethdev: Move filling of rte_eth_dev_info->pci_dev to dev_infos_get()

2016-12-21 Thread Shreyansh Jain
On Tuesday 20 December 2016 04:41 PM, Jan Blunck wrote: Only the device itself can decide its PCI or not. Signed-off-by: Jan Blunck --- drivers/net/bnx2x/bnx2x_ethdev.c| 1 + drivers/net/bnxt/bnxt_ethdev.c | 2 ++ drivers/net/cxgbe/cxgbe_ethdev.c| 2 ++ drivers/net/e10

[dpdk-dev] [PATCH v2 00/30] update ixgbe shared code to version 16.11.21

2016-12-21 Thread Wei Dai
update ixgbe shared code to version 16.11.21 . v2 changes: modify subject line and message body of git log according to feedbacks from communtiy. split the 24th patch into 2 separate ones. the 24th of v1 is net/ixgbe/base: add EEE support for DNL-controlled PHYs the 24th of v2 is net/

[dpdk-dev] [PATCH v2 02/30] net/ixgbe/base: fix clearing SAN MAC address

2016-12-21 Thread Wei Dai
Receive Address Register (RAR) entries, including SAN MAC address, are cleared when VMDq pool bits are cleared. Prevent SAN MAC address to be cleared. Fixes: af75078fece3 ("first public release") CC: sta...@dpdk.org Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_common.c | 3 ++- 1 fi

[dpdk-dev] [PATCH v2 01/30] net/ixgbe/base: fix PHY reset check for x550em-ext

2016-12-21 Thread Wei Dai
PHY type ixgbe_phy_x550em_ext_t requires different check to verify reset status. Fixes: af75078fece3 ("first public release") CC: sta...@dpdk.org Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_phy.c | 29 - 1 file changed, 24 insertions(+), 5 deletions(-)

[dpdk-dev] [PATCH v2 06/30] net/ixgbe/base: add driver version to firmware

2016-12-21 Thread Wei Dai
Send the driver version string to firmware through the host interface command on x550 devices. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_api.c| 7 ++-- drivers/net/ixgbe/base/ixgbe_api.h| 2 +- drivers/net/ixgbe/base/ixgbe_common.c | 4 ++- drivers/net/ixgbe/base/ixgbe_c

[dpdk-dev] [PATCH v2 05/30] net/ixgbe/base: clean up X557 link status check

2016-12-21 Thread Wei Dai
This patch cleans up the code and clarifies the comment around the X557 PHY link status check in ixgbe_check_link_t_x550em(). Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x550.c | 25 +++-- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/drivers/net

[dpdk-dev] [PATCH v2 04/30] net/ixgbe/base: fix PHY identification for x550a

2016-12-21 Thread Wei Dai
Method to identify the CS4223/CS4227 is incorrect and unreliable. Provide a new register to differentiate between these PHY SKUs. Fixes: fc0559bdb5e3 ("net/ixgbe/base: add link MAC setup for X550a SFP+") CC: sta...@dpdk.org Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_phy.h | 5 +++

[dpdk-dev] [PATCH v2 03/30] net/ixgbe/base: use fast MDIO for non-10G devices

2016-12-21 Thread Wei Dai
Devices that cannot go 10G speeds can safely select a faster Management Data Input/Output (MDIO) speed. Select fast MDIO clock speed for for those devices. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x550.c | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/

[dpdk-dev] [PATCH v2 08/30] net/ixgbe/base: cleanup X540 checksum calculation

2016-12-21 Thread Wei Dai
The variable checksum_last_word is used only for bounds check. So remove this variable and use IXGBE_EEPROM_CHECKSUM directly. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x540.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/net/ixgbe/base/ixgb

[dpdk-dev] [PATCH v2 09/30] net/ixgbe/base: enable LASI only for X552 devices

2016-12-21 Thread Wei Dai
Enable the Link Alarm Status Interrupt (LASI) only for X552 devices to receive notifications of the link configurations of the external PHY and correspondingly support the configuration of the internal iXFI link, since iXFI does not support auto-negotiation. This is not required for X553 devices h

[dpdk-dev] [PATCH v2 07/30] net/ixgbe/base: store link active LED

2016-12-21 Thread Wei Dai
Add support to get the link active LED index via the LEDCTL register. If the LEDCTL register does not have link active LED set then use MAC default LED index. Link active LED is used for adapter identify/blink support. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_common.c | 45 +++

[dpdk-dev] [PATCH v2 10/30] net/ixgbe/base: limit iXFI setup to X552 devices

2016-12-21 Thread Wei Dai
The MAC register NW_MNG_IF_SEL fields have been redefined for X553. These changes impact the iXFI driver code flow. Since iXFI is only supported in X552, this patch adds X552 MAC check for iXFI flows. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_type.h | 4 ++-- drivers/net/ixgbe/bas

[dpdk-dev] [PATCH v2 11/30] net/ixgbe/base: fix getting PHY type for some x550 devices

2016-12-21 Thread Wei Dai
Return correct physical layer for some x550 devices. Fixes: 76d5b807ff74 ("ixgbe/base: new X557 phy") Fixes: d2e72774e58c ("ixgbe/base: support X550") CC: sta...@dpdk.org Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x550.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/driver

[dpdk-dev] [PATCH v2 12/30] net/ixgbe/base: fix SGMII link setup for M88 PHYs

2016-12-21 Thread Wei Dai
Fix ixgbe_setup_sgmii_m88 to set lane speed to autoneg instead of 1G to prevent problems with link between PHYs Fixes: d4b4c6845487 ("net/ixgbe/base: add X550em_a FW ALEF support") CC: sta...@dpdk.org Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x550.c | 2 +- 1 file changed, 1 inse

[dpdk-dev] [PATCH v2 14/30] net/ixgbe/base: fix setting unsupported autoneg speeds

2016-12-21 Thread Wei Dai
Update ixgbe_setup_phy_link_generic that set/unset auto-negotiation. Ensure that unsupported auto-negotiation speeds are unset. This is necessary since the PHY NVM may advertise unsupported speeds. Fixes: af75078fece3 ("first public release") CC: sta...@dpdk.org Signed-off-by: Wei Dai --- dri

[dpdk-dev] [PATCH v2 13/30] net/ixgbe/base: cleanup dead EEE code

2016-12-21 Thread Wei Dai
Remove some specific code for enabling/disabling Energy Efficient Ethernet (EEE). Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x550.c | 61 ++--- 1 file changed, 10 insertions(+), 51 deletions(-) diff --git a/drivers/net/ixgbe/base/ixgbe_x550.c b/driv

[dpdk-dev] [PATCH v2 16/30] net/ixgbe/base: use FW commands to control some PHYs

2016-12-21 Thread Wei Dai
Use the new firmware interface to access and control some PHYs. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_phy.c | 4 - drivers/net/ixgbe/base/ixgbe_phy.h | 67 -- drivers/net/ixgbe/base/ixgbe_type.h | 2 +- drivers/net/ixgbe/base/ixgbe_x550.c | 412 ++

[dpdk-dev] [PATCH v2 18/30] net/ixgbe/base: include new speeds in VFLINK interpretation

2016-12-21 Thread Wei Dai
This patch moves some of the extended speeds that come with X552 (5G, 2.5G, 10M) into the link check functions. It also now returns speed_unknown for speeds that are not known how to interpret. Signed-off-by: Wei Dai --- drivers/net/ixgbe/Makefile | 1 + drivers/net/ixgbe/base/ixgbe_

[dpdk-dev] [PATCH v2 17/30] net/ixgbe/base: support busy SGMII register reads

2016-12-21 Thread Wei Dai
Read and store NW_MNG_IF_SEL register because register fields are used to determine SGMII link for busy SGMII register reads. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x550.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/base/ixgbe_x550.

[dpdk-dev] [PATCH v2 19/30] net/ixgbe/base: limit 5Gb support to X550 devices

2016-12-21 Thread Wei Dai
Only X550 devices support 5Gb. MAC type checks for 5Gb should be done only for X550 devices. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_common.c | 2 +- drivers/net/ixgbe/base/ixgbe_hv_vf.c | 2 +- drivers/net/ixgbe/base/ixgbe_vf.c | 2 +- 3 files changed, 3 insertions(+), 3 de

[dpdk-dev] [PATCH v2 15/30] net/ixgbe/base: support FW commands to control some PHYs

2016-12-21 Thread Wei Dai
Implement support for new firmware commands to be used to access and control some PHYs. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_common.h | 4 +- drivers/net/ixgbe/base/ixgbe_osdep.h | 3 +- drivers/net/ixgbe/base/ixgbe_type.h | 70 ++- drivers/net/ixgbe/base/ixgbe

[dpdk-dev] [PATCH v2 20/30] net/ixgbe/base: add physical layer options for FW PHY type

2016-12-21 Thread Wei Dai
The "FW" PHY type now supports speeds 10M, 100M, and 1G. Previously, only the 1G speed was reported for this PHY type. Add reporting 10M and 100M speed options. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_type.h | 1 + drivers/net/ixgbe/base/ixgbe_x550.c | 8 +++- 2 files changed

[dpdk-dev] [PATCH v2 21/30] net/ixgbe/base: remove unneeded MAC type check

2016-12-21 Thread Wei Dai
ixgbe_read_i2c_combined_generic_int() is only used by devices >= X550. Set the initial value accordingly and remove the MAC type check. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_phy.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/net/ixgbe/base/ixgb

[dpdk-dev] [PATCH v2 23/30] net/ixgbe/base: update FW PHY flow control

2016-12-21 Thread Wei Dai
This patch removes the flow control conversion from Rx and Tx to pause and asymmetric pause, as that is handled by the ixgbe_negotiate_fc(). Performing the conversion prior to ixgbe_negotiate_fc() results in an incorrect fc mode if Rx only pause is selected when the link partner is advertising Tx.

[dpdk-dev] [PATCH v2 22/30] net/ixgbe/base: remove unused PHY ID

2016-12-21 Thread Wei Dai
The first PHY ID for X550 was only used on original HW and never released. So remove these unused PHY ID. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_phy.c | 1 - drivers/net/ixgbe/base/ixgbe_type.h | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/net/ixgbe/base/ixgbe_ph

[dpdk-dev] [PATCH v2 25/30] net/ixgbe/base: remove unused enum type

2016-12-21 Thread Wei Dai
remove unused enum type for master/slave control in ixbge_type.h Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_type.h | 8 1 file changed, 8 deletions(-) diff --git a/drivers/net/ixgbe/base/ixgbe_type.h b/drivers/net/ixgbe/base/ixgbe_type.h index 9ec17a9..f1761a3 100644 ---

[dpdk-dev] [PATCH v2 27/30] net/ixgbe/base: remove unused EEE code

2016-12-21 Thread Wei Dai
Remove unused old Energy Efficient Ethernet (EEE) code. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x550.c | 113 +--- drivers/net/ixgbe/base/ixgbe_x550.h | 2 - 2 files changed, 1 insertion(+), 114 deletions(-) diff --git a/drivers/net/ixgbe/base/i

[dpdk-dev] [PATCH v2 26/30] net/ixgbe/base: fix IXGBE LSWFW register

2016-12-21 Thread Wei Dai
This register was incorrect when compared to the data sheet. Even though the driver doesn't currently use this register, it is better to fix it upstream. Fixes: af75078fece3 ("first public release") CC: sta...@dpdk.org Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_type.h | 2 +- 1 fi

[dpdk-dev] [PATCH v2 24/30] net/ixgbe/base: add EEE support for some PHYs

2016-12-21 Thread Wei Dai
This patch adds Energy Efficient Ethernet (EEE) support for some Marvell PHYs on some future platforms. Because EEE capability or status was not indicated previously, this patch simply assumes that it is supported. As soon as there is a PHY that does not support EEE, there will be defects in this

[dpdk-dev] [PATCH v2 28/30] net/ixgbe/base: add write flush required by Inphi PHY

2016-12-21 Thread Wei Dai
This patch updates the configuration of PHY from Inphi (www.inphi.com) to flush the register write with a reg read. The Inphi PHY is configured in ixgbe_setup_mac_link_sfp_x550a. The Inphy PHY setup flow has been updated to read configuration reg, write only linear/non-linear, and then read (write

[dpdk-dev] [PATCH v2 29/30] net/ixgbe/base: report physical layer for SGMII PHY type

2016-12-21 Thread Wei Dai
For the PHY type SGMII, report the pyhsical layer. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/ixgbe_x550.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/ixgbe/base/ixgbe_x550.c b/drivers/net/ixgbe/base/ixgbe_x550.c index a57ba74..782ca91 100644 --- a/drivers/net/ixgb

[dpdk-dev] [PATCH v2 30/30] net/ixgbe/base: update shared code version to 2016.11.21

2016-12-21 Thread Wei Dai
update the version of shared codes to cid-ixgbe.2016.11.21.tar.gz, all files in net/ixgbe/base are developped by another team and DPDK PMD uses them accordingly. Signed-off-by: Wei Dai --- drivers/net/ixgbe/base/README | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/driver

Re: [dpdk-dev] [PATCH v3 3/9] drivers: Use ETH_DEV_PCI_DEV() helper

2016-12-21 Thread Shreyansh Jain
On Wednesday 21 December 2016 03:20 PM, Shreyansh Jain wrote: On Tuesday 20 December 2016 04:41 PM, Jan Blunck wrote: The drivers should not directly access the rte_eth_dev->pci_dev but use a macro instead. This is a preparation for replacing the pci_dev with a struct rte_device member in the fu

Re: [dpdk-dev] [PATCH v3 0/9] Decouple ethdev from PCI device

2016-12-21 Thread Shreyansh Jain
Hi Jan, On Tuesday 20 December 2016 04:41 PM, Jan Blunck wrote: This is a repost of the series I sent in November. I've addressed Shreyansh's review comments about the PCI device users I've missed. Jan Blunck (9): eal: define container_of macro ethdev: Helper to convert to struct rte_pci_de

[dpdk-dev] [PATCH v2 1/4] net/mlx5: add preliminary support for rte_flow

2016-12-21 Thread Nelio Laranjeiro
Signed-off-by: Nelio Laranjeiro --- drivers/net/mlx5/Makefile| 1 + drivers/net/mlx5/mlx5.h | 16 ++ drivers/net/mlx5/mlx5_fdir.c | 15 ++ drivers/net/mlx5/mlx5_flow.c | 122 +++ 4 files changed, 154 insertions(+) create mode 100644 dr

[dpdk-dev] [PATCH v2 2/4] net/mlx5: add software support for rte_flow

2016-12-21 Thread Nelio Laranjeiro
Introduce initial software validation for rte_flow rules. Signed-off-by: Nelio Laranjeiro --- drivers/net/mlx5/mlx5.h | 2 + drivers/net/mlx5/mlx5_flow.c| 202 ++-- drivers/net/mlx5/mlx5_trigger.c | 2 + 3 files changed, 177 insertions(+), 29 d

[dpdk-dev] [PATCH v2 3/4] net/mlx5: add rte_flow rule creation

2016-12-21 Thread Nelio Laranjeiro
Convert Ethernet, IPv4, IPv6, TCP, UDP layers into ibv_flow and create those rules when after validation (i.e. NIC supports the rule). VLAN is still not supported in this commit. Signed-off-by: Nelio Laranjeiro --- drivers/net/mlx5/mlx5.h | 3 +- drivers/net/mlx5/mlx5_flow.c| 737

[dpdk-dev] [PATCH v2 0/4] net/mlx5: support flow_rte

2016-12-21 Thread Nelio Laranjeiro
This series requires rte_flow [1]. It brings rte_flow support to the same level as flow director (FDIR) in mlx5. [1] http://dpdk.org/ml/archives/dev/2016-December/052802.html Changes in v2: - Fix several issues. - Support VLAN filtering. Nelio Laranjeiro (4): net/mlx5: add preliminary sup

[dpdk-dev] [PATCH v2 4/4] net/mlx5: add VLAN filter support in rte_flow

2016-12-21 Thread Nelio Laranjeiro
Signed-off-by: Nelio Laranjeiro --- drivers/net/mlx5/mlx5_flow.c | 59 ++-- 1 file changed, 57 insertions(+), 2 deletions(-) diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c index 44e2fb8..fec1950 100644 --- a/drivers/net/mlx5/mlx5_

Re: [dpdk-dev] [PATCH 2/2] net/ixgbe: calculate correct number of received packets for ARM NEON-version vPMD

2016-12-21 Thread Jerin Jacob
On Mon, Dec 19, 2016 at 11:39:18AM +0530, Jianbo Liu wrote: Hi Jianbo, > vPMD will check 4 descriptors in one time, but the statuses are not consistent > because the memory allocated for RX descriptors is cacheable huagepage. Is it different in X86 case ?i.e Is x86 creating non cacheable hugepage

Re: [dpdk-dev] [PATCH 24/29] net/ixgbe/base: add EEE support for DNL-controlled PHYs

2016-12-21 Thread Dai, Wei
> -Original Message- > From: Yigit, Ferruh > Sent: Tuesday, December 6, 2016 3:41 AM > To: Dai, Wei ; Zhang, Helin ; > Ananyev, Konstantin > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH 24/29] net/ixgbe/base: add EEE support for > DNL-controlled PHYs > > On 12/4/2016 6:31 AM, Wei Dai

Re: [dpdk-dev] dpdk.org server maintenance

2016-12-21 Thread Thomas Monjalon
2016-12-19 15:52, Thomas Monjalon: > Hi all, > > On Wednesday December 21, 2016, between 6:00 and 9:00 UTC, there will be > an upgrade of our hosting platform. > Unfortunately it is announced a downtime of an hour or more. > It will affect every hosted services: web, mail, git, patchwork. > > It

Re: [dpdk-dev] [PATCH 27/29] net/ixgbe/base: add write flush required by Inphi

2016-12-21 Thread Dai, Wei
> -Original Message- > From: Yigit, Ferruh > Sent: Tuesday, December 6, 2016 3:41 AM > To: Dai, Wei ; Zhang, Helin ; > Ananyev, Konstantin > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH 27/29] net/ixgbe/base: add write flush required > by Inphi > > On 12/4/2016 6:31 AM, Wei Dai wrote

Re: [dpdk-dev] [PATCH 29/29] net/ixgbe/base: update version of basical codes in README

2016-12-21 Thread Dai, Wei
Thanks for your correcting. > -Original Message- > From: Yigit, Ferruh > Sent: Tuesday, December 6, 2016 3:41 AM > To: Dai, Wei ; Zhang, Helin ; > Ananyev, Konstantin > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH 29/29] net/ixgbe/base: update version of > basical > codes in README

Re: [dpdk-dev] [PATCH v4 02/25] doc: add rte_flow prog guide

2016-12-21 Thread Mcnamara, John
Hi Adrien, You missed out the changes I suggested to the table_rte_flow_migration_fdir which means that the pdf build is still broken. Also, the changes to table_rte_flow_migration_l2tunnel also break the PDF bulid. You can test as follows: make doc-guides-pdf -j I'd suggest the following t

Re: [dpdk-dev] [PATCH 2/2] net/ixgbe: calculate correct number of received packets for ARM NEON-version vPMD

2016-12-21 Thread Bruce Richardson
On Wed, Dec 21, 2016 at 03:38:51PM +0530, Jerin Jacob wrote: > On Mon, Dec 19, 2016 at 11:39:18AM +0530, Jianbo Liu wrote: > > Hi Jianbo, > > > vPMD will check 4 descriptors in one time, but the statuses are not > > consistent > > because the memory allocated for RX descriptors is cacheable huag

Re: [dpdk-dev] [PATCH v3] app/testpmd: supported offload capabilities query

2016-12-21 Thread Yang, Qiming
That's a good advice. Thanks. -Original Message- From: Yuanhan Liu [mailto:yuanhan@linux.intel.com] Sent: Wednesday, December 21, 2016 10:37 AM To: Yang, Qiming Cc: dev@dpdk.org; Wu, Jingjing Subject: Re: [dpdk-dev] [PATCH v3] app/testpmd: supported offload capabilities query On W

Re: [dpdk-dev] [PATCH v4 02/25] doc: add rte_flow prog guide

2016-12-21 Thread Adrien Mazarguil
Hi John, On Wed, Dec 21, 2016 at 10:55:39AM +, Mcnamara, John wrote: > Hi Adrien, > > You missed out the changes I suggested to the table_rte_flow_migration_fdir > which means that the pdf build is still broken. Also, the changes to > table_rte_flow_migration_l2tunnel also break the PDF bulid

Re: [dpdk-dev] [PATCH v3] drivers: advertise kmod dependencies in pmdinfo

2016-12-21 Thread Neil Horman
On Wed, Dec 21, 2016 at 12:21:14PM +0300, Andrew Rybchenko wrote: > On 12/20/2016 08:26 PM, Thomas Monjalon wrote: > > > > Add a new macro RTE_PMD_REGISTER_KMOD_DEP() that allows a driver to > > > > declare the list of kernel modules required to run properly. > > > > > > > > Today, most PCI driver

Re: [dpdk-dev] [PATCH v3] drivers: advertise kmod dependencies in pmdinfo

2016-12-21 Thread Andrew Rybchenko
On 12/21/2016 02:37 PM, Neil Horman wrote: On Wed, Dec 21, 2016 at 12:21:14PM +0300, Andrew Rybchenko wrote: On 12/20/2016 08:26 PM, Thomas Monjalon wrote: Add a new macro RTE_PMD_REGISTER_KMOD_DEP() that allows a driver to declare the list of kernel modules required to run properly. Today, mo

Re: [dpdk-dev] [PATCH 0/3] Add DES capability to Intel QuickAssist Technology driver

2016-12-21 Thread Trahe, Fiona
> -Original Message- > From: Kusztal, ArkadiuszX > Sent: Friday, December 2, 2016 2:16 PM > To: dev@dpdk.org > Cc: Trahe, Fiona ; De Lara Guarch, Pablo > ; Griffin, John ; > Jain, Deepak K ; Kusztal, ArkadiuszX > > Subject: [PATCH 0/3] Add DES capability to Intel QuickAssist Technology d

Re: [dpdk-dev] [PATCH 2/3] crypto/qat: add DES capability to Intel QAT driver

2016-12-21 Thread Trahe, Fiona
> -Original Message- > From: Kusztal, ArkadiuszX > Sent: Friday, December 2, 2016 2:16 PM > To: dev@dpdk.org > Cc: Trahe, Fiona ; De Lara Guarch, Pablo > ; Griffin, John ; > Jain, Deepak K ; Kusztal, ArkadiuszX > > Subject: [PATCH 2/3] crypto/qat: add DES capability to Intel QAT driver >

Re: [dpdk-dev] [PATCH 3/3] app/test: add DES tests to Intel QAT crypto test suite

2016-12-21 Thread Trahe, Fiona
> -Original Message- > From: Kusztal, ArkadiuszX > Sent: Friday, December 2, 2016 2:16 PM > To: dev@dpdk.org > Cc: Trahe, Fiona ; De Lara Guarch, Pablo > ; Griffin, John ; > Jain, Deepak K ; Kusztal, ArkadiuszX > > Subject: [PATCH 3/3] app/test: add DES tests to Intel QAT crypto test sui

Re: [dpdk-dev] [PATCH 1/3] lib/librte_cryptodev: add DES CBC cipher algorithm

2016-12-21 Thread Trahe, Fiona
> -Original Message- > From: Kusztal, ArkadiuszX > Sent: Friday, December 2, 2016 2:16 PM > To: dev@dpdk.org > Cc: Trahe, Fiona ; De Lara Guarch, Pablo > ; Griffin, John ; > Jain, Deepak K ; Kusztal, ArkadiuszX > > Subject: [PATCH 1/3] lib/librte_cryptodev: add DES CBC cipher algorithm >

Re: [dpdk-dev] [PATCH RFC 0/2] Allow vectorized Rx with 4096 desc ring size on Intel NICs.

2016-12-21 Thread Ilya Maximets
Ping. Best regards, Ilya Maximets. On 21.11.2016 16:53, Ferruh Yigit wrote: > On 10/19/2016 3:30 PM, Ferruh Yigit wrote: >> On 10/19/2016 3:07 PM, Ilya Maximets wrote: >>> Ilya Maximets (2): >>> net/i40e: allow bulk alloc for the max size desc ring >>> net/ixgbe: allow bulk alloc for the max

Re: [dpdk-dev] [PATCH 6/8] crypto/dpaa2_sec: add sec procssing functionality

2016-12-21 Thread De Lara Guarch, Pablo
> -Original Message- > From: Akhil Goyal [mailto:akhil.go...@nxp.com] > Sent: Monday, December 05, 2016 12:56 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; eclan.dohe...@intel.com; De Lara > Guarch, Pablo; hemant.agra...@nxp.com; Akhil Goyal > Subject: [PATCH 6/8] crypto/dpaa2_se

Re: [dpdk-dev] [PATCH 6/8] crypto/dpaa2_sec: add sec procssing functionality

2016-12-21 Thread Akhil Goyal
> -Original Message- > From: Akhil Goyal [mailto:akhil.go...@nxp.com] > Sent: Monday, December 05, 2016 12:56 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; eclan.dohe...@intel.com; De Lara > Guarch, Pablo; hemant.agra...@nxp.com; Akhil Goyal > Subject: [PATCH 6/8] crypto/dpaa2_sec

[dpdk-dev] [dpdk-announce] Performance Report for DPDK 16.11 now available

2016-12-21 Thread Mcnamara, John
The performance report for DPDK 16.11 on Intel Nics is now available. See: http://dpdk.org/doc/ http://fast.dpdk.org/doc/perf/Intel_DPDK_R16_11_NIC_performance_report.pdf We intend to have a similar report for each release and hope that some other vendors will also add reports. We also

Re: [dpdk-dev] [PATCH] rte_eal: clarify the argc and argv documentation

2016-12-21 Thread Thomas Monjalon
2016-12-08 10:56, Aaron Conole: > It's been a source of confusion in the past, and even with this update > may continue to be a source of confusion. However, the original > language seems to imply that the DPDK EAL will take ownership of the > array passed in. Loosening the language up a bit migh

Re: [dpdk-dev] [PATCH v4] eal: restrict cores auto detection

2016-12-21 Thread Thomas Monjalon
2016-12-09 15:14, Bruce Richardson: > On Thu, Dec 08, 2016 at 07:19:41PM +0100, Thomas Monjalon wrote: > > 2016-12-02 17:48, Jianfeng Tan: > > > This patch uses pthread_getaffinity_np() to narrow down used > > > cores when none of below options is specified: > > > * coremask (-c) > > > * coreli

Re: [dpdk-dev] [PATCH v2 0/2] postpone vdev initialization

2016-12-21 Thread Thomas Monjalon
2016-12-04 02:25, Jerin Jacob: > v2: > - No changes in eal: postpone vdev initialization > - Added new patch "eal: rename dev init API for consistency" as > suggested by Shreyansh Jain > http://dpdk.org/dev/patchwork/patch/17096/ Let's forget this rename and apply the v1 instead. These functions a

[dpdk-dev] Example(Load_balancer) Tx Flush Bug(This bug DPDK each version)

2016-12-21 Thread Maple
From 94f2eaed51e6e5402e8c03b80e0999a4fd420390 Mon Sep 17 00:00:00 2001 From: root To: Cc: , , Date: Wed, 21 Dec 2016 22:31:29 +0800 Subject: [PATCH] load_balancer Tx Flush Bug We found a bug in use load_balancer example,and,This bug DPDK each version. In IO tx flush, only flush port 0. So,If I e

Re: [dpdk-dev] [PATCH] eal: postpone vdev initialization

2016-12-21 Thread Thomas Monjalon
2016-11-20 13:30, Jerin Jacob: > Some platform like octeontx may use pci and > vdev based combined device to represent a logical > dpdk functional device.In such case, postponing the > vdev initialization after pci device > initialization will provide the better view of > the pci device resources i

Re: [dpdk-dev] [PATCH v2 01/12] mk: fix build of assembly files for ARM64

2016-12-21 Thread De Lara Guarch, Pablo
Hi Zbigniew, > -Original Message- > From: zbigniew.bo...@caviumnetworks.com > [mailto:zbigniew.bo...@caviumnetworks.com] > Sent: Wednesday, December 07, 2016 2:33 AM > To: De Lara Guarch, Pablo; jerin.ja...@caviumnetworks.com > Cc: dev@dpdk.org; Zbigniew Bodek > Subject: [PATCH v2 01/12] m

[dpdk-dev] [PATCH v5 00/26] Generic flow API (rte_flow)

2016-12-21 Thread Adrien Mazarguil
As previously discussed in RFC v1 [1], RFC v2 [2], with changes described in [3] (also pasted below), here is the first non-draft series for this new API. Its capabilities are so generic that its name had to be vague, it may be called "Generic flow API", "Generic flow interface" (possibly shortene

[dpdk-dev] [PATCH v5 01/26] ethdev: introduce generic flow API

2016-12-21 Thread Adrien Mazarguil
This new API supersedes all the legacy filter types described in rte_eth_ctrl.h. It is slightly higher level and as a result relies more on PMDs to process and validate flow rules. Benefits: - A unified API is easier to program for, applications do not have to be written for a specific filter t

[dpdk-dev] [PATCH v5 03/26] doc: announce deprecation of legacy filter types

2016-12-21 Thread Adrien Mazarguil
They are superseded by the generic flow API (rte_flow). Target release is not defined yet. Suggested-by: Kevin Traynor Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- doc/guides/rel_notes/deprecation.rst | 8 1 file changed, 8 insertions(+) diff --git a/doc/guides/rel_notes/

[dpdk-dev] [PATCH v5 04/26] cmdline: add support for dynamic tokens

2016-12-21 Thread Adrien Mazarguil
Considering tokens must be hard-coded in a list part of the instruction structure, context-dependent tokens cannot be expressed. This commit adds support for building dynamic token lists through a user-provided function, which is called when the static token list is empty (a single NULL entry). B

[dpdk-dev] [PATCH v5 02/26] doc: add rte_flow prog guide

2016-12-21 Thread Adrien Mazarguil
This documentation is based on the latest RFC submission, subsequently updated according to feedback from the community. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- doc/guides/prog_guide/index.rst|1 + doc/guides/prog_guide/rte_flow.rst | 2041 ++

[dpdk-dev] [PATCH v5 07/26] app/testpmd: add flow command

2016-12-21 Thread Adrien Mazarguil
Managing generic flow API functions from command line requires the use of dynamic tokens for convenience as flow rules are not fixed and cannot be defined statically. This commit adds specific flexible parser code and object for a new "flow" command in separate file. Signed-off-by: Adrien Mazargu

[dpdk-dev] [PATCH v5 05/26] cmdline: add alignment constraint

2016-12-21 Thread Adrien Mazarguil
This prevents sigbus errors on architectures that cannot handle unexpected unaligned accesses to the output buffer. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- lib/librte_cmdline/cmdline_parse.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/librte

[dpdk-dev] [PATCH v5 08/26] app/testpmd: add rte_flow integer support

2016-12-21 Thread Adrien Mazarguil
Parse all integer types and handle conversion to network byte order in a single function. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline_flow.c | 148 +++ 1 file changed, 148 insertions(+) diff --git a/app/test-pmd/cmdline_flow

[dpdk-dev] [PATCH v5 06/26] app/testpmd: implement basic support for rte_flow

2016-12-21 Thread Adrien Mazarguil
Add basic management functions for the generic flow API (validate, create, destroy, flush, query and list). Flow rule objects and properties are arranged in lists associated with each port. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline.c | 1 + app/test-pmd

[dpdk-dev] [PATCH v5 09/26] app/testpmd: add flow list command

2016-12-21 Thread Adrien Mazarguil
Syntax: flow list {port_id} [group {group_id}] [...] List configured flow rules on a port. Output can optionally be limited to a given set of group identifiers. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline.c | 4 ++ app/test-pmd/cmdline_flow.c | 141 ++

[dpdk-dev] [PATCH v5 11/26] app/testpmd: add flow destroy command

2016-12-21 Thread Adrien Mazarguil
Syntax: flow destroy {port_id} rule {rule_id} [...] Destroy a given set of flow rules associated with a port. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline.c | 3 ++ app/test-pmd/cmdline_flow.c | 106 ++- 2 files chan

[dpdk-dev] [PATCH v5 10/26] app/testpmd: add flow flush command

2016-12-21 Thread Adrien Mazarguil
Syntax: flow flush {port_id} Destroy all flow rules on a port. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline.c | 3 +++ app/test-pmd/cmdline_flow.c | 43 +++- 2 files changed, 45 insertions(+), 1 deletion(-) diff --gi

[dpdk-dev] [PATCH v5 12/26] app/testpmd: add flow validate/create commands

2016-12-21 Thread Adrien Mazarguil
Syntax: flow (validate|create) {port_id} [group {group_id}] [priority {level}] [ingress] [egress] pattern {item} [/ {item} [...]] / end actions {action} [/ {action} [...]] / end Either check the validity of a flow rule or create it. Any number of pattern items and actions can be prov

[dpdk-dev] [PATCH v5 13/26] app/testpmd: add flow query command

2016-12-21 Thread Adrien Mazarguil
Syntax: flow query {port_id} {rule_id} {action} Query a specific action of an existing flow rule. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline.c | 3 + app/test-pmd/cmdline_flow.c | 121 ++- 2 files changed, 123 inse

[dpdk-dev] [PATCH v5 15/26] app/testpmd: add rte_flow item spec prefix length

2016-12-21 Thread Adrien Mazarguil
Generating bit-masks from prefix lengths is often more convenient than providing them entirely (e.g. to define IPv4 and IPv6 subnets). This commit adds the "prefix" operator that assigns generated bit-masks to any pattern item specification field. Signed-off-by: Adrien Mazarguil Acked-by: Olga S

[dpdk-dev] [PATCH v5 16/26] app/testpmd: add rte_flow bit-field support

2016-12-21 Thread Adrien Mazarguil
Several rte_flow structures expose bit-fields that cannot be set in a generic fashion at byte level. Add bit-mask support to handle them. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline_flow.c | 70 1 file changed, 70 insert

[dpdk-dev] [PATCH v5 14/26] app/testpmd: add rte_flow item spec handler

2016-12-21 Thread Adrien Mazarguil
Add parser code to fully set individual fields of pattern item specification structures, using the following operators: - fix: sets field and applies full bit-mask for perfect matching. - spec: sets field without modifying its bit-mask. - last: sets upper value of the spec => last range. - mask: s

[dpdk-dev] [PATCH v5 17/26] app/testpmd: add item any to flow command

2016-12-21 Thread Adrien Mazarguil
This pattern item matches any protocol in place of the current layer and has two properties: - min: minimum number of layers covered (0 or more). - max: maximum number of layers covered (0 means infinity). Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline_flow.c | 2

[dpdk-dev] [PATCH v5 18/26] app/testpmd: add various items to flow command

2016-12-21 Thread Adrien Mazarguil
- PF: match packets addressed to the physical function. - VF: match packets addressed to a virtual function ID. - PORT: device-specific physical port index to use. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline_flow.c | 53

[dpdk-dev] [PATCH v5 20/26] app/testpmd: add items eth/vlan to flow command

2016-12-21 Thread Adrien Mazarguil
These pattern items match basic Ethernet headers (source, destination and type) and related 802.1Q/ad VLAN headers. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline_flow.c | 126 +++ 1 file changed, 126 insertions(+) diff --git a

[dpdk-dev] [PATCH v5 19/26] app/testpmd: add item raw to flow command

2016-12-21 Thread Adrien Mazarguil
Matches arbitrary byte strings with properties: - relative: look for pattern after the previous item. - search: search pattern from offset (see also limit). - offset: absolute or relative offset for pattern. - limit: search area limit for start of pattern. - length: pattern length. - pattern: byte

[dpdk-dev] [PATCH v5 21/26] app/testpmd: add items ipv4/ipv6 to flow command

2016-12-21 Thread Adrien Mazarguil
Add the ability to match basic fields from IPv4 and IPv6 headers (source and destination addresses only). Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/cmdline_flow.c | 177 +++ 1 file changed, 177 insertions(+) diff --git a/app/test-

[dpdk-dev] [PATCH v5 22/26] app/testpmd: add L4 items to flow command

2016-12-21 Thread Adrien Mazarguil
Add the ability to match a few properties of common L4[.5] protocol headers: - ICMP: type and code. - UDP: source and destination ports. - TCP: source and destination ports. - SCTP: source and destination ports. - VXLAN: network identifier. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern -

[dpdk-dev] [PATCH v5 23/26] app/testpmd: add various actions to flow command

2016-12-21 Thread Adrien Mazarguil
- MARK: attach 32 bit value to packets. - FLAG: flag packets. - DROP: drop packets. - COUNT: enable counters for a rule. - PF: redirect packets to physical device function. - VF: redirect packets to virtual device function. Signed-off-by: Adrien Mazarguil Acked-by: Olga Shern --- app/test-pmd/c

  1   2   >