CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/11/29 13:40:06
Modified files:
sys/kern : syscalls.master
Log message:
Unlock bind(2) syscall.
For internet sockets sobind() runs with exclusive net lock due to
solock(). For unix domain sockets uipc_bind() grabs the kernel
lock itself. So sys_bind() is MP safe. Add NOLOCK flag to avoid
kernel lock.
OK mvs@
