1. 06 7月, 2010 1 次提交
  2. 04 6月, 2010 1 次提交
  3. 14 5月, 2010 1 次提交
    • J
      drivers/net: Remove unnecessary returns from void function()s · a4b77097
      Joe Perches 提交于
      This patch removes from drivers/net/ all the unnecessary
      return; statements that precede the last closing brace of
      void functions.
      
      It does not remove the returns that are immediately
      preceded by a label as gcc doesn't like that.
      
      It also does not remove null void functions with return.
      
      Done via:
      $ grep -rP --include=*.[ch] -l "return;\n}" net/ | \
        xargs perl -i -e 'local $/ ; while (<>) { s/\n[ \t\n]+return;\n}/\n}/g; print; }'
      
      with some cleanups by hand.
      
      Compile tested x86 allmodconfig only.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a4b77097
  4. 28 1月, 2010 2 次提交
  5. 14 1月, 2010 1 次提交
  6. 07 10月, 2009 1 次提交
  7. 04 9月, 2009 1 次提交
    • Y
      ixgbe: Add support for multiple Tx queues for FCoE in 82599 · 8de8b2e6
      Yi Zou 提交于
      This patch adds support for multiple transmit queues to the Fiber Channel
      over Ethernet (FCoE) feature found in 82599. Currently, FCoE has multiple
      Rx queues available, along with a redirection table, that helps distribute
      the I/O load across multiple CPUs based on the FC exchange ID. To make
      this the most effective, we need to provide the same layout of transmit
      queues to match receive.
      
      Particularly, when Data Center Bridging (DCB) is enabled, the designated
      traffic class for FCoE can have dedicated queues for just FCoE traffic,
      while not affecting any other type of traffic flow.
      Signed-off-by: NYi Zou <yi.zou@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      8de8b2e6
  8. 01 9月, 2009 2 次提交
  9. 15 8月, 2009 2 次提交
  10. 24 7月, 2009 1 次提交
  11. 17 7月, 2009 2 次提交
  12. 10 7月, 2009 1 次提交
    • Y
      ixgbe: Fix coexistence of FCoE and Flow Director in 82599 · 8faa2a78
      Yi Zou 提交于
      Fix coexistence of Fiber Channel over Ethernet (FCoE) and Flow Director (FDIR)
      in 82599 and remove the disabling of FDIR when FCoE is enabled.
      
      Currently, FDIR is turned off when FCoE is enabled under the assumption that
      FCoE is always enabled with DCB being turned on. However, FDIR does not have
      to be turned off all the time when FCoE is enabled since FCoE can be enabled
      without DCB being turned on, e.g., use link pause only. This patch makes sure
      that when DCB is turned on or off, FDIR is turned on or off correspondingly;
      and when FCoE is enabled, it does not disable FDIR, rather, it will have FDIR
      set up properly so FCoE and FDIR can coexist regardless of DCB being on or off.
      Signed-off-by: NYi Zou <yi.zou@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      8faa2a78
  13. 18 5月, 2009 3 次提交
  14. 07 5月, 2009 1 次提交
  15. 02 4月, 2009 1 次提交
  16. 26 3月, 2009 1 次提交
  17. 22 3月, 2009 1 次提交
  18. 01 3月, 2009 1 次提交
  19. 01 2月, 2009 1 次提交
  20. 26 12月, 2008 1 次提交
  21. 22 12月, 2008 2 次提交
  22. 21 11月, 2008 5 次提交