1. 13 2月, 2010 1 次提交
  2. 20 1月, 2010 1 次提交
  3. 08 1月, 2010 1 次提交
  4. 04 12月, 2009 1 次提交
  5. 14 11月, 2009 1 次提交
  6. 01 9月, 2009 1 次提交
  7. 31 8月, 2009 10 次提交
  8. 02 8月, 2009 1 次提交
  9. 06 7月, 2009 1 次提交
  10. 08 6月, 2009 1 次提交
  11. 29 5月, 2009 1 次提交
  12. 30 4月, 2009 1 次提交
  13. 07 4月, 2009 2 次提交
  14. 18 2月, 2009 1 次提交
  15. 04 2月, 2009 1 次提交
  16. 28 1月, 2009 1 次提交
  17. 22 1月, 2009 1 次提交
  18. 27 12月, 2008 1 次提交
  19. 26 12月, 2008 1 次提交
    • H
      drivers/net: fix sparse warnings: make symbols static · dac499f9
      Hannes Eder 提交于
      Fix this sparse warnings:
      
        drivers/net/3c523.c:350:6: warning: symbol 'alloc586' was not declared. Should it be static?
        drivers/net/cs89x0.c:1029:14: warning: symbol 'reset_chip' was not declared. Should it be static?
        drivers/net/eepro.c:1399:1: warning: symbol 'read_eeprom' was not declared. Should it be static?
        drivers/net/plip.c:1020:5: warning: symbol 'plip_hard_header_cache' was not declared. Should it be static?
        drivers/net/s2io.c:5116:6: warning: symbol 'do_s2io_store_unicast_mc' was not declared. Should it be static?
        drivers/net/smc9194.c:767:12: warning: symbol 'smc_findirq' was not declared. Should it be static?
      Signed-off-by: NHannes Eder <hannes@hanneseder.net>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      dac499f9
  20. 23 12月, 2008 1 次提交
  21. 26 11月, 2008 1 次提交
  22. 22 11月, 2008 1 次提交
  23. 13 11月, 2008 1 次提交
    • W
      netdevice: safe convert to netdev_priv() #part-2 · 4cf1653a
      Wang Chen 提交于
      We have some reasons to kill netdev->priv:
      1. netdev->priv is equal to netdev_priv().
      2. netdev_priv() wraps the calculation of netdev->priv's offset, obviously
         netdev_priv() is more flexible than netdev->priv.
      But we cann't kill netdev->priv, because so many drivers reference to it
      directly.
      
      This patch is a safe convert for netdev->priv to netdev_priv(netdev).
      Since all of the netdev->priv is only for read.
      But it is too big to be sent in one mail.
      I split it to 4 parts and make every part smaller than 100,000 bytes,
      which is max size allowed by vger.
      Signed-off-by: NWang Chen <wangchen@cn.fujitsu.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      4cf1653a
  24. 04 11月, 2008 1 次提交
  25. 31 10月, 2008 1 次提交
  26. 28 10月, 2008 1 次提交
  27. 25 9月, 2008 2 次提交
  28. 03 9月, 2008 1 次提交
  29. 30 7月, 2008 1 次提交
    • B
      S2io: fix statistics flush after a MTU change · dc56e634
      Breno Leitao 提交于
      On s2io driver, when you change the interface MTU, it invokes a card
      reset, which flush some statistics.  This patch solves this problem, and
      also set the net_device->stats as the default statistics structure,
      instead of s2io_nic->stats.
      
      To do that, s2io_nic->stats turned into a staging area, where is saved
      statistics of the last hardware statistics query. So, the difference
      between the current hardware statistics and s2io_nic->stats, is the
      value that should be summed up, in order to get the correct statistics
      value, even after a reset.
      Signed-off-by: NBreno Leitao <leitao@linux.vnet.ibm.com>
      Signed-off-by: NJay Vosburgh <fubar@us.ibm.com>
      Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
      dc56e634