CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2024/11/08 14:40:39
Modified files: sys/netinet : tcp_input.c Log message: Use mutex of receive socket buffer to protect so_oobmark. Socket field so_oobmark belongs to receive path, so use so_rcv mutex to protect it. Although tcp_input() is still exclusively locked, put mutex there to prepare further unlocking. OK mvs@