From patchwork Tue Jun 19 21:30:27 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ajit Khaparde X-Patchwork-Id: 41274 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 82E731B06D; Tue, 19 Jun 2018 23:31:18 +0200 (CEST) Received: from rnd-relay.smtp.broadcom.com (rnd-relay.smtp.broadcom.com [192.19.229.170]) by dpdk.org (Postfix) with ESMTP id AB84E1B053 for ; Tue, 19 Jun 2018 23:31:07 +0200 (CEST) Received: from nis-sj1-27.broadcom.com (nis-sj1-27.lvn.broadcom.net [10.75.144.136]) by rnd-relay.smtp.broadcom.com (Postfix) with ESMTP id AB49030C051; Tue, 19 Jun 2018 14:31:01 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.10.3 rnd-relay.smtp.broadcom.com AB49030C051 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=broadcom.com; s=dkimrelay; t=1529443861; bh=mK/xHqy2GftY7i8LcuWyxaoGFrO3mHPPXaUImbJNlkI=; h=From:To:Cc:Subject:Date:From; b=QmncMLegE4weAYDEgWqbCVjf2tjs4bl2uUF1YxQY/EipkXjDETIL0yIML2uFXlyCn K753DiFv5xOleYpAIVu/v7Ff6izqWSnWLR6Q63jdMc95A+k2MQRe5Q5J8felPnRlrv y5DzjLzIyXxqWerfuYROGqBJKVVnYYyyS+X8r0J8= Received: from C02VPB22HTD6.dhcp.broadcom.net (c02vpb22htd6.dhcp.broadcom.net [10.136.50.120]) by nis-sj1-27.broadcom.com (Postfix) with ESMTP id 8D579AC0799; Tue, 19 Jun 2018 14:31:01 -0700 (PDT) From: Ajit Khaparde To: dev@dpdk.org Cc: ferruh.yigit@intel.com Date: Tue, 19 Jun 2018 14:30:27 -0700 Message-Id: <20180619213058.12273-1-ajit.khaparde@broadcom.com> X-Mailer: git-send-email 2.15.1 (Apple Git-101) Subject: [dpdk-dev] [PATCH 00/31] bnxt patchset 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" Patchset against dpdk-next-net contains bug fixes, some code refactoring and style cleanup. Please apply. Ajit Khaparde (15): net/bnxt: fix clear port stats net/bnxt: add Tx batching support net/bnxt: Rx processing optimization net/bnxt: set min and max descriptor count for Tx and Rx rings net/bnxt: fix dev close operation net/bnxt: set ring coalesce parameters for Stratus NIC net/bnxt: fix HW Tx checksum offload check net/bnxt: add support for VF id 0xd800 net/bnxt: fix rx/tx queue start/stop operations net/bnxt: code cleanup style of bnxt vnic net/bnxt: filter/flow refactoring net/bnxt: check filter type before clearing it net/bnxt: fix set MTU net/bnxt: fix incorrect IO address handling in Tx net/bnxt: allocate RSS context only if RSS mode is enabled. Jay Ding (1): net/bnxt: check for invalid vnic id Rob Miller (1): net/bnxt: update HWRM API to v1.9.2.9 Scott Branden (11): net/bnxt: code cleanup style of bnxt cpr net/bnxt: code cleanup style of bnxt rxr net/bnxt: code cleanup style of rte pmd bnxt file net/bnxt: code cleanup style of bnxt stats net/bnxt: code cleanup style of bnxt vnic net/bnxt: code cleanup style of bnxt txq net/bnxt: code cleanup style of bnxt rxq net/bnxt: code cleanup style of bnxt txr net/bnxt: code cleanup style of bnxt ring net/bnxt: code cleanup style of bnxt ethdev net/bnxt: move function check zero bytes to bnxt util.h Somnath Kotur (2): net/bnxt: Revert reset of L2 filter id in clear_ntuple_filter net/bnxt: fix to move a flow to a different queue Xiaoxin Peng (1): net/bnxt: fix Tx with multiple mbuf drivers/net/bnxt/Makefile | 2 + drivers/net/bnxt/bnxt.h | 27 + drivers/net/bnxt/bnxt_cpr.c | 22 +- drivers/net/bnxt/bnxt_cpr.h | 12 + drivers/net/bnxt/bnxt_ethdev.c | 284 +++++--- drivers/net/bnxt/bnxt_filter.c | 1090 +---------------------------- drivers/net/bnxt/bnxt_filter.h | 1 - drivers/net/bnxt/bnxt_flow.c | 1171 ++++++++++++++++++++++++++++++++ drivers/net/bnxt/bnxt_hwrm.c | 156 +++-- drivers/net/bnxt/bnxt_hwrm.h | 3 + drivers/net/bnxt/bnxt_ring.c | 194 +++++- drivers/net/bnxt/bnxt_ring.h | 41 +- drivers/net/bnxt/bnxt_rxq.c | 76 ++- drivers/net/bnxt/bnxt_rxq.h | 16 +- drivers/net/bnxt/bnxt_rxr.c | 82 ++- drivers/net/bnxt/bnxt_rxr.h | 8 +- drivers/net/bnxt/bnxt_stats.c | 84 ++- drivers/net/bnxt/bnxt_stats.h | 27 +- drivers/net/bnxt/bnxt_txq.c | 24 +- drivers/net/bnxt/bnxt_txq.h | 10 +- drivers/net/bnxt/bnxt_txr.c | 161 +++-- drivers/net/bnxt/bnxt_txr.h | 19 +- drivers/net/bnxt/bnxt_util.c | 18 + drivers/net/bnxt/bnxt_util.h | 11 + drivers/net/bnxt/bnxt_vnic.c | 28 +- drivers/net/bnxt/bnxt_vnic.h | 8 +- drivers/net/bnxt/hsi_struct_def_dpdk.h | 113 ++- drivers/net/bnxt/rte_pmd_bnxt.c | 97 ++- drivers/net/bnxt/rte_pmd_bnxt.h | 69 +- 29 files changed, 2314 insertions(+), 1540 deletions(-) create mode 100644 drivers/net/bnxt/bnxt_flow.c create mode 100644 drivers/net/bnxt/bnxt_util.c create mode 100644 drivers/net/bnxt/bnxt_util.h