[dpdk-dev] [PATCH 0/3] *** Upgrade NIC share codes ***

Jijiang Liu jijiang.liu at intel.com
Thu May 15 04:18:11 CEST 2014


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 <jijiang.liu at intel.com>
 
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(-)



More information about the dev mailing list