CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2023/12/29 04:43:04
Modified files: sys/net : if.c if_loop.c Log message: Make loopback interface counters MP safe. Create and use the MP safe version of the interface counters for lo(4). Input packets were counted twice. As interface input queue is already counting, remove input count in if_input_local(). Multicast and siplex packets are counted at the ethernet interface. Add a comment that this not MP safe. OK mvs@