From e110a4ba147576d2848320424749445a1ddd7e3a Mon Sep 17 00:00:00 2001 From: Artur Grabowski Date: Tue, 31 Jul 2001 13:30:18 +0000 Subject: pmap_steal_memory takes to vaddr_t * as arguments, not paddr_t *. For some strange (ehmm) reason, only the prototype was wrong. The implementations were right. --- sys/vm/pmap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/vm/pmap.h b/sys/vm/pmap.h index 8b26c78a3db..86412ddd24a 100644 --- a/sys/vm/pmap.h +++ b/sys/vm/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.20 2001/07/25 13:25:33 art Exp $ */ +/* $OpenBSD: pmap.h,v 1.21 2001/07/31 13:30:17 art Exp $ */ /* $NetBSD: pmap.h,v 1.36 1999/11/13 00:24:39 thorpej Exp $ */ /* @@ -145,7 +145,7 @@ void pmap_update __P((void)); void pmap_zero_page __P((paddr_t)); #if defined(PMAP_STEAL_MEMORY) -vaddr_t pmap_steal_memory __P((vsize_t, paddr_t *, paddr_t *)); +vaddr_t pmap_steal_memory __P((vsize_t, vaddr_t *, vaddr_t *)); #else void pmap_virtual_space __P((vaddr_t *, vaddr_t *)); #endif -- cgit v1.2.3