1. 19 7月, 2012 1 次提交
  2. 23 2月, 2012 1 次提交
  3. 01 2月, 2012 1 次提交
  4. 28 11月, 2011 1 次提交
  5. 17 11月, 2011 2 次提交
  6. 14 11月, 2011 1 次提交
  7. 19 10月, 2011 1 次提交
  8. 16 9月, 2011 1 次提交
  9. 18 8月, 2011 1 次提交
  10. 12 8月, 2011 1 次提交
  11. 22 7月, 2011 2 次提交
  12. 01 7月, 2011 2 次提交
  13. 30 4月, 2011 1 次提交
  14. 02 4月, 2011 1 次提交
  15. 28 3月, 2011 1 次提交
    • R
      Net / jme: Do not use legacy PCI power management · f4e5bd4f
      Rafael J. Wysocki 提交于
      The jme driver uses the legacy PCI power management, so it has to do
      some PCI-specific things in its ->suspend() and ->resume() callbacks,
      which isn't necessary and should better be done by the PCI
      sybsystem-level power management code.  It also doesn't use device
      wakeup flags correctly.
      
      Convert jme to the new PCI power management framework and make it
      let the PCI subsystem take care of all the PCI-specific aspects of
      device handling during system power transitions.
      Signed-off-by: NRafael J. Wysocki <rjw@sisk.pl>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f4e5bd4f
  16. 01 3月, 2011 1 次提交
  17. 14 2月, 2011 7 次提交
  18. 21 12月, 2010 1 次提交
  19. 07 12月, 2010 1 次提交
  20. 01 11月, 2010 1 次提交
  21. 25 10月, 2010 1 次提交
    • G
      jme: Support WoL after shutdown · 1c557819
      Guo-Fu Tseng 提交于
      Adding shutdown function that setup wake if wol is enabled.
      Add jme_phy_on in jme_set_100m_half in case it is shutting down
      or suspending when interface is down(phy_off by default).
      
      v2 updates:
      Removed CONFIG_PM ifdef for jme_set_100m_half and jme_wait_link.
      It would be nice if it can be applied to net-2.6 along with other patches
      sent few days ago. If it is not appropriate, please ignore the net-2.6
      request, and apply it to net-next-2.6 as previous patch. :)
      Reported-and-helped-by: NСtac <Taoga@yandex.ru>
      Signed-off-by: NGuo-Fu Tseng <cooldavid@cooldavid.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      1c557819
  22. 21 10月, 2010 5 次提交
  23. 07 9月, 2010 1 次提交
  24. 03 9月, 2010 1 次提交
  25. 18 5月, 2010 1 次提交
  26. 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
  27. 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