Symbol: ipstat
sys/netinet/ip_input.c
194
VNET_PCPUSTAT_DEFINE(struct ipstat, ipstat);
sys/netinet/ip_input.c
195
VNET_PCPUSTAT_SYSINIT(ipstat);
sys/netinet/ip_input.c
196
SYSCTL_VNET_PCPUSTAT(_net_inet_ip, IPCTL_STATS, stats, struct ipstat, ipstat,
sys/netinet/ip_input.c
200
VNET_PCPUSTAT_SYSUNINIT(ipstat);
sys/netinet/ip_input.c
211
counter_u64_add(VNET(ipstat)[statnum], 1);
sys/netinet/ip_input.c
218
counter_u64_add(VNET(ipstat)[statnum], -1);
sys/netinet/ip_var.h
141
VNET_PCPUSTAT_DECLARE(struct ipstat, ipstat);
sys/netinet/ip_var.h
149
VNET_PCPUSTAT_ADD(struct ipstat, ipstat, name, (val)); \
sys/netinet/ip_var.h
163
offsetof(struct ipstat, name) / sizeof(uint64_t)); \
sys/netinet/ip_var.h
170
offsetof(struct ipstat, name) / sizeof(uint64_t)); \
tests/sys/netinet/ip_reass_test.c
176
get_ipstat(struct ipstat *stat)
tests/sys/netinet/ip_reass_test.c
206
struct ipstat old, new;
tests/sys/netinet/ip_reass_test.c
286
struct ipstat old, new;
tests/sys/netinet/ip_reass_test.c
336
struct ipstat old, new;
usr.bin/netstat/inet.c
1047
struct ipstat ipstat;
usr.bin/netstat/inet.c
1049
if (fetch_stats("net.inet.ip.stats", off, &ipstat,
usr.bin/netstat/inet.c
1050
sizeof(ipstat), kread_counters) != 0)
usr.bin/netstat/inet.c
1056
#define p(f, m) if (ipstat.f || sflag <= 1) \
usr.bin/netstat/inet.c
1057
xo_emit(m, (uintmax_t )ipstat.f, plural(ipstat.f))
usr.bin/netstat/inet.c
1058
#define p1a(f, m) if (ipstat.f || sflag <= 1) \
usr.bin/netstat/inet.c
1059
xo_emit(m, (uintmax_t )ipstat.f)
usr.bin/netstat/inet.c
1095
if (ipstat.ips_forward || sflag <= 1)
usr.bin/systat/ip.c
60
struct ipstat i;