diff options
author | anton <anton@cvs.openbsd.org> | 2019-08-12 08:17:06 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2019-08-12 08:17:06 +0000 |
commit | f14293d82cebc097ae6d0128c1aecca6c1565b98 (patch) | |
tree | 08cd021cc7e75e4bc9019fccb752e0ebb2fccbcd /sys/kern/syscalls.master | |
parent | 2e877a3d1f0156128f9576e59b7dd249c5dfa72f (diff) |
Unlock lseek(2) since the file offset is MP-safe by now. Calling
VOP_GETATTR() must still be serialized using the kernel lock since the
underlying file system implementation is not MP-safe.
no objection from deraadt@ and ok mpi@ visa@
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r-- | sys/kern/syscalls.master | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index c5014a46ec7..85d0ccb807a 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.195 2019/07/09 15:02:15 semarie Exp $ +; $OpenBSD: syscalls.master,v 1.196 2019/08/12 08:17:05 anton Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -349,7 +349,7 @@ 197 STD { void *sys_mmap(void *addr, size_t len, int prot, \ int flags, int fd, long pad, off_t pos); } 198 INDIR { quad_t sys___syscall(quad_t num, ...); } -199 STD { off_t sys_lseek(int fd, int pad, off_t offset, \ +199 STD NOLOCK { off_t sys_lseek(int fd, int pad, off_t offset, \ int whence); } 200 STD { int sys_truncate(const char *path, int pad, \ off_t length); } |