Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Jun 2011 18:46:40 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/sys/netinet tcp_input.c tcp_output.c tcp_timer.c tcp_var.h
Message-ID:  <201106101846.p5AIksDJ054899@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
jhb         2011-06-10 18:46:40 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_8)
    sys/netinet          tcp_input.c tcp_output.c tcp_timer.c 
                         tcp_var.h 
  Log:
  SVN rev 222934 on 2011-06-10 18:46:40Z by jhb
  
  MFC 221209:
  TCP reuses t_rxtshift to determine the backoff timer used for both the
  persist state and the retransmit timer.  However, the code that implements
  "bad retransmit recovery" only checks t_rxtshift to see if an ACK has been
  received in during the first retransmit timeout window.  As a result, if
  ticks has wrapped over to a negative value and a socket is in the persist
  state, it can incorrectly treat an ACK from the remote peer as a
  "bad retransmit recovery" and restore saved values such as snd_ssthresh and
  snd_cwnd.  However, if the socket has never had a retransmit timeout, then
  these saved values will be zero, so snd_ssthresh and snd_cwnd will be set
  to 0.
  
  If the socket is in fast recovery (this can be caused by excessive
  duplicate ACKs such as those fixed by 220794), then each ACK that arrives
  triggers either NewReno or SACK partial ACK handling which clamps snd_cwnd
  to be no larger than snd_ssthresh.  In effect, the socket's send window
  is permamently stuck at 0 even though the remote peer is advertising a
  much larger window and pending data is only sent via TCP window probes
  (so one byte every few seconds).
  
  Fix this by adding a new TCP pcb flag (TF_PREVVALID) that indicates that
  the various snd_*_prev fields in the pcb are valid and only perform
  "bad retransmit recovery" if this flag is set in the pcb.  The flag is set
  on the first retransmit timeout that occurs and is cleared on subsequent
  retransmit timeouts or when entering the persist state.
  
  Revision    Changes    Path
  1.411.2.16  +4 -1      src/sys/netinet/tcp_input.c
  1.164.2.11  +1 -0      src/sys/netinet/tcp_output.c
  1.112.2.5   +3 -1      src/sys/netinet/tcp_timer.c
  1.182.2.15  +1 -0      src/sys/netinet/tcp_var.h



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201106101846.p5AIksDJ054899>