1. 04 8月, 2006 2 次提交
  2. 29 7月, 2006 1 次提交
  3. 13 7月, 2006 1 次提交
    • B
      [PATCH] myri10ge return value fix · 4c2248cc
      Brice Goglin 提交于
      Andrew Morton wrote:
      >   All these functions return error codes, and we're not checking them.  We
      >   should.  So there's a patch which marks all these things as __must_check,
      >   which causes around 1,500 new warnings.
      >
      
      The following patch fixes such a warning in myri10ge.
      
      Check pci_enable_device() return value in myri10ge_resume().
      Signed-off-by: NBrice Goglin <brice@myri.com>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      4c2248cc
  4. 09 7月, 2006 1 次提交
  5. 06 7月, 2006 4 次提交
  6. 03 7月, 2006 1 次提交
  7. 23 6月, 2006 5 次提交
    • 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
    • H
      [NET]: Avoid allocating skb in skb_pad · 5b057c6b
      Herbert Xu 提交于
      First of all it is unnecessary to allocate a new skb in skb_pad since
      the existing one is not shared.  More importantly, our hard_start_xmit
      interface does not allow a new skb to be allocated since that breaks
      requeueing.
      
      This patch uses pskb_expand_head to expand the existing skb and linearize
      it if needed.  Actually, someone should sift through every instance of
      skb_pad on a non-linear skb as they do not fit the reasons why this was
      originally created.
      
      Incidentally, this fixes a minor bug when the skb is cloned (tcpdump,
      TCP, etc.).  As it is skb_pad will simply write over a cloned skb.  Because
      of the position of the write it is unlikely to cause problems but still
      it's best if we don't do it.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      5b057c6b
    • B
      [PATCH] myri10ge - drop workaround pci_save_state() disabling MSI · bfcbb008
      Brice Goglin 提交于
      We don't need to restore the state right after saving it for later recovery
      since commit 99dc804d (PCI: disable msi mode
      in pci_disable_device) now prevents pci_save_state() from disabling MSI.
      Signed-off-by: NBrice Goglin <brice@myri.com>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      bfcbb008
    • B
      [PATCH] myri10ge - drop workaround for the missing AER ext cap on nVidia CK804 · 69eb887b
      Brice Goglin 提交于
      We don't need to hardcode the AER capability of the nVidia CK804 chipset
      anymore since commit cf34a8e0 (PCI: nVidia
      quirk to make AER PCI-E extended capability visible) now makes sure that
      this cap will be available to pci_find_ext_capability().
      Signed-off-by: NBrice Goglin <brice@myri.com>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      69eb887b
    • A
      [PATCH] myri10ge build fix · bec0e859
      Andrew Morton 提交于
      Someone changed skb_linearize().
      
      Cc: Brice Goglin <bgoglin@myri.com>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Jeff Garzik <jeff@garzik.org>
      Cc: Herbert Xu <herbert@gondor.apana.org.au>
      Cc: Greg KH <greg@kroah.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      bec0e859
  8. 09 6月, 2006 1 次提交
    • B
      [PATCH] myri10ge update · b10c0668
      Brice Goglin 提交于
      The following patch updates the myri10ge to 1.0.0, with the following changes:
      * Switch to dma_alloc_coherent API.
      * Avoid PCI burst when writing the firmware on chipset with unaligned completions.
      * Use ethtool_op_set_tx_hw_csum instead of ethtool_op_set_tx_csum.
      * Include linux/dma-mapping.h to bring DMA_32/64BIT_MASK on all architectures
        (was missing at least on alpha).
      * Some typo and warning fixes.
      Signed-off-by: NBrice Goglin <brice@myri.com>
      Signed-off-by: NAndrew J. Gallatin <gallatin@myri.com>
      
       drivers/net/myri10ge/myri10ge.c |   57 +++++++++++++++++++-----------
       1 file changed, 37 insertions(+), 20 deletions(-)
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      b10c0668
  9. 24 5月, 2006 1 次提交