summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-07-05 10:03:49 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-07-05 10:03:49 +0000
commit62e8975901017f65d1114e50579720901c7690e4 (patch)
treeca4b787f74531e6e03a053205e9f01b9f3562f36
parent1e2cb14a7562811bb477e028c5c11fbf1f89176f (diff)
Oops. missed this file in the extent_alloc fix.
-rw-r--r--sys/arch/mvme88k/mvme88k/vm_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/mvme88k/vm_machdep.c b/sys/arch/mvme88k/mvme88k/vm_machdep.c
index d70b495efec..20dabb88576 100644
--- a/sys/arch/mvme88k/mvme88k/vm_machdep.c
+++ b/sys/arch/mvme88k/mvme88k/vm_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vm_machdep.c,v 1.26 2001/06/27 04:29:22 art Exp $ */
+/* $OpenBSD: vm_machdep.c,v 1.27 2001/07/05 10:03:48 art Exp $ */
/*
* Copyright (c) 1998 Steve Murphree, Jr.
@@ -328,7 +328,7 @@ iomap_mapin(vm_offset_t pa, vm_size_t len, boolean_t canwait)
len = round_page(off + len);
s = splhigh();
- error = extent_alloc(iomap_extent, len, PAGE_SIZE, 0,
+ error = extent_alloc(iomap_extent, len, PAGE_SIZE, 0, 0,
canwait ? EX_WAITSPACE : 0, &iova);
splx(s);