summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/icmp6.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2009-08-02 19:43:32 +0000
committerrwatson <rwatson@FreeBSD.org>2009-08-02 19:43:32 +0000
commit5c6699ad3da677119a855665cf574faa86b982fc (patch)
treea40bf95a151eb088ca45c32ee899b724ba74dcea /sys/netinet6/icmp6.c
parentb08de52c2d9909520082a33aafe53c6ee39df7d7 (diff)
downloadFreeBSD-src-5c6699ad3da677119a855665cf574faa86b982fc.zip
FreeBSD-src-5c6699ad3da677119a855665cf574faa86b982fc.tar.gz
Many network stack subsystems use a single global data structure to hold
all pertinent statatistics for the subsystem. These structures are sometimes "borrowed" by kernel modules that require a place to store statistics for similar events. Add KPI accessor functions for statistics structures referenced by kernel modules so that they no longer encode certain specifics of how the data structures are named and stored. This change is intended to make it easier to move to per-CPU network stats following 8.0-RELEASE. The following modules are affected by this change: if_bridge if_cxgb if_gif ip_mroute ipdivert pf In practice, most of these statistics consumers should, in fact, maintain their own statistics data structures rather than borrowing structures from the base network stack. However, that change is too agressive for this point in the release cycle. Reviewed by: bz Approved by: re (kib)
Diffstat (limited to 'sys/netinet6/icmp6.c')
-rw-r--r--sys/netinet6/icmp6.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/netinet6/icmp6.c b/sys/netinet6/icmp6.c
index bdf7786..7fe63b6 100644
--- a/sys/netinet6/icmp6.c
+++ b/sys/netinet6/icmp6.c
@@ -152,6 +152,20 @@ icmp6_init(void)
V_icmp6errpps_count = 0;
}
+/*
+ * Kernel module interface for updating icmp6stat. The argument is an index
+ * into icmp6stat treated as an array of u_quad_t. While this encodes the
+ * general layout of icmp6stat into the caller, it doesn't encode its
+ * location, so that future changes to add, for example, per-CPU stats
+ * support won't cause binary compatibility problems for kernel modules.
+ */
+void
+kmod_icmp6stat_inc(int statnum)
+{
+
+ (*((u_quad_t *)&V_icmp6stat + statnum))++;
+}
+
static void
icmp6_errcount(struct icmp6errstat *stat, int type, int code)
{
OpenPOWER on IntegriCloud