From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx0a-0016ce01.pphosted.com (mx0a-0016ce01.pphosted.com [67.231.148.157]) by dpdk.org (Postfix) with ESMTP id 3E1828D38 for ; Tue, 24 Nov 2015 08:44:42 +0100 (CET) Received: from pps.filterd (m0045602.ppops.net [127.0.0.1]) by mx0a-0016ce01.pphosted.com (8.15.0.59/8.15.0.59) with SMTP id tAO7hbg4007104; Mon, 23 Nov 2015 23:44:40 -0800 Received: from avcashub1.qlogic.com (avcashub2.qlogic.com [198.70.193.116]) by mx0a-0016ce01.pphosted.com with ESMTP id 1yceg1g9mj-1 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Mon, 23 Nov 2015 23:44:40 -0800 Received: from avluser05.qlc.com (10.1.113.115) by qlc.com (10.1.4.191) with Microsoft SMTP Server id 14.3.235.1; Mon, 23 Nov 2015 23:44:39 -0800 Received: (from rmody@localhost) by avluser05.qlc.com (8.14.4/8.14.4/Submit) id tAO7idfx023209; Mon, 23 Nov 2015 23:44:39 -0800 X-Authentication-Warning: avluser05.qlc.com: rmody set sender to rasesh.mody@qlogic.com using -f From: Rasesh Mody To: , Date: Mon, 23 Nov 2015 23:44:25 -0800 Message-ID: <1448351076-23161-1-git-send-email-rasesh.mody@qlogic.com> X-Mailer: git-send-email 1.7.10.3 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=nai engine=5700 definitions=7994 signatures=670662 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 clxscore=1015 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1507310000 definitions=main-1511240145 Cc: sony.chacko@qlogic.com Subject: [dpdk-dev] [PATCH v3 00/11] bnx2x: Enhancement, fixes, licensing and doumentation X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Nov 2015 07:44:42 -0000 Hi Thomas, This patch set consists of enhancements, fixes, licensing and documentation changes for the QLogic bnx2x Poll Mode Driver. The patches addresses the latets review feedback and have been generated and tested against latest dpdk tree. This patch set enables the BNX2X PMD and versions bnx2x PMD driver at 1.0.0. Thanks! Rasesh Harish Patil (4): bnx2x: Update VF to support newer PF drivers bnx2x: Fix x86_64-native-linuxapp-clang build error bnx2x: Add periodic debug option config: Enable BNX2X driver build by default Rasesh Mody (7): doc: Add BNX2X PMD documentationdoc: Add BNX2X PMD documentation bnx2x: Add LICENSE.bnx2x_pmd and update source files bnx2x: FreeBSD enablement bnx2x: Linux 32bit enablement bnx2x: Handle zlib compatibility error maintainers: Add maintainers for BNX2X PMD bnx2x: Add BNX2X PMD versioning MAINTAINERS | 6 +- config/common_bsdapp | 5 +- config/common_linuxapp | 5 +- doc/guides/nics/bnx2x.rst | 334 +++++++++++++++++++++++++++++++++++ drivers/net/bnx2x/LICENSE.bnx2x_pmd | 28 +++ drivers/net/bnx2x/Makefile | 4 +- drivers/net/bnx2x/bnx2x.c | 155 +++++++++------- drivers/net/bnx2x/bnx2x.h | 66 +++---- drivers/net/bnx2x/bnx2x_ethdev.c | 8 +- drivers/net/bnx2x/bnx2x_ethdev.h | 4 + drivers/net/bnx2x/bnx2x_logs.h | 12 ++ drivers/net/bnx2x/bnx2x_rxtx.c | 15 +- drivers/net/bnx2x/bnx2x_rxtx.h | 4 + drivers/net/bnx2x/bnx2x_stats.c | 29 +-- drivers/net/bnx2x/bnx2x_stats.h | 27 +-- drivers/net/bnx2x/bnx2x_vfpf.c | 19 +- drivers/net/bnx2x/bnx2x_vfpf.h | 19 ++ drivers/net/bnx2x/debug.c | 63 +++---- drivers/net/bnx2x/ecore_fw_defs.h | 27 +-- drivers/net/bnx2x/ecore_hsi.h | 29 +-- drivers/net/bnx2x/ecore_init.h | 27 +-- drivers/net/bnx2x/ecore_init_ops.h | 45 ++--- drivers/net/bnx2x/ecore_mfw_req.h | 27 +-- drivers/net/bnx2x/ecore_reg.h | 27 +-- drivers/net/bnx2x/ecore_sp.c | 27 +-- drivers/net/bnx2x/ecore_sp.h | 33 +--- drivers/net/bnx2x/elink.c | 29 +-- drivers/net/bnx2x/elink.h | 29 +-- 28 files changed, 655 insertions(+), 448 deletions(-) create mode 100644 doc/guides/nics/bnx2x.rst create mode 100644 drivers/net/bnx2x/LICENSE.bnx2x_pmd -- 1.7.10.3