summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/nd6.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2009-04-12 13:22:33 +0000
committerrwatson <rwatson@FreeBSD.org>2009-04-12 13:22:33 +0000
commit4801e9aee9baec5543d3d78abf1d7432044173fe (patch)
tree8468527867e08bef8398c91c078aae786df7c3f8 /sys/netinet6/nd6.c
parent6958bbf168b98d4b8a70ef9cf01445b28ff778b0 (diff)
downloadFreeBSD-src-4801e9aee9baec5543d3d78abf1d7432044173fe.zip
FreeBSD-src-4801e9aee9baec5543d3d78abf1d7432044173fe.tar.gz
Update stats in struct icmpstat and icmp6stat using four new
macros: ICMPSTAT_ADD(), ICMPSTAT_INC(), ICMP6STAT_ADD(), and ICMP6STAT_INC(), rather than directly manipulating the fields of these structures across the kernel. This will make it easier to change the implementation of these statistics, such as using per-CPU versions of the data structures. In on case, icmp6stat members are manipulated indirectly, by icmp6_errcount(), and this will require further work to fix for per-CPU stats. MFC after: 3 days
Diffstat (limited to 'sys/netinet6/nd6.c')
-rw-r--r--sys/netinet6/nd6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c
index 535f329..857d3fc 100644
--- a/sys/netinet6/nd6.c
+++ b/sys/netinet6/nd6.c
@@ -374,7 +374,7 @@ nd6_options(union nd_opts *ndopts)
* Message validation requires that all included
* options have a length that is greater than zero.
*/
- V_icmp6stat.icp6s_nd_badopt++;
+ ICMP6STAT_INC(icp6s_nd_badopt);
bzero(ndopts, sizeof(*ndopts));
return -1;
}
@@ -418,7 +418,7 @@ nd6_options(union nd_opts *ndopts)
skip1:
i++;
if (i > V_nd6_maxndopt) {
- V_icmp6stat.icp6s_nd_toomanyopt++;
+ ICMP6STAT_INC(icp6s_nd_toomanyopt);
nd6log((LOG_INFO, "too many loop in nd opt\n"));
break;
}
OpenPOWER on IntegriCloud