CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/08/20 07:29:25
Modified files:
sys/conf : param.c
sys/kern : kern_descrip.c kern_resource.c kern_sysctl.c
Log message:
Unlock KERN_MAXFILES.
`maxfiles' is atomically accessed integer which is lockless and
read-only accessed in file descriptors layer.
lim_startup() called during kernel bootstrap, no need to
atomic_load_int() within.
ok mpi
