svn commit: r208952 - head/sys/netinet

Randall Stewart rrs at FreeBSD.org
Wed Jun 9 16:39:18 UTC 2010


Author: rrs
Date: Wed Jun  9 16:39:18 2010
New Revision: 208952
URL: http://svn.freebsd.org/changeset/base/208952

Log:
  BUG:Turns out we need to use both bit maps
  to calculate the cum-ack (we were not doing
  it for the NR-Sack case). With this fix
  NR-sack should now work correctly.
  MFC after:	1 week

Modified:
  head/sys/netinet/sctp_indata.c

Modified: head/sys/netinet/sctp_indata.c
==============================================================================
--- head/sys/netinet/sctp_indata.c	Wed Jun  9 15:29:12 2010	(r208951)
+++ head/sys/netinet/sctp_indata.c	Wed Jun  9 16:39:18 2010	(r208952)
@@ -2267,7 +2267,6 @@ sctp_slide_mapping_arrays(struct sctp_tc
 	uint8_t val;
 	int slide_from, slide_end, lgap, distance;
 	uint32_t old_cumack, old_base, old_highest, highest_tsn;
-	int type;
 
 	asoc = &stcb->asoc;
 	at = 0;
@@ -2279,18 +2278,9 @@ sctp_slide_mapping_arrays(struct sctp_tc
 	 * We could probably improve this a small bit by calculating the
 	 * offset of the current cum-ack as the starting point.
 	 */
-	if (SCTP_BASE_SYSCTL(sctp_nr_sack_on_off) &&
-	    stcb->asoc.peer_supports_nr_sack) {
-		type = SCTP_NR_SELECTIVE_ACK;
-	} else {
-		type = SCTP_SELECTIVE_ACK;
-	}
 	at = 0;
 	for (slide_from = 0; slide_from < stcb->asoc.mapping_array_size; slide_from++) {
-		if (type == SCTP_NR_SELECTIVE_ACK)
-			val = asoc->nr_mapping_array[slide_from];
-		else
-			val = asoc->nr_mapping_array[slide_from] | asoc->mapping_array[slide_from];
+		val = asoc->nr_mapping_array[slide_from] | asoc->mapping_array[slide_from];
 		if (val == 0xff) {
 			at += 8;
 		} else {


More information about the svn-src-all mailing list