summaryrefslogtreecommitdiff
path: root/sys/uvm
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-10-26 12:03:29 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-10-26 12:03:29 +0000
commiteb46b9853439c27012a22a86f3d9139930a9e87a (patch)
tree0668f2d444b8c90d902fc4d94aaf484b512bab93 /sys/uvm
parent322ae2c6b01056eccf34722ee78713e1b3337123 (diff)
- every new fd created by falloc() is marked as larval and should not be used
any anyone. Every caller of falloc matures the fd when it's usable. - Since every lookup in the fd table must now check this flag and all of them do the same thing, move all the necessary checks into a function - fd_getfile.
Diffstat (limited to 'sys/uvm')
-rw-r--r--sys/uvm/uvm_mmap.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/uvm/uvm_mmap.c b/sys/uvm/uvm_mmap.c
index 20311eec008..78ccea49e57 100644
--- a/sys/uvm/uvm_mmap.c
+++ b/sys/uvm/uvm_mmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_mmap.c,v 1.20 2001/09/11 20:05:26 miod Exp $ */
+/* $OpenBSD: uvm_mmap.c,v 1.21 2001/10/26 12:03:28 art Exp $ */
/* $NetBSD: uvm_mmap.c,v 1.41 2000/05/23 02:19:20 enami Exp $ */
/*
@@ -390,10 +390,7 @@ sys_mmap(p, v, retval)
if ((flags & MAP_ANON) == 0) {
- if (fd < 0 || fd >= fdp->fd_nfiles)
- return(EBADF); /* failed range check? */
- fp = fdp->fd_ofiles[fd]; /* convert to file pointer */
- if (fp == NULL)
+ if ((fp = fd_getfile(fdp, fd)) == NULL)
return(EBADF);
if (fp->f_type != DTYPE_VNODE)