Deleted Added
full compact
30c30
< * $FreeBSD: head/sys/netinet/icmp_var.h 195727 2009-07-16 21:13:04Z rwatson $
---
> * $FreeBSD: head/sys/netinet/icmp_var.h 196039 2009-08-02 19:43:32Z rwatson $
60a61,64
> /*
> * In-kernel consumers can use these accessor macros directly to update
> * stats.
> */
62a67,73
>
> /*
> * Kernel module consumers must use this accessor macro.
> */
> void kmod_icmpstat_inc(int statnum);
> #define KMOD_ICMPSTAT_INC(name) \
> kmod_icmpstat_inc(offsetof(struct icmpstat, name) / sizeof(u_long))