From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id C1DDE9AD8 for ; Wed, 22 Apr 2015 09:26:12 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 22 Apr 2015 00:26:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,622,1422950400"; d="scan'208";a="717310586" Received: from pgsmsx101.gar.corp.intel.com ([10.221.44.78]) by orsmga002.jf.intel.com with ESMTP; 22 Apr 2015 00:26:10 -0700 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by PGSMSX101.gar.corp.intel.com (10.221.44.78) with Microsoft SMTP Server (TLS) id 14.3.224.2; Wed, 22 Apr 2015 15:26:09 +0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.166]) by shsmsx102.ccr.corp.intel.com ([10.239.4.154]) with mapi id 14.03.0224.002; Wed, 22 Apr 2015 15:26:09 +0800 From: "Cao, Min" To: "Zhang, Helin" , "dev@dpdk.org" Thread-Topic: [PATCH 00/18] i40e base driver update Thread-Index: AQHQe0MtHwkvVWNQJUCSOHTQvCjR0p1Yo3rQ Date: Wed, 22 Apr 2015 07:26:08 +0000 Message-ID: References: <1429518150-28098-1-git-send-email-helin.zhang@intel.com> In-Reply-To: <1429518150-28098-1-git-send-email-helin.zhang@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 00/18] i40e base driver update 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: Wed, 22 Apr 2015 07:26:13 -0000 Tested-by: Min Cao Patch name: [PATCH 00/18] i40e base driver update Test Flag: Tested-by Tester name: min.cao@intel.com Result summary: total 60 cases, 60passed, 0 failed Test Case 1: =09 Name: ipfrag cmdline hello_world timer dynamic_config jumboframes scatter multiprocess l2fwd checksum_offload whitelist blacklist shutdown_api dual_vlan ipv4_reassembly -----Original Message----- From: Zhang, Helin=20 Sent: Monday, April 20, 2015 4:22 PM To: dev@dpdk.org Cc: Wu, Jingjing; Xu, Qian Q; Cao, Min; Patel, Rashmin N; Shih, Chiu-Pi; Ke= nguva, Monica; Murray, Steven J; Zhang, Helin Subject: [PATCH 00/18] i40e base driver update To support firmware version 'FVL3E', i40e base driver should be updated. It= mainly includes the base driver update which contains additional enhanceme= nts, fixes, changes for future use, and so on, together with neccessary mod= ifications in i40e Poll Mode Driver. The details are listed as follows. Helin Zhang (18): i40e: copyright update i40e: disable setting phy configuration i40e: adjustment of register definitions and relevant i40e: support of CEE DCBX on recent firmware versions i40e: rework of 'i40e_hmc_get_object_va' i40e: support of Fortpark device IDs and mac types i40e: rename 'err' to 'perrno' i40e: support NVM read on Fortpark, with minor enhancements i40e: adminq enhancements i40e: support of firmware build number i40e: support of building both PF and VF driver together i40e: enhancements of AQ commands and common interfaces i40e: replacement of 'i40e_debug_read_register()' i40e: add new interfaces of AQ commands and relevant i40e: support of Fortpark FPGA i40e: add more virtual channel operations i40e: support of structure and command length check i40e: Minor enhancements in i40e_type.h lib/librte_pmd_i40e/Makefile | 5 +- lib/librte_pmd_i40e/i40e/i40e_adminq.c | 59 +- lib/librte_pmd_i40e/i40e/i40e_adminq.h | 16 +- lib/librte_pmd_i40e/i40e/i40e_adminq_cmd.h | 233 +++- lib/librte_pmd_i40e/i40e/i40e_alloc.h | 2 +- lib/librte_pmd_i40e/i40e/i40e_common.c | 839 ++++++++++-- lib/librte_pmd_i40e/i40e/i40e_dcb.c | 263 +++- lib/librte_pmd_i40e/i40e/i40e_dcb.h | 22 +- lib/librte_pmd_i40e/i40e/i40e_diag.c | 2 +- lib/librte_pmd_i40e/i40e/i40e_diag.h | 2 +- lib/librte_pmd_i40e/i40e/i40e_hmc.c | 2 +- lib/librte_pmd_i40e/i40e/i40e_hmc.h | 2 +- lib/librte_pmd_i40e/i40e/i40e_lan_hmc.c | 34 +- lib/librte_pmd_i40e/i40e/i40e_lan_hmc.h | 7 +- lib/librte_pmd_i40e/i40e/i40e_nvm.c | 559 ++++++-- lib/librte_pmd_i40e/i40e/i40e_osdep.h | 64 +- lib/librte_pmd_i40e/i40e/i40e_prototype.h | 49 +- lib/librte_pmd_i40e/i40e/i40e_register.h | 1983 ++++++++++++++++++++++++= +++- lib/librte_pmd_i40e/i40e/i40e_status.h | 2 +- lib/librte_pmd_i40e/i40e/i40e_type.h | 123 +- lib/librte_pmd_i40e/i40e/i40e_virtchnl.h | 63 +- lib/librte_pmd_i40e/i40e_ethdev.c | 31 +- lib/librte_pmd_i40e/i40e_ethdev.h | 2 +- lib/librte_pmd_i40e/i40e_ethdev_vf.c | 2 +- lib/librte_pmd_i40e/i40e_fdir.c | 2 +- lib/librte_pmd_i40e/i40e_logs.h | 2 +- lib/librte_pmd_i40e/i40e_pf.c | 2 +- lib/librte_pmd_i40e/i40e_pf.h | 2 +- lib/librte_pmd_i40e/i40e_rxtx.c | 2 +- lib/librte_pmd_i40e/i40e_rxtx.h | 2 +- 30 files changed, 3934 insertions(+), 444 deletions(-) -- 1.8.1.4