From patchwork Wed Oct 2 23:25:41 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ajit Khaparde X-Patchwork-Id: 60465 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BDB811BF96; Thu, 3 Oct 2019 01:26:16 +0200 (CEST) Received: from rnd-relay.smtp.broadcom.com (unknown [192.19.229.170]) by dpdk.org (Postfix) with ESMTP id 217561BF8D for ; Thu, 3 Oct 2019 01:26:08 +0200 (CEST) Received: from mail-irv-17.broadcom.com (mail-irv-17.lvn.broadcom.net [10.75.242.48]) by rnd-relay.smtp.broadcom.com (Postfix) with ESMTP id E687430C257; Wed, 2 Oct 2019 16:24:53 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.10.3 rnd-relay.smtp.broadcom.com E687430C257 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=broadcom.com; s=dkimrelay; t=1570058693; bh=3iSHnkOZokDsz+2fjnhQPGi4XSjMmQBhFGO2By4j3MI=; h=From:To:Cc:Subject:Date:From; b=HAs2PFIWneuqftaDVWa6uQVdUP2NnXDJYKP9dF+9cyQJSDzMoEFWnvELYwPFLTQsZ DOB0f30gtvFl/UJ+TN7HWFa/iENF96I5sEaEs5KBGbaIGPftFwlMBUjZ7uRDw+INCx lS2S3IBRbUB7DN8OvruES6dgoigTgHP5aTg0/Ksg= Received: from localhost.localdomain (unknown [10.230.30.225]) by mail-irv-17.broadcom.com (Postfix) with ESMTP id 0709114008B; Wed, 2 Oct 2019 16:26:06 -0700 (PDT) From: Ajit Khaparde To: dev@dpdk.org Cc: ferruh.yigit@intel.com Date: Wed, 2 Oct 2019 16:25:41 -0700 Message-Id: <20191002232601.22715-1-ajit.khaparde@broadcom.com> X-Mailer: git-send-email 2.20.1 (Apple Git-117) MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 00/20] bnxt patchset to improve rte flow support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Among other changes, this patchset adds support to: - create filters with RSS action. - create source MAC filters. - use user provided priority to place rule appropriately in HW. This patch has been rebased to dpdk-next-net commit 8587a8b9eddefa39e4ceac7e9385efcc5e73307c Please apply. Ajit Khaparde (13): net/bnxt: return standard error codes for HWRM command net/bnxt: refactor code to allow dynamic creation of VNIC net/bnxt: allow flow creation when RSS is enabled net/bnxt: add support to create SMAC and inner DMAC filters net/bnxt: add support for RSS action net/bnxt: parse priority attribute for flow creation net/bnxt: delete and flush L2 filters cleanly net/bnxt: cleanup vnic after flow validate net/bnxt: allow only unicast MAC address filter creation net/bnxt: check device is started before flow creation net/bnxt: handle cleanup if flow creation fails net/bnxt: drop untagged frames when specified net/bnxt: handle flow flush handling Kalesh AP (2): net/bnxt: fix an issue in setting default MAC address net/bnxt: fix multicast filter programming Rahul Gupta (1): net/bnxt: properly handle ring cleanup in case of error Somnath Kotur (1): net/bnxt: check for invalid VNIC ID in vnic tpa cfg Venkat Duvvuru (3): net/bnxt: validate RSS hash key length net/bnxt: synchronize between flow related functions net/bnxt: fix VLAN filtering code path drivers/net/bnxt/bnxt.h | 12 + drivers/net/bnxt/bnxt_ethdev.c | 254 ++++++--- drivers/net/bnxt/bnxt_filter.c | 18 +- drivers/net/bnxt/bnxt_filter.h | 18 + drivers/net/bnxt/bnxt_flow.c | 904 ++++++++++++++++++++++++++++----- drivers/net/bnxt/bnxt_hwrm.c | 190 +++++-- drivers/net/bnxt/bnxt_hwrm.h | 7 +- drivers/net/bnxt/bnxt_ring.c | 37 ++ drivers/net/bnxt/bnxt_rxq.c | 29 +- drivers/net/bnxt/bnxt_vnic.c | 38 +- drivers/net/bnxt/bnxt_vnic.h | 6 + 11 files changed, 1240 insertions(+), 273 deletions(-)