CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2016/11/17 19:53:48
Modified files:
sys/net : pipex.c
sys/netinet : ip_output.c udp_usrreq.c udp_var.h
sys/netinet6 : ip6_output.c udp6_output.c
Log message:
turn ipstat into a set of percpu counters.
each counter is identified by an enum value which correspond to the
original members of the udpstat struct.
udpstat_inc(udps_foo) replaces udpstat.udps_foo++ for the actual
updates. udpstat_inc is a thin wrapper around counters_inc.
counters are still returned to userland via the udpstat struct for
now.
ok mpi@ mikeb@ deraadt@