1. 18 10月, 2013 1 次提交
  2. 20 4月, 2013 3 次提交
  3. 08 12月, 2012 1 次提交
  4. 04 12月, 2012 1 次提交
  5. 06 10月, 2012 1 次提交
  6. 07 4月, 2012 2 次提交
  7. 07 2月, 2012 1 次提交
  8. 01 2月, 2012 1 次提交
  9. 09 12月, 2011 1 次提交
  10. 09 11月, 2011 1 次提交
  11. 19 10月, 2011 1 次提交
  12. 23 9月, 2011 1 次提交
  13. 18 8月, 2011 1 次提交
  14. 13 8月, 2011 1 次提交
  15. 22 7月, 2011 1 次提交
  16. 07 6月, 2011 1 次提交
  17. 02 4月, 2011 1 次提交
  18. 01 1月, 2011 1 次提交
    • B
      starfire: Fix dma_addr_t size test for MIPS · f4d5900a
      Ben Hutchings 提交于
      Commit 56543af9 "starfire: use BUILD_BUG_ON for netdrv_addr_t" revealed
      that the preprocessor condition used to find the size of dma_addr_t
      yielded the wrong result for some architectures and configurations.
      This was kluged for 64-bit PowerPC in commit 3e502e63 by adding yet
      another case to the condition.  However, 64-bit MIPS configurations
      are not detected reliably either.
      
      This should be fixed by using CONFIG_ARCH_DMA_ADDR_T_64BIT, but that
      isn't yet defined everywhere it should be.
      Signed-off-by: NBen Hutchings <ben@decadent.org.uk>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f4d5900a
  19. 02 9月, 2010 1 次提交
  20. 29 8月, 2010 2 次提交
  21. 06 7月, 2010 1 次提交
  22. 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
  23. 10 5月, 2010 1 次提交
  24. 04 4月, 2010 1 次提交
    • J
      net: convert multicast list to list_head · 22bedad3
      Jiri Pirko 提交于
      Converts the list and the core manipulating with it to be the same as uc_list.
      
      +uses two functions for adding/removing mc address (normal and "global"
       variant) instead of a function parameter.
      +removes dev_mcast.c completely.
      +exposes netdev_hw_addr_list_* macros along with __hw_addr_* functions for
       manipulation with lists on a sandbox (used in bonding and 80211 drivers)
      Signed-off-by: NJiri Pirko <jpirko@redhat.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      22bedad3
  25. 26 2月, 2010 1 次提交
  26. 19 2月, 2010 1 次提交
  27. 13 2月, 2010 1 次提交
  28. 27 1月, 2010 1 次提交
  29. 08 1月, 2010 1 次提交
  30. 04 12月, 2009 1 次提交
  31. 19 11月, 2009 1 次提交
  32. 01 9月, 2009 1 次提交
  33. 09 7月, 2009 1 次提交
  34. 06 7月, 2009 1 次提交
  35. 13 6月, 2009 1 次提交
  36. 27 2月, 2009 1 次提交