CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2024/12/30 05:20:39
Modified files: sys/netinet : tcp_input.c tcp_usrreq.c Log message: Remove net lock from TCP syn cache sysctl. TCP syn cache is protected by mutex. Make access to its sysctl variables either atomic or put them into this mutex. Then net lock can be removed. OK mvs@