CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2025/01/18 03:44:53
Modified files: sys/kern : uipc_socket2.c Log message: Assert that socket queue 0 is not used by TCP. Queue 0 is only used for UNIX socket and socket pair. Its locking code in soisconnected() is never reached with internet sockets. Replacing the persocket "if" condition with an "assert" makes arguing about TCP input socket locking easier. OK mvs@