CVSROOT: /cvs Module name: src Changes by: m...@cvs.openbsd.org 2025/01/03 05:56:15
Modified files: sys/kern : uipc_socket.c uipc_socket2.c sys/netinet : in_pcb.c sys/sys : socketvar.h Log message: Do not unlock socket within sorele(). Unlock it outside if required. This time socket could be protected by different locks, include different shared solock() variations. sorele() does nothing that required to lock socket, no reason to release it locked. ok bluhm