CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2021/05/06 06:55:20
Modified files:
sys/kern : syscalls.master vfs_vnops.c
Log message:
Unlock lseek(2).
In August 2019 I tried to unlock lseek which failed since the vnode lock
could not be acquired without holding the kernel lock back then.
claudio@ recently made it possible to acquire a vnode lock without
holding the kernel lock. The kernel lock is still required around
VOP_GETATTR() as the underlying file system implementations are not
MP-safe.
ok claudio@