CVSROOT: /cvs Module name: src Changes by: v...@cvs.openbsd.org 2018/07/05 08:45:07
Modified files: sys/kern : uipc_socket.c Log message: Serialize the sosplice taskq allocation. This prevents an unlikely duplicate allocation that could happen in the future when each socket has a dedicated lock. Right now, the code path is serialized also by the NET_LOCK() (and the KERNEL_LOCK()). OK mpi@