Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Nov 2013 10:43:55 +0000 (UTC)
From:      "Andrey V. Elsukov" <ae@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r257962 - stable/9/sys/netinet6
Message-ID:  <201311111043.rABAhtNh004158@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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))



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311111043.rABAhtNh004158>