svn commit: r294148 - stable/10/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sat Jan 16 12:50:01 UTC 2016


Author: tuexen
Date: Sat Jan 16 12:50:00 2016
New Revision: 294148
URL: https://svnweb.freebsd.org/changeset/base/294148

Log:
  MFC r286781:
  Allow the path MTU to grow up to the outgoing interface MTU.

Modified:
  stable/10/sys/netinet/sctp_timer.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/netinet/sctp_timer.c
==============================================================================
--- stable/10/sys/netinet/sctp_timer.c	Sat Jan 16 12:47:28 2016	(r294147)
+++ stable/10/sys/netinet/sctp_timer.c	Sat Jan 16 12:50:00 2016	(r294148)
@@ -1492,6 +1492,8 @@ sctp_pathmtu_timer(struct sctp_inpcb *in
 #endif
 			if (mtu > next_mtu) {
 				net->mtu = next_mtu;
+			} else {
+				net->mtu = mtu;
 			}
 		}
 	}


More information about the svn-src-all mailing list