svn commit: r207197 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Apr 25 19:00:37 UTC 2010


Author: tuexen
Date: Sun Apr 25 19:00:37 2010
New Revision: 207197
URL: http://svn.freebsd.org/changeset/base/207197

Log:
  Sending a FWDTSN chunk should not affect the retran count.
  
  MFC after: 3 days.

Modified:
  head/sys/netinet/sctp_output.c

Modified: head/sys/netinet/sctp_output.c
==============================================================================
--- head/sys/netinet/sctp_output.c	Sun Apr 25 17:38:53 2010	(r207196)
+++ head/sys/netinet/sctp_output.c	Sun Apr 25 19:00:37 2010	(r207197)
@@ -8973,7 +8973,7 @@ sctp_chunk_retransmission(struct sctp_in
 		/* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */
 		*cnt_out += 1;
 		chk->sent = SCTP_DATAGRAM_SENT;
-		sctp_ucount_decr(asoc->sent_queue_retran_cnt);
+		/* sctp_ucount_decr(asoc->sent_queue_retran_cnt); */
 		if (fwd_tsn == 0) {
 			return (0);
 		} else {


More information about the svn-src-head mailing list