1. 09 12月, 2009 1 次提交
  2. 29 10月, 2009 1 次提交
  3. 09 10月, 2009 2 次提交
  4. 05 10月, 2009 2 次提交
  5. 01 10月, 2009 1 次提交
  6. 15 9月, 2009 2 次提交
  7. 02 9月, 2009 1 次提交
  8. 04 8月, 2009 1 次提交
  9. 18 7月, 2009 2 次提交
  10. 07 6月, 2009 4 次提交
  11. 30 5月, 2009 1 次提交
    • J
      net: convert unicast addr list · ccffad25
      Jiri Pirko 提交于
      This patch converts unicast address list to standard list_head using
      previously introduced struct netdev_hw_addr. It also relaxes the
      locking. Original spinlock (still used for multicast addresses) is not
      needed and is no longer used for a protection of this list. All
      reading and writing takes place under rtnl (with no changes).
      
      I also removed a possibility to specify the length of the address
      while adding or deleting unicast address. It's always dev->addr_len.
      
      The convertion touched especially e1000 and ixgbe codes when the
      change is not so trivial.
      Signed-off-by: NJiri Pirko <jpirko@redhat.com>
      
       drivers/net/bnx2.c               |   13 +--
       drivers/net/e1000/e1000_main.c   |   24 +++--
       drivers/net/ixgbe/ixgbe_common.c |   14 ++--
       drivers/net/ixgbe/ixgbe_common.h |    4 +-
       drivers/net/ixgbe/ixgbe_main.c   |    6 +-
       drivers/net/ixgbe/ixgbe_type.h   |    4 +-
       drivers/net/macvlan.c            |   11 +-
       drivers/net/mv643xx_eth.c        |   11 +-
       drivers/net/niu.c                |    7 +-
       drivers/net/virtio_net.c         |    7 +-
       drivers/s390/net/qeth_l2_main.c  |    6 +-
       drivers/scsi/fcoe/fcoe.c         |   16 ++--
       include/linux/netdevice.h        |   18 ++--
       net/8021q/vlan.c                 |    4 +-
       net/8021q/vlan_dev.c             |   10 +-
       net/core/dev.c                   |  195 +++++++++++++++++++++++++++-----------
       net/dsa/slave.c                  |   10 +-
       net/packet/af_packet.c           |    4 +-
       18 files changed, 227 insertions(+), 137 deletions(-)
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      ccffad25
  12. 27 5月, 2009 1 次提交
  13. 19 5月, 2009 1 次提交
  14. 18 5月, 2009 4 次提交
  15. 08 5月, 2009 1 次提交
  16. 30 4月, 2009 1 次提交
  17. 28 4月, 2009 1 次提交
    • A
      ixgbe: enable HW RSC for 82599 · f8212f97
      Alexander Duyck 提交于
      This patch enables hardware receive side coalescing for 82599 hardware.
      82599 can merge multiple frames from the same TCP/IP flow into a single
      structure that can span one ore more descriptors.  The accumulated data is
      arranged similar to how jumbo frames are arranged with the exception that
      other packets can be interlaced inbetween.  To overcome this issue a next
      pointer is included in the written back descriptor which indicates the next
      descriptor in the writeback sequence.
      
      This feature sets the NETIF_F_LRO flag and clearing it via the ethtool set
      flags operation will also disable hardware RSC.
      Signed-off-by: NAlexander Duyck <alexander.h.duyck@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f8212f97
  18. 27 4月, 2009 1 次提交
  19. 11 4月, 2009 6 次提交
  20. 02 4月, 2009 1 次提交
  21. 26 3月, 2009 1 次提交
  22. 15 3月, 2009 1 次提交
  23. 01 3月, 2009 1 次提交
  24. 07 2月, 2009 1 次提交
  25. 06 2月, 2009 1 次提交