1. 26 Apr, 2007 3 commits
  2. 20 Mar, 2007 1 commit
  3. 26 Feb, 2007 1 commit
  4. 11 Feb, 2007 1 commit
  5. 24 Jan, 2007 1 commit
  6. 23 Jan, 2007 2 commits
  7. 22 Dec, 2006 1 commit
  8. 03 Dec, 2006 15 commits
  9. 22 Sep, 2006 2 commits
  10. 22 Aug, 2006 1 commit
  11. 21 Jul, 2006 2 commits
  12. 18 Jun, 2006 1 commit
    • Neil Horman's avatar
      [SCTP]: Fix persistent slowdown in sctp when a gap ack consumes rx buffer. · d5b9f4c0
      Neil Horman authored
      
      In the event that our entire receive buffer is full with a series of
      chunks that represent a single gap-ack, and then we accept a chunk
      (or chunks) that fill in the gap between the ctsn and the first gap,
      we renege chunks from the end of the buffer, which effectively does
      nothing but move our gap to the end of our received tsn stream. This
      does little but move our missing tsns down stream a little, and, if the
      sender is sending sufficiently large retransmit frames, the result is a
      perpetual slowdown which can never be recovered from, since the only
      chunk that can be accepted to allow progress in the tsn stream necessitates
      that a new gap be created to make room for it. This leads to a constant
      need for retransmits, and subsequent receiver stalls. The fix I've come up
      with is to deliver the frame without reneging if we have a full receive
      buffer and the receiving sockets sk_receive_queue is empty(indicating that
      the receive buffer is being blocked by a missing tsn).
      Signed-off-by: default avatarNeil Horman <nhorman@tuxdriver.com>
      Signed-off-by: default avatarSridhar Samudrala <sri@us.ibm.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      d5b9f4c0
  13. 19 May, 2006 2 commits
  14. 05 May, 2006 2 commits
  15. 30 Jan, 2006 2 commits
  16. 17 Jan, 2006 1 commit
  17. 13 Jan, 2006 1 commit
    • Joe Perches's avatar
      [NET]: Use NIP6_FMT in kernel.h · 46b86a2d
      Joe Perches authored
      
      There are errors and inconsistency in the display of NIP6 strings.
      	ie: net/ipv6/ip6_flowlabel.c
      
      There are errors and inconsistency in the display of NIPQUAD strings too.
      	ie: net/netfilter/nf_conntrack_ftp.c
      
      This patch:
      	adds NIP6_FMT to kernel.h
      	changes all code to use NIP6_FMT
      	fixes net/ipv6/ip6_flowlabel.c
      	adds NIPQUAD_FMT to kernel.h
      	fixes net/netfilter/nf_conntrack_ftp.c
      	changes a few uses of "%u.%u.%u.%u" to NIPQUAD_FMT for symmetry to NIP6_FMT
      Signed-off-by: default avatarJoe Perches <joe@perches.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      46b86a2d
  18. 03 Jan, 2006 1 commit