summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrueffer <brueffer@FreeBSD.org>2014-03-12 08:15:15 +0000
committerbrueffer <brueffer@FreeBSD.org>2014-03-12 08:15:15 +0000
commit8a10179d878176654b8a7b951a9f56b3d462db41 (patch)
tree527c7297e3af7c62b367c4f2b066968c0b7246a5
parentb589beb47e3cae357eddc17e8b55d42baa6faac6 (diff)
downloadFreeBSD-src-8a10179d878176654b8a7b951a9f56b3d462db41.zip
FreeBSD-src-8a10179d878176654b8a7b951a9f56b3d462db41.tar.gz
MFC: r261710
Only count table lookups when we're actually processing packets. PR: 183462 Submitted by: Sven-Thorsten Dietrich <thebigcorporation at gmail.com> Reviewed by: bms
-rw-r--r--sys/netinet6/ip6_mroute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet6/ip6_mroute.c b/sys/netinet6/ip6_mroute.c
index 9ad518e..950a607 100644
--- a/sys/netinet6/ip6_mroute.c
+++ b/sys/netinet6/ip6_mroute.c
@@ -283,7 +283,6 @@ static VNET_DEFINE(int, pim6);
#define MF6CFIND(o, g, rt) do { \
struct mf6c *_rt = mf6ctable[MF6CHASH(o,g)]; \
rt = NULL; \
- MRT6STAT_INC(mrt6s_mfc_lookups); \
while (_rt) { \
if (IN6_ARE_ADDR_EQUAL(&_rt->mf6c_origin.sin6_addr, &(o)) && \
IN6_ARE_ADDR_EQUAL(&_rt->mf6c_mcastgrp.sin6_addr, &(g)) && \
@@ -1099,6 +1098,7 @@ X_ip6_mforward(struct ip6_hdr *ip6, struct ifnet *ifp, struct mbuf *m)
* Determine forwarding mifs from the forwarding cache table
*/
MF6CFIND(ip6->ip6_src, ip6->ip6_dst, rt);
+ MRT6STAT_INC(mrt6s_mfc_lookups);
/* Entry exists, so forward if necessary */
if (rt) {
OpenPOWER on IntegriCloud