1. 19 4月, 2012 2 次提交
  2. 07 4月, 2012 1 次提交
  3. 08 3月, 2012 1 次提交
  4. 20 2月, 2012 1 次提交
    • E
      atl1c: dont use highprio tx queue · 11aad99a
      Eric Dumazet 提交于
      This driver attempts to use two TX rings but lacks proper support :
      
      1) IRQ handler only takes care of TX completion on first TX ring
      2) the stop/start logic uses the legacy functions (for non multiqueue
      drivers)
      
      This means all packets witk skb mark set to 1 are sent through high
      queue but are never cleaned and queue eventualy fills and block the
      device, triggering the infamous "NETDEV WATCHDOG" message.
      
      Lets use a single TX ring to fix the problem, this driver is not a real
      multiqueue one yet.
      
      Minimal fix for stable kernels.
      Reported-by: NThomas Meyer <thomas@m3y3r.de>
      Tested-by: NThomas Meyer <thomas@m3y3r.de>
      Signed-off-by: NEric Dumazet <eric.dumazet@gmail.com>
      Cc: Jay Cliburn <jcliburn@gmail.com>
      Cc: Chris Snook <chris.snook@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      11aad99a
  5. 18 2月, 2012 1 次提交
  6. 07 2月, 2012 1 次提交
  7. 01 2月, 2012 1 次提交
  8. 17 11月, 2011 1 次提交
  9. 19 10月, 2011 1 次提交
  10. 07 10月, 2011 1 次提交
  11. 31 8月, 2011 1 次提交
  12. 18 8月, 2011 1 次提交
  13. 12 8月, 2011 1 次提交
  14. 22 7月, 2011 1 次提交
  15. 20 5月, 2011 1 次提交
  16. 22 4月, 2011 1 次提交
  17. 17 4月, 2011 1 次提交
  18. 08 4月, 2011 1 次提交
  19. 24 2月, 2011 1 次提交
  20. 12 2月, 2011 1 次提交
  21. 03 2月, 2011 1 次提交
  22. 23 12月, 2010 1 次提交
  23. 17 12月, 2010 1 次提交
  24. 25 10月, 2010 1 次提交
  25. 21 10月, 2010 1 次提交
  26. 03 9月, 2010 1 次提交
  27. 22 8月, 2010 1 次提交
  28. 01 6月, 2010 1 次提交
    • J
      atl1c: Add AR8151 v2 support and change L0s/L1 routine · 8f574b35
      Jie Yang 提交于
      Add AR8151 v2.0 Gigabit 1000 support
      Change jumbo frame size to 6K
      Update L0s/L1 rountine
              when link speed is 100M or 1G, set L1 link timer to 4 for l1d_2 and l2c_b2
              set L1 link timer to 7 for l2c_b, set L1 link timer to 0xF for others.
      Update atl1c_suspend routine
      	just refactory the function, add atl1c_phy_power_saving routine,
      	when Wake On Lan enable, this func will be called to save power,
      	it will reautoneg PHY to 10/100M speed depend on the link
      	partners link capability.
      Update atl1c_configure_des_ring
              do not use l2c_b default SRAM configuration.
      Signed-off-by: NJie Yang <Jie.Yang@atheros.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      8f574b35
  29. 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
  30. 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
  31. 31 3月, 2010 1 次提交
  32. 23 2月, 2010 1 次提交
  33. 17 2月, 2010 1 次提交
    • L
      atl1c: Add support for Atheros AR8152 and AR8152 · 496c185c
      Luis R. Rodriguez 提交于
      AR8151 is a Gigabit Ethernet device. AR8152 devices are
      Fast Ethernet devices, there are two revisions, a 1.0
      and a 2.0 revision.
      
      This has been tested against these devices:
      
      Driver	Model-name	vendor:device	Type
      atl1c 	AR8131		1969:1063	Gigabit Ethernet
      atl1c	AR8132		1969:1062	Fast Ethernet
      atl1c	AR8151(v1.0)	1969:1073	Gigabit Ethernet
      atl1c	AR8152(v1.1)	1969:2060	Fast Ethernet
      
      This device has no hardware available yet so it goes untested,
      but it should work:
      
      atl1c	AR8152(v2.0)	1969:2062	Fast Ethernet
      Signed-off-by: NLuis R. Rodriguez <lrodriguez@atheros.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      496c185c
  34. 08 1月, 2010 1 次提交
  35. 07 1月, 2010 1 次提交
  36. 09 12月, 2009 2 次提交
  37. 04 12月, 2009 1 次提交
  38. 19 11月, 2009 1 次提交