Deleted Added
full compact
1c1
< /* $FreeBSD: head/sys/netinet/icmp6.h 195727 2009-07-16 21:13:04Z rwatson $ */
---
> /* $FreeBSD: head/sys/netinet/icmp6.h 196039 2009-08-02 19:43:32Z rwatson $ */
602a603,606
> /*
> * In-kernel consumers can use these accessor macros directly to update
> * stats.
> */
604a609,615
>
> /*
> * Kernel module consumers must use this accessor macro.
> */
> void kmod_icmp6stat_inc(int statnum);
> #define KMOD_ICMP6STAT_INC(name) \
> kmod_icmp6stat_inc(offsetof(struct icmp6stat, name) / sizeof(u_quad_t))