Skip to content
Snippets Groups Projects
  1. Nov 10, 2009
  2. Oct 29, 2009
  3. Sep 01, 2009
  4. Aug 12, 2009
  5. Jul 26, 2009
  6. Jul 05, 2009
  7. Jun 13, 2009
  8. Jun 12, 2009
  9. Apr 07, 2009
  10. Mar 30, 2009
  11. Mar 27, 2009
  12. Mar 04, 2009
  13. Feb 17, 2009
  14. Jan 21, 2009
  15. Jan 06, 2009
  16. Dec 27, 2008
  17. Dec 26, 2008
    • Hannes Eder's avatar
      drivers/net/tokenring: fix sparse warnings: make symbols static · 27cd6ae5
      Hannes Eder authored
      
      Fix this sparse warnings:
      
        drivers/net/tokenring/ibmtr.c:1840:6: warning: symbol 'tok_rerun' was not declared. Should it be static?
        drivers/net/tokenring/madgemc.c:469:16: warning: symbol 'madgemc_setnselout_pins' was not declared. Should it be static?
        drivers/net/tokenring/proteon.c:286:16: warning: symbol 'proteon_setnselout_pins' was not declared. Should it be static?
        drivers/net/tokenring/skisa.c:303:16: warning: symbol 'sk_isa_setnselout_pins' was not declared. Should it be static?
      
      Signed-off-by: default avatarHannes Eder <hannes@hanneseder.net>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      27cd6ae5
  18. Dec 08, 2008
    • Wang Chen's avatar
      netdevice: Kill netdev->priv · b74ca3a8
      Wang Chen authored
      
      This is the last shoot of this series.
      After I removing all directly reference of netdev->priv, I am killing
      "priv" of "struct net_device" and fixing relative comments/docs.
      
      Anyone will not be allowed to reference netdev->priv directly.
      If you want to reference the memory of private data, use netdev_priv()
      instead.
      If the private data is not allocted when alloc_netdev(), use
      netdev->ml_priv to point that memory after you creating that private
      data.
      
      Signed-off-by: default avatarWang Chen <wangchen@cn.fujitsu.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      b74ca3a8
  19. Nov 24, 2008
  20. Nov 13, 2008
    • Wang Chen's avatar
      netdevice: safe convert to netdev_priv() #part-3 · 8f15ea42
      Wang Chen authored
      
      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: default avatarWang Chen <wangchen@cn.fujitsu.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      8f15ea42
  21. Nov 03, 2008
  22. Oct 27, 2008
  23. Oct 13, 2008
  24. Sep 03, 2008
  25. Aug 23, 2008
  26. Aug 01, 2008
  27. Jul 10, 2008
Loading