1. 02 10月, 2013 1 次提交
  2. 25 9月, 2013 1 次提交
    • J
      intel: Remove extern from function prototypes · 5ccc921a
      Joe Perches 提交于
      There are a mix of function prototypes with and without extern
      in the kernel sources.  Standardize on not using extern for
      function prototypes.
      
      Function prototypes don't need to be written with extern.
      extern is assumed by the compiler.  Its use is as unnecessary as
      using auto to declare automatic/local variables in a block.
      Signed-off-by: NJoe Perches <joe@perches.com>
      5ccc921a
  3. 02 8月, 2013 1 次提交
  4. 31 7月, 2013 2 次提交
  5. 11 7月, 2013 1 次提交
  6. 11 6月, 2013 2 次提交
  7. 19 4月, 2013 1 次提交
  8. 16 2月, 2013 5 次提交
  9. 05 2月, 2013 2 次提交
  10. 24 1月, 2013 4 次提交
  11. 19 1月, 2013 1 次提交
    • A
      ixgbe: Update ixgbe Tx flags to improve code efficiency · 472148c3
      Alexander Duyck 提交于
      This change is meant to improve the efficiency of the Tx flags in ixgbe by
      aligning them with the values that will later be written into either the
      cmd_type or olinfo.  By doing this we are able to reduce most of these
      functions to either just a simple shift followed by an or in the case of
      cmd_type, or an and followed by an or in the case of olinfo.
      
      To do this I also needed to change the logic and/or drop some flags.  I
      dropped the IXGBE_TX_FLAGS_FSO and it was replaced by IXGBE_TX_FLAGS_TSO since
      the only place it was ever checked was in conjunction with IXGBE_TX_FLAGS_TSO.
      I replaced IXGBE_TX_FLAGS_TXSW with IXGBE_TX_FLAGS_CC, this way we have a
      clear point for what the flag is meant to do.  Finally the
      IXGBE_TX_FLAGS_NO_IFCS was dropped since were are already carrying the data
      for that flag in the skb.  Instead we can just check the bitflag in the skb.
      
      In order to avoid type conversion errors I also adjusted the locations
      where we were switching between CPU and little endian.
      Signed-off-by: NAlexander Duyck <alexander.h.duyck@intel.com>
      Tested-by: NPhil Schmitt <phillip.j.schmitt@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      472148c3
  12. 28 11月, 2012 1 次提交
  13. 01 11月, 2012 1 次提交
  14. 30 10月, 2012 1 次提交
  15. 23 10月, 2012 2 次提交
  16. 19 10月, 2012 1 次提交
  17. 09 10月, 2012 1 次提交
  18. 16 9月, 2012 1 次提交
  19. 17 8月, 2012 2 次提交
  20. 22 7月, 2012 2 次提交
  21. 20 7月, 2012 2 次提交
  22. 19 7月, 2012 3 次提交
  23. 15 7月, 2012 1 次提交
  24. 11 7月, 2012 1 次提交