svn commit: r257962 - stable/9/sys/netinet6
Andrey V. Elsukov
ae at FreeBSD.org
Mon Nov 11 10:43:55 UTC 2013
Author: ae
Date: Mon Nov 11 10:43:55 2013
New Revision: 257962
URL: http://svnweb.freebsd.org/changeset/base/257962
Log:
MFC r257084:
Initialize inc_fibnum for properly handling ICMP6_PACKET_TOO_BIG
errors in multifib environment.
PR: 183265
Modified:
stable/9/sys/netinet6/icmp6.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/netinet6/icmp6.c
==============================================================================
--- stable/9/sys/netinet6/icmp6.c Mon Nov 11 10:43:39 2013 (r257961)
+++ stable/9/sys/netinet6/icmp6.c Mon Nov 11 10:43:55 2013 (r257962)
@@ -1242,6 +1242,7 @@ icmp6_mtudisc_update(struct ip6ctlparam
mtu = IPV6_MMTU - 8;
bzero(&inc, sizeof(inc));
+ inc.inc_fibnum = M_GETFIB(m);
inc.inc_flags |= INC_ISIPV6;
inc.inc6_faddr = *dst;
if (in6_setscope(&inc.inc6_faddr, m->m_pkthdr.rcvif, NULL))
More information about the svn-src-stable-9
mailing list