svn commit: r257963 - stable/8/sys/netinet6
Andrey V. Elsukov
ae at FreeBSD.org
Mon Nov 11 10:44:39 UTC 2013
Author: ae
Date: Mon Nov 11 10:44:38 2013
New Revision: 257963
URL: http://svnweb.freebsd.org/changeset/base/257963
Log:
MFC r257084:
Initialize inc_fibnum for properly handling ICMP6_PACKET_TOO_BIG
errors in multifib environment.
PR: 183265
Modified:
stable/8/sys/netinet6/icmp6.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/netinet6/ (props changed)
Modified: stable/8/sys/netinet6/icmp6.c
==============================================================================
--- stable/8/sys/netinet6/icmp6.c Mon Nov 11 10:43:55 2013 (r257962)
+++ stable/8/sys/netinet6/icmp6.c Mon Nov 11 10:44:38 2013 (r257963)
@@ -1159,6 +1159,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
mailing list