From patchwork Sat Sep 29 01:59:51 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ajit Khaparde X-Patchwork-Id: 45627 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 B5CB31B3D7; Sat, 29 Sep 2018 04:00:22 +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 D72651B1F4 for ; Sat, 29 Sep 2018 04:00:15 +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 C983C30C03C; Fri, 28 Sep 2018 19:00:09 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.10.3 rnd-relay.smtp.broadcom.com C983C30C03C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=broadcom.com; s=dkimrelay; t=1538186409; bh=xkb2sivmpHk3aCIhCoAAWm07hzTa9IeYuTYVeUKeJ88=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=eVvic5pQoUZyPl8QVng90hmA1jN6cCDdDfhgincYd38wmE0W4hjQ+vBc19GxKreEf adN1ABo9WEeclenq7uEdZH1e7DE81Lqpv0WmAWHu+n3u20Ipl6EMJXlV1WcV6CYUMq RcWvNfz6FknLA5uAjW4YlV8XXUN1bItGSfgTGjs8= Received: from C02VPB22HTD6.vpn.broadcom.net (unknown [10.10.118.196]) by nis-sj1-27.broadcom.com (Postfix) with ESMTP id 93ED9AC0729; Fri, 28 Sep 2018 19:00:09 -0700 (PDT) From: Ajit Khaparde To: dev@dpdk.org Cc: ferruh.yigit@intel.com Date: Fri, 28 Sep 2018 18:59:51 -0700 Message-Id: <20180929020006.71505-1-ajit.khaparde@broadcom.com> X-Mailer: git-send-email 2.17.1 (Apple Git-112) In-Reply-To: <95301884-14c8-bbfd-ade9-ded04bdb6a95@intel.com> References: <95301884-14c8-bbfd-ade9-ded04bdb6a95@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v3 00/15] 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. v1->v2: net/bnxt: get rid of ff pools array and use the vnic info array instead - Fix access to uninitialized variable. - Rectify the wrong 'Fixes' reference. net/bnxt: update HWRM version - Update from 1.9.2.45 to version 1.9.2.53 v2->v3: net/bnxt: update HWRM version - Tried to split into more than one patch. - Updated commit logs and messages for rest based on review comments. Please apply. Ajit Khaparde (10): net/bnxt: fix MTU setting net/bnxt: update HWRM version net/bnxt: update HWRM version part 2 net/bnxt: update HWRM version part 3 net/bnxt: add support for extended port counters net/bnxt: add support to enable new mailbox channel net/bnxt: add support for trusted VF net/bnxt: set MAC filtering as outer for non tunnel frames net/bnxt: set a VNIC as default only once net/bnxt: remove excess log messages Bei Sun (1): net/bnxt: set VLAN strip mode before default VNIC cfg Somnath Kotur (2): net/bnxt: get rid of ff pools and use VNIC info array net/bnxt: fix uninitialized ptr access in transmit handler Xiaoxin Peng (1): net/bnxt: reduce the polling interval for valid bit Yongping Zhang (1): net/bnxt: fix registration of VF async event completion ring drivers/net/bnxt/bnxt.h | 28 +- drivers/net/bnxt/bnxt_cpr.c | 1 + drivers/net/bnxt/bnxt_ethdev.c | 330 +- drivers/net/bnxt/bnxt_filter.c | 28 +- drivers/net/bnxt/bnxt_flow.c | 12 +- drivers/net/bnxt/bnxt_hwrm.c | 418 +- drivers/net/bnxt/bnxt_hwrm.h | 5 + drivers/net/bnxt/bnxt_rxq.c | 19 +- drivers/net/bnxt/bnxt_stats.c | 221 +- drivers/net/bnxt/bnxt_txr.c | 5 +- drivers/net/bnxt/bnxt_vnic.c | 43 +- drivers/net/bnxt/hsi_struct_def_dpdk.h | 24017 +++++++++++------------ 12 files changed, 12229 insertions(+), 12898 deletions(-)