1. 18 7月, 2008 1 次提交
    • D
      netdev: Allocate multiple queues for TX. · e8a0464c
      David S. Miller 提交于
      alloc_netdev_mq() now allocates an array of netdev_queue
      structures for TX, based upon the queue_count argument.
      
      Furthermore, all accesses to the TX queues are now vectored
      through the netdev_get_tx_queue() and netdev_for_each_tx_queue()
      interfaces.  This makes it easy to grep the tree for all
      things that want to get to a TX queue of a net device.
      
      Problem spots which are not really multiqueue aware yet, and
      only work with one queue, can easily be spotted by grepping
      for all netdev_get_tx_queue() calls that pass in a zero index.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      e8a0464c
  2. 09 7月, 2008 1 次提交
  3. 26 3月, 2008 1 次提交
  4. 11 10月, 2007 6 次提交
  5. 01 8月, 2007 1 次提交
  6. 26 4月, 2007 1 次提交
  7. 13 2月, 2007 1 次提交
  8. 09 12月, 2006 1 次提交
  9. 11 7月, 2006 1 次提交
  10. 01 7月, 2006 1 次提交
  11. 19 10月, 2005 1 次提交
    • R
      [PATCH] rcu in bpqether driver. · bc0a7438
      Ralf Baechle 提交于
      From Suzanne Wood <suzannew@cs.pdx.edu>:
      
      Clarify RCU implementation in bpqether.c.
      
      Because bpq_new_device() calls list_add_rcu() and bpq_free_device() calls
      list_del_rcu(), substitute list_for_each_entry_rcu() for
      list_for_each_entry() in bpq_get_ax25_dev() and in bpq_seq_start().
      
      Add rcu dereference protection in bpq_seq_next().
      
      The rcu_read_lock()/unlock() in bpq_device_event() are removed because
      netdev event handlers are called with RTNL locking in place.
      
      FYI: bpq_free_device() calls list_del_rcu() which, per list.h, requires
      synchronize_rcu() which can block or call_rcu() or call_rcu_bh() which
      cannot block.  Herbert Xu notes that synchronization is done here by
      unregister_netdevice().  This calls synchronize_net() which in turn uses
      synchronize_rcu().
      Signed-off-by: NRalf Baechle DL5RB <ralf@linux-mips.org>
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      bc0a7438
  12. 13 9月, 2005 1 次提交
  13. 30 8月, 2005 1 次提交
    • D
      [NET]: Kill skb->real_dev · f2ccd8fa
      David S. Miller 提交于
      Bonding just wants the device before the skb_bond()
      decapsulation occurs, so simply pass that original
      device into packet_type->func() as an argument.
      
      It remains to be seen whether we can use this same
      exact thing to get rid of skb->input_dev as well.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f2ccd8fa
  14. 25 4月, 2005 1 次提交
  15. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4