CVSROOT: /cvs Module name: src Changes by: m...@cvs.openbsd.org 2025/07/15 02:27:47
Modified files: sys/netinet : ip_input.c Log message: Unlock IPCTL_IPPORT_MAXQUEUE case of ip_sysctl() We could set `ip_maxqueue' to be less than (ip_frags + 1) just after the netlock is released. So we don't need to serializes `ip_frags' and `ip_maxqueue' with the `ipq_mutex', the cached value is enough for ip_fragcheck() run. ok bluhm