1. 04 11月, 2008 1 次提交
  2. 29 10月, 2008 1 次提交
  3. 21 9月, 2008 1 次提交
  4. 12 9月, 2008 1 次提交
  5. 23 7月, 2008 1 次提交
  6. 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
  7. 15 7月, 2008 5 次提交
  8. 09 7月, 2008 2 次提交
  9. 08 7月, 2008 5 次提交
  10. 06 7月, 2008 2 次提交
  11. 23 5月, 2008 1 次提交
  12. 21 5月, 2008 1 次提交
  13. 16 4月, 2008 1 次提交
  14. 05 4月, 2008 1 次提交
  15. 26 3月, 2008 2 次提交
  16. 18 3月, 2008 1 次提交
  17. 06 3月, 2008 1 次提交
  18. 24 2月, 2008 1 次提交
  19. 18 2月, 2008 1 次提交
  20. 01 2月, 2008 1 次提交
    • C
      [VLAN]: set_rx_mode support for unicast address list · e83a2ea8
      Chris Leech 提交于
      Reuse the existing logic for multicast list synchronization for the
      unicast address list. The core of dev_mc_sync/unsync are split out as
      __dev_addr_sync/unsync and moved from dev_mcast.c to dev.c.  These are
      then used to implement dev_unicast_sync/unsync as well.
      
      I'm working on cleaning up Intel's FCoE stack, which generates new MAC
      addresses from the fibre channel device id assigned by the fabric as
      per the current draft specification in T11.  When using such a
      protocol in a VLAN environment it would be nice to not always be
      forced into promiscuous mode, assuming the underlying Ethernet driver
      supports multiple unicast addresses as well.
      Signed-off-by: NChris Leech <christopher.leech@intel.com>
      Signed-off-by: NPatrick McHardy <kaber@trash.net>
      e83a2ea8
  21. 29 1月, 2008 9 次提交