1. 18 5月, 2009 3 次提交
  2. 07 5月, 2009 1 次提交
  3. 28 4月, 2009 2 次提交
  4. 11 4月, 2009 1 次提交
  5. 02 4月, 2009 3 次提交
  6. 20 3月, 2009 1 次提交
  7. 15 3月, 2009 1 次提交
  8. 01 3月, 2009 2 次提交
  9. 07 2月, 2009 1 次提交
  10. 06 2月, 2009 1 次提交
  11. 01 2月, 2009 2 次提交
  12. 27 1月, 2009 1 次提交
  13. 22 1月, 2009 1 次提交
  14. 26 12月, 2008 1 次提交
  15. 22 12月, 2008 1 次提交
  16. 21 11月, 2008 2 次提交
  17. 13 11月, 2008 1 次提交
    • W
      netdevice: safe convert to netdev_priv() #part-1 · 454d7c9b
      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>
      454d7c9b
  18. 02 11月, 2008 1 次提交
  19. 25 9月, 2008 9 次提交
  20. 03 9月, 2008 1 次提交
  21. 18 7月, 2008 1 次提交
    • D
      net: Use queue aware tests throughout. · fd2ea0a7
      David S. Miller 提交于
      This effectively "flips the switch" by making the core networking
      and multiqueue-aware drivers use the new TX multiqueue structures.
      
      Non-multiqueue drivers need no changes.  The interfaces they use such
      as netif_stop_queue() degenerate into an operation on TX queue zero.
      So everything "just works" for them.
      
      Code that really wants to do "X" to all TX queues now invokes a
      routine that does so, such as netif_tx_wake_all_queues(),
      netif_tx_stop_all_queues(), etc.
      
      pktgen and netpoll required a little bit more surgery than the others.
      
      In particular the pktgen changes, whilst functional, could be largely
      improved.  The initial check in pktgen_xmit() will sometimes check the
      wrong queue, which is mostly harmless.  The thing to do is probably to
      invoke fill_packet() earlier.
      
      The bulk of the netpoll changes is to make the code operate solely on
      the TX queue indicated by by the SKB queue mapping.
      
      Setting of the SKB queue mapping is entirely confined inside of
      net/core/dev.c:dev_pick_tx().  If we end up needing any kind of
      special semantics (drops, for example) it will be implemented here.
      
      Finally, we now have a "real_num_tx_queues" which is where the driver
      indicates how many TX queues are actually active.
      
      With IGB changes from Jeff Kirsher.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      fd2ea0a7
  22. 09 7月, 2008 1 次提交
  23. 25 6月, 2008 1 次提交
  24. 17 3月, 2008 1 次提交