1. 18 8月, 2011 1 次提交
  2. 12 8月, 2011 1 次提交
  3. 27 7月, 2011 1 次提交
  4. 12 6月, 2011 1 次提交
  5. 03 9月, 2010 1 次提交
  6. 26 8月, 2010 1 次提交
  7. 17 8月, 2010 2 次提交
  8. 19 7月, 2010 1 次提交
  9. 01 7月, 2010 1 次提交
  10. 26 6月, 2010 1 次提交
  11. 10 5月, 2010 1 次提交
  12. 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
  13. 08 3月, 2010 3 次提交
  14. 03 3月, 2010 1 次提交
  15. 27 2月, 2010 1 次提交
  16. 18 2月, 2010 1 次提交
  17. 13 2月, 2010 1 次提交
  18. 14 12月, 2009 1 次提交
  19. 14 10月, 2009 1 次提交
  20. 22 9月, 2009 1 次提交
  21. 06 8月, 2009 4 次提交
  22. 25 6月, 2009 1 次提交
  23. 01 6月, 2009 2 次提交
  24. 27 5月, 2009 1 次提交
  25. 16 4月, 2009 1 次提交
  26. 25 3月, 2009 1 次提交
  27. 27 1月, 2009 1 次提交
  28. 22 1月, 2009 1 次提交
  29. 23 12月, 2008 1 次提交
  30. 28 10月, 2008 1 次提交
  31. 09 10月, 2008 1 次提交
  32. 14 8月, 2008 1 次提交
    • H
      [netdrvr] remove unnecessary #include · fde9403a
      Huang Weiyi 提交于
      The drivers below do not use LINUX_VERSION_CODE nor KERNEL_VERSION.
        drivers/net/acenic.c
        drivers/net/bnx2x_link.c
        drivers/net/bnx2x_main.c
        drivers/net/cpmac.c
        drivers/net/gianfar_sysfs.c
        drivers/net/ipg.h
        drivers/net/ppp_mppe.c
        drivers/net/pppol2tp.c
        drivers/net/r6040.c
        drivers/net/sh_eth.c
        drivers/net/sky2.c
        drivers/net/tehuti.h
        drivers/net/typhoon.c
      
      This patch removes the said #include <linux/version.h>.
      Signed-off-by: NHuang Weiyi <hwy@cn.fujitsu.com>
      Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
      fde9403a
  33. 23 7月, 2008 1 次提交
    • A
      netdev: bunch of drivers: avoid WARN at net/core/dev.c:1328 · c8f15686
      Anton Vorontsov 提交于
      The drivers were touching net queue before it has been started, so
      without this patch, the drivers will potentially WARN at
      net/core/dev.c:1328.
      
      I don't have the hardware for the drivers below, so this patch is
      untested, and thus should be carefully peer reviewed.
      
      tc35815.c
      au1000_eth.c
      bfin_mac.c
      macb.c
      ^ The four drivers are using phylib, they're calling netif_start_queue()
      in open() callback. So trivially remove netif_tx_schedule_all().
      Phylib will handle netif_carrier_*().
      
      cpmac.c
      fec_mpc52xx.c
      fs_enet/fs_enet-main.c
      sh_eth.c
      ^ The same as above, but these were also needlessly calling
      netif_carrier_*() functions. So removed queue calls and also remove
      carrier calls, since phylib will handle it. fs_enet-main.c also didn't
      call netif_start_queue() at open(), this is fixed now.
      Signed-off-by: NAnton Vorontsov <avorontsov@ru.mvista.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c8f15686