CVSROOT: /cvs Module name: src Changes by: m...@cvs.openbsd.org 2020/07/06 14:37:51
Modified files: sys/net : if_pppx.c pipex.c pipex.h pipex_local.h Log message: Protect the whole pipex(4) layer by NET_LOCK(). pipex(4) was simultaneously protected by KERNEL_LOCK() and NET_LOCK() and now we have the only lock for it. This step reduces locking mess in this layer. ok mpi@