From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [143.182.124.21]) by dpdk.org (Postfix) with ESMTP id B14ED68A1 for ; Thu, 15 May 2014 04:18:27 +0200 (CEST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga101.ch.intel.com with ESMTP; 14 May 2014 19:18:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,1055,1389772800"; d="scan'208";a="432334615" Received: from shilc102.sh.intel.com ([10.239.39.44]) by azsmga001.ch.intel.com with ESMTP; 14 May 2014 19:18:27 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shilc102.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id s4F2INma024607; Thu, 15 May 2014 10:18:25 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id s4F2IJav015908; Thu, 15 May 2014 10:18:22 +0800 Received: (from jijiangl@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id s4F2IFwi015903; Thu, 15 May 2014 10:18:15 +0800 From: Jijiang Liu To: dev@dpdk.org Date: Thu, 15 May 2014 10:18:11 +0800 Message-Id: <1400120294-15871-1-git-send-email-jijiang.liu@intel.com> X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH 0/3] *** Upgrade NIC share codes *** 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: Thu, 15 May 2014 02:18:28 -0000 This patchset upgrades NIC share code in ixgbe & e1000 directories and fixs an issue of hash calculation of flow director introduced by upgrading this. Short summary: * Upgrading NIC share code in ixgbe & e1000 directories * Changing README in ixgbe & e1000 directories * Changing ixgbe_osdep.h file * Fixng an issue of hash calculation of flow director * Changing Copyright date of e1000_osdep.c and e1000_osdep.h files Signed-off-by: Jijiang Liu jijiangl (3): Upgrade NIC shared code in ixgbe & e1000 directories Fix an issue of hash calculation of flow director introduced by ixgbe_type.h change Change Copyright date of e1000_osdep.c and e1000_osdep.h files lib/librte_eal/common/include/rte_pci_dev_ids.h | 8 - lib/librte_pmd_e1000/e1000/README | 2 +- lib/librte_pmd_e1000/e1000/e1000_80003es2lan.c | 44 +- lib/librte_pmd_e1000/e1000/e1000_80003es2lan.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_82540.c | 24 +- lib/librte_pmd_e1000/e1000/e1000_82541.c | 14 +- lib/librte_pmd_e1000/e1000/e1000_82541.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_82542.c | 4 +- lib/librte_pmd_e1000/e1000/e1000_82543.c | 38 +- lib/librte_pmd_e1000/e1000/e1000_82543.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_82571.c | 40 +- lib/librte_pmd_e1000/e1000/e1000_82571.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_82575.c | 134 +++++- lib/librte_pmd_e1000/e1000/e1000_82575.h | 4 +- lib/librte_pmd_e1000/e1000/e1000_api.c | 10 +- lib/librte_pmd_e1000/e1000/e1000_api.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_defines.h | 7 +- lib/librte_pmd_e1000/e1000/e1000_hw.h | 13 +- lib/librte_pmd_e1000/e1000/e1000_i210.c | 94 +++- lib/librte_pmd_e1000/e1000/e1000_i210.h | 15 +- lib/librte_pmd_e1000/e1000/e1000_ich8lan.c | 250 +++------- lib/librte_pmd_e1000/e1000/e1000_ich8lan.h | 11 +- lib/librte_pmd_e1000/e1000/e1000_mac.c | 5 +- lib/librte_pmd_e1000/e1000/e1000_mac.h | 5 +- lib/librte_pmd_e1000/e1000/e1000_manage.c | 2 +- lib/librte_pmd_e1000/e1000/e1000_manage.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_mbx.c | 2 +- lib/librte_pmd_e1000/e1000/e1000_mbx.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_nvm.c | 16 +- lib/librte_pmd_e1000/e1000/e1000_nvm.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_osdep.c | 2 +- lib/librte_pmd_e1000/e1000/e1000_osdep.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_phy.c | 38 +- lib/librte_pmd_e1000/e1000/e1000_phy.h | 5 +- lib/librte_pmd_e1000/e1000/e1000_regs.h | 2 +- lib/librte_pmd_e1000/e1000/e1000_vf.c | 4 +- lib/librte_pmd_e1000/e1000/e1000_vf.h | 2 +- lib/librte_pmd_ixgbe/ixgbe/README | 2 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_82598.c | 136 ++++-- lib/librte_pmd_ixgbe/ixgbe/ixgbe_82598.h | 3 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_82599.c | 506 +++++++++++------- lib/librte_pmd_ixgbe/ixgbe/ixgbe_82599.h | 12 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_api.c | 54 ++- lib/librte_pmd_ixgbe/ixgbe/ixgbe_api.h | 22 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_common.c | 652 +++++++++++++++-------- lib/librte_pmd_ixgbe/ixgbe/ixgbe_common.h | 22 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb.c | 4 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb.h | 2 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82598.c | 2 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82598.h | 2 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82599.c | 11 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82599.h | 5 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_mbx.c | 26 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_mbx.h | 2 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_osdep.h | 7 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_phy.c | 570 +++++++++++++------- lib/librte_pmd_ixgbe/ixgbe/ixgbe_phy.h | 23 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_type.h | 230 +++++++-- lib/librte_pmd_ixgbe/ixgbe/ixgbe_vf.c | 133 +++-- lib/librte_pmd_ixgbe/ixgbe/ixgbe_vf.h | 10 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_x540.c | 131 +++-- lib/librte_pmd_ixgbe/ixgbe/ixgbe_x540.h | 8 +- lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 2 +- lib/librte_pmd_ixgbe/ixgbe_fdir.c | 5 +- 64 files changed, 2178 insertions(+), 1217 deletions(-)