CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2024/01/29 15:47:13
Modified files: sys/netinet : tcp_timer.h Log message: Run TCP timer without kernel lock. TCP timers are protected by exclusive net lock. They may sleep to grab it as they run in process context. There is no reason for them to hold additional kernel lock. Since we have MP safe timeouts now, convert them by adding TIMEOUT_PROC and TIMEOUT_MPSAFE flag. OK mvs@