[dpdk-dev] [PATCH 00/29] ixgbe/base: update base driver

2016-06-06 Thread Zhang, Helin
Acked-by: Helin Zhang > -Original Message- > From: Xing, Beilei > Sent: Friday, May 6, 2016 2:07 PM > To: Zhang, Helin > Cc: dev at dpdk.org > Subject: [PATCH 00/29] ixgbe/base: update base driver > > Update base driver for ixgbe, mainly work on new features and bug fixes. > > Beilei Xi

[dpdk-dev] [PATCH v5] eal: fix allocating all free hugepages

2016-06-06 Thread Pei, Yulong
Tested-by: Yulong Pei 1. Run dpdk app with multiple mount points, it works as expected. 2. Create new cgroup with limited hugepages like the following, and Run dpdk app with the newly created cgroup, it works as expected. #cgcreate -g hugetlb:/test-subgroup # cgset -r hugetlb.1GB.limit_in_bytes

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Tetsuya Mukawa
Hi Yuanhan, Sorry for late replying. On 2016/06/03 13:17, Yuanhan Liu wrote: > On Thu, Jun 02, 2016 at 06:30:18PM +0900, Tetsuya Mukawa wrote: >> Hi Yuanhan, >> >> On 2016/06/02 16:31, Yuanhan Liu wrote: >>> But still, I'd ask do we really need 2 virtio for container solutions? >> >> I appreciate

[dpdk-dev] [PATCH 0/8] support reset of VF link

2016-06-06 Thread Wenzhuo Lu
If the PF link is down and up, VF link will not work accordingly. This patch set addes the support of VF link reset. So, when VF receices the messges of physical link down/up. APP can reset the VF link and let it recover. PS: This patch set is splitted from a previous patch set, *automatic link re

[dpdk-dev] [PATCH 1/8] lib/librte_ether: support device reset

2016-06-06 Thread Wenzhuo Lu
Add an API to reset the device. It's for VF device in this scenario, kernel PF + DPDK VF. When the PF port down/up, APP should call this API to reset VF port. Most likely, APP should call it in its management thread and guarantee the thread safe. Signed-off-by: Wenzhuo Lu --- lib/librte_ether/rt

[dpdk-dev] [PATCH 2/8] lib/librte_ether: defind RX/TX lock mode

2016-06-06 Thread Wenzhuo Lu
Define lock mode for RX/TX queue. Because when resetting the device we want the resetting thread to get the lock of the RX/TX queue to make sure the RX/TX is stopped. Using next ABI macro for this ABI change as it has too much impact. 7 APIs and 1 global variable are impacted. Signed-off-by: Wenz

[dpdk-dev] [PATCH 3/8] ixgbe: RX/TX with lock on VF

2016-06-06 Thread Wenzhuo Lu
Add RX/TX paths with lock for VF. It's used when the function of link reset on VF is needed. When the lock for RX/TX is added, the RX/TX can be stopped. Then we have a chance to reset the VF link. Please be aware there's performence drop if the lock path is chosen. Signed-off-by: Wenzhuo Lu ---

[dpdk-dev] [PATCH 4/8] ixgbe: implement device reset on VF

2016-06-06 Thread Wenzhuo Lu
Implement the device reset function. 1, Add the fake RX/TX functions. 2, The reset function tries to stop RX/TX by replacing the RX/TX functions with the fake ones and getting the locks to make sure the regular RX/TX finished. 3, After the RX/TX stopped, reset the VF port, and then release

[dpdk-dev] [PATCH 5/8] igb: RX/TX with lock on VF

2016-06-06 Thread Wenzhuo Lu
Add RX/TX paths with lock for VF. It's used when the function of link reset on VF is needed. When the lock for RX/TX is added, the RX/TX can be stopped. Then we have a chance to reset the VF link. Please be aware there's performence drop if the lock path is chosen. Signed-off-by: Wenzhuo Lu ---

[dpdk-dev] [PATCH 6/8] igb: implement device reset on VF

2016-06-06 Thread Wenzhuo Lu
Implement the device reset function. 1, Add the fake RX/TX functions. 2, The reset function tries to stop RX/TX by replacing the RX/TX functions with the fake ones and getting the locks to make sure the regular RX/TX finished. 3, After the RX/TX stopped, reset the VF port, and then release

[dpdk-dev] [PATCH 7/8] i40e:RX/TX with lock on VF

2016-06-06 Thread Wenzhuo Lu
Add RX/TX paths with lock for VF. It's used when the function of link reset on VF is needed. When the lock for RX/TX is added, the RX/TX can be stopped. Then we have a chance to reset the VF link. Please be aware there's performence drop if the lock path is chosen. Signed-off-by: Zhe Tao --- dr

[dpdk-dev] [PATCH 8/8] i40e: implement device reset on VF

2016-06-06 Thread Wenzhuo Lu
Implement the device reset function. 1, Add the fake RX/TX functions. 2, The reset function tries to stop RX/TX by replacing the RX/TX functions with the fake ones and getting the locks to make sure the regular RX/TX finished. 3, After the RX/TX stopped, reset the VF port, and then release

[dpdk-dev] [PATCH] an example for VF link reset

2016-06-06 Thread Wenzhuo Lu
Add a new example to show how to handle the reset event on VF when PF link down/up. PS: This patch set is base on the patch set *support reset of VF link*. Wenzhuo Lu (1): examples: add a new example for link reset MAINTAINERS | 4 + doc/guides/sample_app_ug/link

[dpdk-dev] [PATCH] examples: add a new example for link reset

2016-06-06 Thread Wenzhuo Lu
Add a new example to show when the PF is down and up, VF port can be reset and recover. Signed-off-by: Wenzhuo Lu --- MAINTAINERS | 4 + doc/guides/sample_app_ug/link_reset.rst | 177 examples/link_reset/Makefile| 50 +++ examples/link_reset/ma

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Yuanhan Liu
On Mon, Jun 06, 2016 at 02:10:46PM +0900, Tetsuya Mukawa wrote: > Hi Yuanhan, > > Sorry for late replying. Never mind. > > On 2016/06/03 13:17, Yuanhan Liu wrote: > > On Thu, Jun 02, 2016 at 06:30:18PM +0900, Tetsuya Mukawa wrote: > >> Hi Yuanhan, > >> > >> On 2016/06/02 16:31, Yuanhan Liu wrot

[dpdk-dev] [PATCH v2 00/15] i40e base driver update

2016-06-06 Thread Lu, Wenzhuo
Hi, Acked-by: Wenzhuo Lu

[dpdk-dev] [PATCH v6 6/7] virtio-user: add new virtual pci driver for virtio

2016-06-06 Thread Yuanhan Liu
On Thu, Jun 02, 2016 at 09:54:36AM +, Jianfeng Tan wrote: > + > + desc_addr = (uint64_t)vq->mz->addr; > + avail_addr = desc_addr + vq->vq_nentries * sizeof(struct vring_desc); > + used_addr = RTE_ALIGN_CEIL(avail_addr + offsetof(struct vring_avail, > +

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Tan, Jianfeng
Hi, On 6/6/2016 1:10 PM, Tetsuya Mukawa wrote: > Hi Yuanhan, > > Sorry for late replying. > > On 2016/06/03 13:17, Yuanhan Liu wrote: >> On Thu, Jun 02, 2016 at 06:30:18PM +0900, Tetsuya Mukawa wrote: >>> Hi Yuanhan, >>> >>> On 2016/06/02 16:31, Yuanhan Liu wrote: But still, I'd ask do we re

[dpdk-dev] [PATCH v6 6/7] virtio-user: add new virtual pci driver for virtio

2016-06-06 Thread Tan, Jianfeng
Hi Yuanhan, On 6/6/2016 4:01 PM, Yuanhan Liu wrote: > On Thu, Jun 02, 2016 at 09:54:36AM +, Jianfeng Tan wrote: >> + >> +desc_addr = (uint64_t)vq->mz->addr; >> +avail_addr = desc_addr + vq->vq_nentries * sizeof(struct vring_desc); >> +used_addr = RTE_ALIGN_CEIL(avail_addr + offset

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Tetsuya Mukawa
On 2016/06/06 16:21, Yuanhan Liu wrote: > On Mon, Jun 06, 2016 at 02:10:46PM +0900, Tetsuya Mukawa wrote: >> Hi Yuanhan, >> >> Sorry for late replying. > > Never mind. > >> >> On 2016/06/03 13:17, Yuanhan Liu wrote: >>> On Thu, Jun 02, 2016 at 06:30:18PM +0900, Tetsuya Mukawa wrote: Hi Yuanh

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Yuanhan Liu
On Mon, Jun 06, 2016 at 05:33:31PM +0900, Tetsuya Mukawa wrote: > >> [My solution] > >> - Pros > >> Basic principle of my implementation is not to reinvent the wheel. > > > > Yes, that's a good point. However, it's not that hard as we would have > > thought in the first time: the tough part that d

[dpdk-dev] [PATCH] fm10k: fix VF cannot receive broadcast traffic

2016-06-06 Thread Wang Xiao W
When app tries promisc/allmulti setting, fm10k will check if a valid glort is acquired, if not then exit without doing anything. It's a long journey for VF to acquire glort info from VF to PF mailbox, PF to switch mailbox. It could be a long interval that's out of DPDK's control. Thus, app may fail

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Thomas Monjalon
2016-06-05 14:15, Neil Horman: > On Fri, Jun 03, 2016 at 03:07:49PM +, Mcnamara, John wrote: > > Introduction > > > > > > This document sets out a proposal for a DPDK Long Term Support release > > (LTS). > > > > The purpose of the DPDK LTS will be to maintain a stable release of

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Tetsuya Mukawa
On 2016/06/06 17:03, Tan, Jianfeng wrote: > Hi, > > > On 6/6/2016 1:10 PM, Tetsuya Mukawa wrote: >> Hi Yuanhan, >> >> Sorry for late replying. >> >> On 2016/06/03 13:17, Yuanhan Liu wrote: >>> On Thu, Jun 02, 2016 at 06:30:18PM +0900, Tetsuya Mukawa wrote: Hi Yuanhan, On 2016/06/02

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Tetsuya Mukawa
On 2016/06/06 17:49, Yuanhan Liu wrote: > On Mon, Jun 06, 2016 at 05:33:31PM +0900, Tetsuya Mukawa wrote: [My solution] - Pros Basic principle of my implementation is not to reinvent the wheel. >>> >>> Yes, that's a good point. However, it's not that hard as we would have >>> thought

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Yuanhan Liu
On Mon, Jun 06, 2016 at 06:30:00PM +0900, Tetsuya Mukawa wrote: > On 2016/06/06 17:49, Yuanhan Liu wrote: > > On Mon, Jun 06, 2016 at 05:33:31PM +0900, Tetsuya Mukawa wrote: > [My solution] > - Pros > Basic principle of my implementation is not to reinvent the wheel. > >>> > >>> Yes,

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Tan, Jianfeng
Hi, On 6/6/2016 5:28 PM, Tetsuya Mukawa wrote: > On 2016/06/06 17:03, Tan, Jianfeng wrote: >> Hi, >> >> >> On 6/6/2016 1:10 PM, Tetsuya Mukawa wrote: >>> Hi Yuanhan, >>> >>> Sorry for late replying. >>> >>> On 2016/06/03 13:17, Yuanhan Liu wrote: On Thu, Jun 02, 2016 at 06:30:18PM +0900, Tets

[dpdk-dev] [PATCH v5 0/6] Virtio-net PMD: QEMU QTest extension for container

2016-06-06 Thread Tan, Jianfeng
Hi, On 6/6/2016 5:30 PM, Tetsuya Mukawa wrote: > On 2016/06/06 17:49, Yuanhan Liu wrote: >> On Mon, Jun 06, 2016 at 05:33:31PM +0900, Tetsuya Mukawa wrote: > [My solution] > - Pros > Basic principle of my implementation is not to reinvent the wheel. Yes, that's a good point. Howe

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Yuanhan Liu
On Fri, Jun 03, 2016 at 06:05:15PM +0200, Thomas Monjalon wrote: > Hi, > > 2016-06-03 15:07, Mcnamara, John: > > Introduction > > > > > > This document sets out a proposal for a DPDK Long Term Support release > > (LTS). > > In general, LTS refer to a longer maintenance than than re

[dpdk-dev] [PATCH v3 00/10] Remove string operations from xstats

2016-06-06 Thread David Harton (dharton)
Acked-by: David Harton > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Remy Horton > Sent: Monday, May 30, 2016 6:48 AM > To: dev at dpdk.org; Thomas Monjalon ; Helin > Zhang > ; Wenzhuo Lu ; Jing Chen > ; Huawei Xie > Subject: [dpdk-dev] [PATCH v3 00/10]

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Thomas Monjalon
2016-06-06 19:49, Yuanhan Liu: > On Fri, Jun 03, 2016 at 06:05:15PM +0200, Thomas Monjalon wrote: > > 2016-06-03 15:07, Mcnamara, John: > > > Developers submitting fixes to the mainline should also CC the maintainer > > > so > > > that they can evaluate the patch. A email address > > > could be

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Nirmoy Das
> LTS Version > > > The proposed initial LTS version will be DPDK 16.07. The next versions, based > on a 2 year cycle, will be DPDK 18.08, 20.08, etc. Hi, I can see 16.07's release due date is 18th July. Is it possible to know the timeline for RC versions of dpdk-16.07 ? This might

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Neil Horman
On Mon, Jun 06, 2016 at 11:27:29AM +0200, Thomas Monjalon wrote: > 2016-06-05 14:15, Neil Horman: > > On Fri, Jun 03, 2016 at 03:07:49PM +, Mcnamara, John wrote: > > > Introduction > > > > > > > > > This document sets out a proposal for a DPDK Long Term Support release > > > (LTS

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Yuanhan Liu
On Mon, Jun 06, 2016 at 03:31:09PM +0200, Thomas Monjalon wrote: > 2016-06-06 19:49, Yuanhan Liu: > > On Fri, Jun 03, 2016 at 06:05:15PM +0200, Thomas Monjalon wrote: > > > 2016-06-03 15:07, Mcnamara, John: > > > > Developers submitting fixes to the mainline should also CC the > > > > maintainer s

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Yuanhan Liu
On Mon, Jun 06, 2016 at 03:44:47PM +0200, Nirmoy Das wrote: > > > LTS Version > > > > > > The proposed initial LTS version will be DPDK 16.07. The next versions, > > based > > on a 2 year cycle, will be DPDK 18.08, 20.08, etc. > > Hi, > > I can see 16.07's release due date is 18th

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Thomas Monjalon
2016-06-06 09:47, Neil Horman: > On Mon, Jun 06, 2016 at 11:27:29AM +0200, Thomas Monjalon wrote: > > 2016-06-05 14:15, Neil Horman: > > > On Fri, Jun 03, 2016 at 03:07:49PM +, Mcnamara, John wrote: > > > > Introduction > > > > > > > > > > > > This document sets out a proposal for

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Thomas Monjalon
2016-06-06 22:14, Yuanhan Liu: > On Mon, Jun 06, 2016 at 03:31:09PM +0200, Thomas Monjalon wrote: > > 2016-06-06 19:49, Yuanhan Liu: > > > On Fri, Jun 03, 2016 at 06:05:15PM +0200, Thomas Monjalon wrote: > > > > 2016-06-03 15:07, Mcnamara, John: > > > > > Developers submitting fixes to the mainline

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-06 Thread Shreyansh Jain
Hi, This is more of a question/clarification than a comment. (And I have taken only some snippets from original mail to keep it cleaner) > +MEMPOOL_REGISTER_OPS(ops_mp_mc); > +MEMPOOL_REGISTER_OPS(ops_sp_sc); > +MEMPOOL_REGISTER_OPS(ops_mp_sc); > +MEMPOOL_REGISTER_OPS(ops_sp_mc); > + /*

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-06 Thread Shreyansh Jain
Hi, (Apologies for overly-eager email sent on this thread earlier. Will be more careful in future). This is more of a question/clarification than a comment. (And I have taken only some snippets from original mail to keep it cleaner) > +MEMPOOL_REGISTER_OPS(ops_mp_mc); > +MEMPOOL_REGISTER_OPS(

[dpdk-dev] RFC: DPDK Long Term Support

2016-06-06 Thread Neil Horman
On Mon, Jun 06, 2016 at 04:21:11PM +0200, Thomas Monjalon wrote: > 2016-06-06 09:47, Neil Horman: > > On Mon, Jun 06, 2016 at 11:27:29AM +0200, Thomas Monjalon wrote: > > > 2016-06-05 14:15, Neil Horman: > > > > On Fri, Jun 03, 2016 at 03:07:49PM +, Mcnamara, John wrote: > > > > > Introduction

[dpdk-dev] [PATCH v1 2/2] Test cases for rte_memcmp functions

2016-06-06 Thread Ravi Kerur
Zhilong, Thomas, If there is enough interest within DPDK community I can work on adding support for 'unaligned access' and 'test cases' for it. Please let me know either way. Thanks, Ravi On Thu, May 26, 2016 at 2:05 AM, Wang, Zhihong wrote: > > > > -Original Message- > > From: dev [m

[dpdk-dev] [PATCH v4 01/39] bnxt: new driver for Broadcom NetXtreme-C devices

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This patch adds the initial skeleton for bnxt driver along with the nic guide to tie into the build system. At this point, the driver simply fails init. v4: Fix a warning that the document isn't included in any toctree Also remove a PCI ID added erroneously. Signed-off-by: A

[dpdk-dev] [PATCH v4 02/39] bnxt: add HWRM init code

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Start adding support to use the HWRM API. Hardware Resource Manager or HWRM in short, is a set of API provided by the firmware running in the ASIC to manage the various resources. Initial commit just performs necessary HWRM queries for init, then fails as before. The used HW

[dpdk-dev] [PATCH v4 03/39] bnxt: add driver register/unregister support

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Move init() cleanup into uninit() function Fix .dev_private_size Add require hwrm calls: bnxt_hwrm_func_driver_register() bnxt_hwrm_func_driver_unregister() v4: Address review comment regarding removal of bnxt_dev_close_op Signed-off-by: Ajit Khaparde Review

[dpdk-dev] [PATCH v4 04/39] bnxt: add dev infos get operation

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Gets device info from the bp structure filled in the init() function. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt.h| 3 ++ drivers/net/bnxt/bnxt_ethdev.c | 95 ++

[dpdk-dev] [PATCH v4 05/39] bnxt: add dev configure operation

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This patch adds the bnxt_hwrm_port_phy_cfg() HWRM call, and copies required information into the new struct bnxt_link_info. v4: Fixed few issues identified by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/

[dpdk-dev] [PATCH v4 07/39] bnxt: declare ring structs and free() func

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Declare ring structures and a ring free() function. These are generic ring mamagement functions which will be used to create Tx, Rx and Completion rings in the subsequent patches. v4: Address checkpatch warnings. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen

[dpdk-dev] [PATCH v4 13/39] bnxt: initial Tx code implementation

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Initial implementation of tx_pkt_burst for transmit. Add code to allocate rings to bnxt_ring.c This allows creation of rings in ASIC, which is used by the Tx function. v4: Address review comments and fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewe

[dpdk-dev] [PATCH v4 12/39] bnxt: Add statistics operations

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add get and clear staitstics operations and the asociated HWRM calls. v4: Address review comments and fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/Makefile

[dpdk-dev] [PATCH v4 09/39] bnxt: add L2 filter alloc/init/free

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add the L2 filter structure and the alloc/init/free functions for dealing with them. A filter is used to identify traffic that contains a matching set of parameters like unicast or broadcast MAC address or a VLAN tag amongst other things which then allows the ASIC to direct t

[dpdk-dev] [PATCH v4 06/39] bnxt: add vnic functions and structs

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add functions to allocate, initialize, and free vnics. A VNIC represents a virtual interface. It is a resource in the RX path of the chip and is used to setup various target actions such as RSS, MAC filtering etc.. for the physical function in use. Signed-off-by: Ajit Khapar

[dpdk-dev] [PATCH v4 08/39] bnxt: add completion ring support

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Structures, macros, and functions for working with completion rings in the driver. Completion Ring is used by the Ethernet controller to provide the status of transmitted & received packets, report errors, status changes to the host software. v4: Address review comments and

[dpdk-dev] [PATCH v4 11/39] bnxt: add Rx queue create/destroy operations

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Adds initial create/destroy queue code. Still requires RX ring support which will be brought in subsequent patches to be functional. v4: Address review comments and fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off

[dpdk-dev] [PATCH v4 32/39] bnxt: add all multicast enable/disable operations

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This patch adds dev_ops to enable/disable multicast traffic. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_ethdev.c | 30 ++ 1 file changed, 30 insertions(+) diff --git a/driv

[dpdk-dev] [PATCH v4 30/39] bnxt: add start/stop/link update operations

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This patch adds code to add the start, stop and link update dev_ops. The BNXT driver will now minimally pass traffic with testpmd. v4: - Fix issues pointed out by checkpatch. - Shorten the string passed for reserving memzone when default completion ring is created. Signed-of

[dpdk-dev] [PATCH v4 31/39] bnxt: add promiscuous enable/disable operations

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This patch adds the promiscuous mode enable and disable dev_ops. v4: Fix couple of typos in the commit message. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_ethdev.c | 30 ++

[dpdk-dev] [PATCH v4 22/39] bnxt: add API for L2 Rx mask set/clear functions

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde These HWRM APIs allow setting and clearing of Rx masks in L2 context per VNIC. v4: Address review comments. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_hwrm.c | 45 +++ drivers/net/b

[dpdk-dev] [PATCH v4 10/39] bnxt: add Tx queue operations (nonfunctional)

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add code to create/destroy TX queues. This still requires support to create a TX ring in the ASIC which will be completed in a future commit. v4: Address review comments and fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen S

[dpdk-dev] [PATCH v4 26/39] bnxt: add HWRM stat context free function

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add function and associated structures and definitions to free statistics context from the ASIC. v4: Address review comments and fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/

[dpdk-dev] [PATCH v4 33/39] bnxt: free memory in close operation

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This patch adds code to free all resources except the one corresponding to HWRM, which are required to notify the HWRM that the driver is unloaded (these are freed in uninit()). Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- dr

[dpdk-dev] [PATCH v4 15/39] bnxt: Code to alloc/free ring

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Perform allocation and free()ing of ring and information structures for the TX, RX, and completion rings. The previous patches had so far provided top level stubs, while this patch does the real allocation and freeing of the memory. v4: - Address review comments and fix issue

[dpdk-dev] [PATCH v4 18/39] bnxt: add HWRM vnic free function

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Frees a vnic allocated by vnic_alloc in the previous patch. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_hwrm.c | 21 + drivers/net/bnxt/bnxt_hwrm.h | 1 + drivers/net/bnxt/h

[dpdk-dev] [PATCH v4 23/39] bnxt: add HWRM stats context allocation

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add HWRM API code to allocate a statistics context in the ASIC. This API will be called by the previously submitted "add statistics operations patch". v4: Address review comments and fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David Chris

[dpdk-dev] [PATCH v4 19/39] bnxt: add HWRM vnic configure function

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde A VNIC represents a virtual interface. It is a resource in the RX path of the chip and is used to setup various target actions such as RSS, MAC filtering etc.. for the physical function in use. This patch configures the properties and actions of the vnic allocated by vnic_all

[dpdk-dev] [PATCH v4 24/39] bnxt: add HWRM ring alloc/free functions

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add HWRM API calls to allocate and free TX, RX and Completion rings in the hardware along with the associated structs and definitions. As mentioned earlier, a completion ring is used by the Ethernet controller to provide the status of transmitted & received packets, report er

[dpdk-dev] [PATCH v4 14/39] bnxt: initial Rx code implementation

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Initial implementation of rx_pkt_burst Add code to allocate rings to bnxt_ring.c v4: Use rte_mbuf_raw_alloc instead of the now depricated __rte_mbuf_raw_alloc and fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-b

[dpdk-dev] [PATCH v4 27/39] bnxt: Add HWRM API to set and clear filters

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This patch adds code to set and clear L2 filters from the corresponding VNIC. These filters will determine the characteristics of Rx traffic. v4: Separated this code from the previous patch as it had nothing to do with freeing of statistics context. Signed-off-by: Ajit Khapa

[dpdk-dev] [PATCH v4 21/39] bnxt: add HWRM API to configure RSS

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde As mentioned earlier: A VNIC represents a virtual interface. It is a resource in the RX path of the chip and is used to setup various target actions such as RSS, MAC filtering etc.. for the physical function in use. The HWRM API defined in this patch will be used to enable RS

[dpdk-dev] [PATCH v4 17/39] bnxt: add HWRM vnic alloc function

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This requires a group info array in struct bnxt, so add that, save the max size from the func_qcap response, and alloc/free in init/uninit As mentioned in the previous patch, A VNIC represents a virtual interface. It is a resource in the RX path of the chip and is used to set

[dpdk-dev] [PATCH v4 37/39] bnxt: add RSS device operations

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add rss_hash_update and rss_hash_conf_get dev_ops v4: Fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_ethdev.c | 121 + 1 file

[dpdk-dev] [PATCH v4 16/39] bnxt: add HWRM function reset command

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add bnxt_hwrm_func_reset() function and supporting structs and macros. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_hwrm.c | 17 + drivers/net/bnxt/bnxt_hwrm.h | 1 + drivers/n

[dpdk-dev] [PATCH v4 36/39] bnxt: add reta update/query operations

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add code to Update/query reta dev_ops Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_ethdev.c | 56 ++ 1 file changed, 56 insertions(+) diff --git a/drivers/net/bnx

[dpdk-dev] [PATCH v4 35/39] bnxt: add set link up/down operations

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Adds dev_ops to set link UP or DOWN as appropriate. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_ethdev.c | 20 1 file changed, 20 insertions(+) diff --git a/drivers/net/bnxt/bnxt_e

[dpdk-dev] [PATCH v4 20/39] bnxt: add API to allow configuration of vnic

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This patch adds APIs to allow configuration of a VNIC. The functions alloc and free the COS and Load Balance context corresponding to the VNIC in the chip. v4: Address review comments and fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David

[dpdk-dev] [PATCH v4 38/39] bnxt: add flow control operations

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add flow_ctrl_get and flow_ctrl_set dev_ops. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_ethdev.c | 83 ++ 1 file changed, 83 insertions(+) diff --git a/drivers/

[dpdk-dev] [PATCH v4 28/39] bnxt: add ring alloc, free and group init

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add a function to initialize ring groups, and a function to allocate and free the rings via HWRM. This should be the last functionality needed to add start/stop device operations. v4: Address review comment to merge another patch into this to avoid a compilation issue. Fix i

[dpdk-dev] [PATCH v4 25/39] bnxt: add ring group alloc/free functions

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add HWRM API for ring group alloc/free functions, associated structs and definitions. This API allocates and does basic preparation for a ring group in ASIC. A ring group is identified by an index. It consists of Rx ring id, completion ring id and a statistics context. v4: Ad

[dpdk-dev] [PATCH v4 29/39] bnxt: add HWRM port PHY config call and helpers

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde Add HWRM calls to query the port's PHY and link configuration. This HWRM command and helper function like bnxt_get_hwrm_link_config() and bnxt_parse_hw_link_speed() parse the link state. v4: Fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: Dav

[dpdk-dev] [PATCH v4 34/39] bnxt: add MAC address add/remove dev_ops

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde This patch adds dev_ops to Add/Remove MAC addresses. v4: Fix issues pointed out by checkpatch. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_ethdev.c | 71 ++ 1 fi

[dpdk-dev] [PATCH v4 39/39] bnxt: Replace bnxt_ring_struct with bnxt_ring

2016-06-06 Thread Stephen Hurd
From: Ajit Khaparde As pointed in the previous round of review, Having struct at the end of the structure bnxt_ring_struct is a redundant. Replace it with bnxt_ring. Signed-off-by: Ajit Khaparde Reviewed-by: David Christensen Signed-off-by: Stephen Hurd --- drivers/net/bnxt/bnxt_cpr.c | 4