From owner-svn-src-head@freebsd.org Fri Aug 14 14:26:13 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5EEE9B8E46; Fri, 14 Aug 2015 14:26:13 +0000 (UTC) (envelope-from tuexen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D68521A87; Fri, 14 Aug 2015 14:26:13 +0000 (UTC) (envelope-from tuexen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EEQDFl076108; Fri, 14 Aug 2015 14:26:13 GMT (envelope-from tuexen@FreeBSD.org) Received: (from tuexen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EEQDHN076107; Fri, 14 Aug 2015 14:26:13 GMT (envelope-from tuexen@FreeBSD.org) Message-Id: <201508141426.t7EEQDHN076107@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tuexen set sender to tuexen@FreeBSD.org using -f From: Michael Tuexen Date: Fri, 14 Aug 2015 14:26:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r286781 - head/sys/netinet X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 14:26:14 -0000 Author: tuexen Date: Fri Aug 14 14:26:13 2015 New Revision: 286781 URL: https://svnweb.freebsd.org/changeset/base/286781 Log: Allow the path MTU to grow up to the outgoing interface MTU. MFC after: 3 days Modified: head/sys/netinet/sctp_timer.c Modified: head/sys/netinet/sctp_timer.c ============================================================================== --- head/sys/netinet/sctp_timer.c Fri Aug 14 14:20:10 2015 (r286780) +++ head/sys/netinet/sctp_timer.c Fri Aug 14 14:26:13 2015 (r286781) @@ -1492,6 +1492,8 @@ sctp_pathmtu_timer(struct sctp_inpcb *in #endif if (mtu > next_mtu) { net->mtu = next_mtu; + } else { + net->mtu = mtu; } } }