1. 20 8月, 2006 1 次提交
    • A
      [PATCH] drivers/net/e1000/: possible cleanups · e4c780b1
      Adrian Bunk 提交于
      - make needlessly global functions static
      - #if 0 the following unused global functions:
        - e1000_hw.c: e1000_mc_addr_list_update()
        - e1000_hw.c: e1000_read_reg_io()
        - e1000_hw.c: e1000_enable_pciex_master()
        - e1000_hw.c: e1000_ife_disable_dynamic_power_down()
        - e1000_hw.c: e1000_ife_enable_dynamic_power_down()
        - e1000_hw.c: e1000_write_ich8_word()
        - e1000_hw.c: e1000_duplex_reversal()
        - e1000_main.c: e1000_io_read()
      Signed-off-by: NAdrian Bunk <bunk@stusta.de>
      Cc: John Ronciak <john.ronciak@intel.com>
      Cc: Jesse Brandeburg <jesse.brandeburg@intel.com>
      Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
      Cc: Auke Kok <auke-jan.h.kok@intel.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      e4c780b1
  2. 03 8月, 2006 1 次提交
  3. 15 7月, 2006 4 次提交
  4. 13 7月, 2006 1 次提交
  5. 09 7月, 2006 1 次提交
  6. 03 7月, 2006 1 次提交
  7. 28 6月, 2006 13 次提交
  8. 23 6月, 2006 1 次提交
    • H
      [NET]: Merge TSO/UFO fields in sk_buff · 7967168c
      Herbert Xu 提交于
      Having separate fields in sk_buff for TSO/UFO (tso_size/ufo_size) is not
      going to scale if we add any more segmentation methods (e.g., DCCP).  So
      let's merge them.
      
      They were used to tell the protocol of a packet.  This function has been
      subsumed by the new gso_type field.  This is essentially a set of netdev
      feature bits (shifted by 16 bits) that are required to process a specific
      skb.  As such it's easy to tell whether a given device can process a GSO
      skb: you just have to and the gso_type field and the netdev's features
      field.
      
      I've made gso_type a conjunction.  The idea is that you have a base type
      (e.g., SKB_GSO_TCPV4) that can be modified further to support new features.
      For example, if we add a hardware TSO type that supports ECN, they would
      declare NETIF_F_TSO | NETIF_F_TSO_ECN.  All TSO packets with CWR set would
      have a gso_type of SKB_GSO_TCPV4 | SKB_GSO_TCPV4_ECN while all other TSO
      packets would be SKB_GSO_TCPV4.  This means that only the CWR packets need
      to be emulated in software.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      7967168c
  9. 11 6月, 2006 1 次提交
  10. 10 6月, 2006 1 次提交
  11. 09 6月, 2006 2 次提交
  12. 27 5月, 2006 2 次提交
  13. 24 5月, 2006 4 次提交
  14. 26 4月, 2006 1 次提交
  15. 19 4月, 2006 2 次提交
  16. 15 4月, 2006 4 次提交