summaryrefslogtreecommitdiff
path: root/sys/vm
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-07-28 00:13:59 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-07-28 00:13:59 +0000
commit70ac9fcbf4cbec8e4d581e0b0f8b229456a5a517 (patch)
treeb442ce56b4b49eb012118536460cb63905d9fb20 /sys/vm
parent7308bbe616f2495a440fa39e81d63067dad625ad (diff)
Return EINVAL when msg_iovlen or iovcnt <= 0; Make uio_resid unsigned (size_t) and don't return EINVAL if it is < 0 in sys_{read,write}. Remove check for uio_resid < 0 uiomove() now that uio_resid is unsigned and brack remaining panics with #ifdef DIAGNOSTIC. vn_rdwr() must now take a size_t * as its 9th argument so change that and clean up uses of vn_rdwr(). Fixes 549 + more
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_unix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/vm_unix.c b/sys/vm/vm_unix.c
index 3203d8e7a23..6a1a7a21148 100644
--- a/sys/vm/vm_unix.c
+++ b/sys/vm/vm_unix.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vm_unix.c,v 1.8 1997/11/06 05:59:39 csapuntz Exp $ */
+/* $OpenBSD: vm_unix.c,v 1.9 1998/07/28 00:13:21 millert Exp $ */
/* $NetBSD: vm_unix.c,v 1.19 1996/02/10 00:08:14 christos Exp $ */
/*
@@ -234,7 +234,7 @@ vm_coredump(p, vp, cred, chdr)
error = vn_rdwr(UIO_WRITE, vp,
(caddr_t)&cseg, chdr->c_seghdrsize,
offset, UIO_SYSSPACE,
- IO_NODELOCKED|IO_UNIT, cred, (int *) NULL, p);
+ IO_NODELOCKED|IO_UNIT, cred, NULL, p);
if (error)
break;
@@ -242,7 +242,7 @@ vm_coredump(p, vp, cred, chdr)
error = vn_rdwr(UIO_WRITE, vp,
(caddr_t)cseg.c_addr, (int)cseg.c_size,
offset, UIO_USERSPACE,
- IO_NODELOCKED|IO_UNIT, cred, (int *) NULL, p);
+ IO_NODELOCKED|IO_UNIT, cred, NULL, p);
if (error)
break;