CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2024/01/12 03:48:03
Modified files: sys/kern : uipc_socket.c Log message: Send UDP packets in parallel. Sending UDP packets via datagram socket is MP safe now. Same applies to raw IPv4 and IPv6, and divert sockets. Switch sosend() from exclusive net lock to shared net lock in combination with per socket lock. TCP and GRE still use exclusive net lock. tested by otto@ and florian@ OK mvs@