Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Dec 2009 08:52:13 +0000 (UTC)
From:      Shteryana Shopova <syrinx@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r201254 - head/sys/netinet
Message-ID:  <200912300852.nBU8qD5l052180@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: syrinx
Date: Wed Dec 30 08:52:13 2009
New Revision: 201254
URL: http://svn.freebsd.org/changeset/base/201254

Log:
  Make sure the multicast forwarding cache entry's stall queue is properly
  initialized before trying to insert an entry into it.
  
  PR:		kern/142052
  Reviewed by:	bms
  MFC after:	now

Modified:
  head/sys/netinet/ip_mroute.c

Modified: head/sys/netinet/ip_mroute.c
==============================================================================
--- head/sys/netinet/ip_mroute.c	Wed Dec 30 06:37:58 2009	(r201253)
+++ head/sys/netinet/ip_mroute.c	Wed Dec 30 08:52:13 2009	(r201254)
@@ -1386,6 +1386,15 @@ fail:
 	    rt->mfc_rp.s_addr = INADDR_ANY;
 	    rt->mfc_bw_meter = NULL;
 
+	    /* initialize pkt counters per src-grp */
+	    rt->mfc_pkt_cnt = 0;
+	    rt->mfc_byte_cnt = 0;
+	    rt->mfc_wrong_if = 0;
+	    timevalclear(&rt->mfc_last_assert);
+
+	    TAILQ_INIT(&rt->mfc_stall);
+	    rt->mfc_nstall = 0;
+
 	    /* link into table */
 	    LIST_INSERT_HEAD(&mfchashtbl[hash], rt, mfc_hash);
 	    TAILQ_INSERT_HEAD(&rt->mfc_stall, rte, rte_link);



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