CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2021/02/11 05:08:21
Modified files: sys/kern : vfs_syscalls.c Log message: In the various open functions reduce the fdplock() to only span over the function which need the lock (falloc, fdinsert, fdremove). In most cases it is not correct to hold the lock while calling VFS functions or e.g. closef since those aquire or release long lived VFS locks. OK visa@ mvs@