svn commit: r247928 - stable/8/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Thu Mar 7 20:08:35 UTC 2013


Author: tuexen
Date: Thu Mar  7 20:08:34 2013
New Revision: 247928
URL: http://svnweb.freebsd.org/changeset/base/247928

Log:
  MFC r235557:
  
  Use a default for max_burst of 4 and l2var of 2.
  This was discussed with rrs at .

Modified:
  stable/8/sys/netinet/sctp_constants.h
  stable/8/sys/netinet/sctp_sysctl.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/netinet/   (props changed)

Modified: stable/8/sys/netinet/sctp_constants.h
==============================================================================
--- stable/8/sys/netinet/sctp_constants.h	Thu Mar  7 20:06:27 2013	(r247927)
+++ stable/8/sys/netinet/sctp_constants.h	Thu Mar  7 20:08:34 2013	(r247928)
@@ -348,7 +348,7 @@ __FBSDID("$FreeBSD$");
 #define SCTP_NO_FR_UNLESS_SEGMENT_SMALLER 1
 
 /* default max I can burst out after a fast retransmit, 0 disables it */
-#define SCTP_DEF_MAX_BURST 0
+#define SCTP_DEF_MAX_BURST 4
 #define SCTP_DEF_HBMAX_BURST 4
 #define SCTP_DEF_FRMAX_BURST 4
 

Modified: stable/8/sys/netinet/sctp_sysctl.h
==============================================================================
--- stable/8/sys/netinet/sctp_sysctl.h	Thu Mar  7 20:06:27 2013	(r247927)
+++ stable/8/sys/netinet/sctp_sysctl.h	Thu Mar  7 20:08:34 2013	(r247928)
@@ -377,7 +377,7 @@ struct sctp_sysctl {
 #define SCTPCTL_ABC_L_VAR_DESC		"SCTP ABC max increase per SACK (L)"
 #define SCTPCTL_ABC_L_VAR_MIN		0
 #define SCTPCTL_ABC_L_VAR_MAX		0xFFFFFFFF
-#define SCTPCTL_ABC_L_VAR_DEFAULT	1
+#define SCTPCTL_ABC_L_VAR_DEFAULT	2
 
 /* max_chained_mbufs: Default max number of small mbufs on a chain */
 #define SCTPCTL_MAX_CHAINED_MBUFS_DESC	"Default max number of small mbufs on a chain"


More information about the svn-src-stable-8 mailing list