diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2015-10-02 17:49:41 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2015-10-02 17:49:41 +0000 |
commit | ea411543dbc094c990a198d42e3b4e38b2730e8a (patch) | |
tree | 405409d01d9f961fd05b19434fdb2f65e6092b1c /sys | |
parent | 09f2ba54dce036dbac210c95f14e2fe019b30d08 (diff) |
Revert previous commit; something is not quite right yet in the bowels of uvm
as Theo is seeing vnode-related panics on several architectures in the
codepath that implements mmap(2).
Diffstat (limited to 'sys')
-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 31bcfd24104..bccfe3d7198 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.160 2015/09/26 15:38:53 tedu Exp $ +; $OpenBSD: syscalls.master,v 1.161 2015/10/02 17:49:40 kettenis Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -341,7 +341,7 @@ 195 STD { int sys_setrlimit(int which, \ const struct rlimit *rlp); } 196 OBSOL ogetdirentries48 -197 STD NOLOCK { void *sys_mmap(void *addr, size_t len, int prot, \ +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, \ |