CVSROOT: /cvs Module name: src Changes by: [email protected] 2019/06/13 14:52:36
Modified files:
sys/kern : kern_sysctl.c
Log message:
When tcp_close() is running in parallel with fill_file(), the kernel
could crash due to missing inp_ppcb. This happend when fstat(1)
was called often and TCP was aborted with reset. Protect the sysctl
path with the net lock.
OK mpi@
