diff options
author | briggs <briggs@cvs.openbsd.org> | 1996-02-20 02:53:37 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1996-02-20 02:53:37 +0000 |
commit | ce5702a5489218ca01b12ee8c5dabcd9d498c1be (patch) | |
tree | 872d7e03e213faeb6a1ea45398cf20ce4494a66e /sys/arch/mac68k | |
parent | 3a8d3206079d8f024bcaca6b614d579c25347c78 (diff) |
Sync. w/ NetBSD: vm prototype changes.
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r-- | sys/arch/mac68k/mac68k/vm_machdep.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sys/arch/mac68k/mac68k/vm_machdep.c b/sys/arch/mac68k/mac68k/vm_machdep.c index 7deb18a559f..741ec9a3d39 100644 --- a/sys/arch/mac68k/mac68k/vm_machdep.c +++ b/sys/arch/mac68k/mac68k/vm_machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: vm_machdep.c,v 1.15 1996/01/12 04:16:59 briggs Exp $ */ +/* $NetBSD: vm_machdep.c,v 1.16 1996/02/05 02:10:00 christos Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -345,8 +345,11 @@ extern vm_map_t phys_map; * All requests are (re)mapped into kernel VA space via the useriomap * (a name with only slightly more meaning than "kernelmap") */ -vmapbuf(bp) +/*ARGSUSED*/ +void +vmapbuf(bp, sz) register struct buf *bp; + vm_size_t sz; { register int npf; register caddr_t addr; @@ -380,8 +383,11 @@ vmapbuf(bp) * Free the io map PTEs associated with this IO operation. * We also invalidate the TLB entries and restore the original b_addr. */ -vunmapbuf(bp) +/*ARGSUSED*/ +void +vunmapbuf(bp, sz) register struct buf *bp; + vm_size_t sz; { register int npf; register caddr_t addr = bp->b_un.b_addr; |