Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/arch/vax/vax/pmap.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/arch/vax/vax/pmap.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.98 retrieving revision 1.99 diff -u -p -r1.98 -r1.99 --- src/sys/arch/vax/vax/pmap.c 2001/04/22 23:42:18 1.98 +++ src/sys/arch/vax/vax/pmap.c 2001/04/23 23:58:09 1.99 @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.c,v 1.98 2001/04/22 23:42:18 thorpej Exp $ */ +/* $NetBSD: pmap.c,v 1.99 2001/04/23 23:58:09 thorpej Exp $ */ /* * Copyright (c) 1994, 1998, 1999 Ludd, University of Lule}, Sweden. * All rights reserved. @@ -814,23 +814,6 @@ if (startpmapdebug) return 0; } -void * -pmap_bootstrap_alloc(size) - int size; -{ - void *mem; - -#ifdef PMAPDEBUG -if(startpmapdebug) - printf("pmap_bootstrap_alloc: size 0x %x\n",size); -#endif - size = round_page(size); - mem = (caddr_t)avail_start + KERNBASE; - avail_start += size; - memset(mem, 0, size); - return (mem); -} - vaddr_t pmap_map(virtuell, pstart, pend, prot) vaddr_t virtuell;