svn commit: r237893 - stable/9/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Jul 1 07:53:55 UTC 2012


Author: tuexen
Date: Sun Jul  1 07:53:54 2012
New Revision: 237893
URL: http://svn.freebsd.org/changeset/base/237893

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

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

Modified: stable/9/sys/netinet/sctp_constants.h
==============================================================================
--- stable/9/sys/netinet/sctp_constants.h	Sun Jul  1 07:53:50 2012	(r237892)
+++ stable/9/sys/netinet/sctp_constants.h	Sun Jul  1 07:53:54 2012	(r237893)
@@ -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/9/sys/netinet/sctp_sysctl.h
==============================================================================
--- stable/9/sys/netinet/sctp_sysctl.h	Sun Jul  1 07:53:50 2012	(r237892)
+++ stable/9/sys/netinet/sctp_sysctl.h	Sun Jul  1 07:53:54 2012	(r237893)
@@ -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-all mailing list