One more pmap_enter() catch-up.

This commit is contained in:
kleink 1999-11-17 14:48:43 +00:00
parent b4c9eea282
commit c76614ee74
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.45 1999/11/13 00:30:42 thorpej Exp $ */
/* $NetBSD: machdep.c,v 1.46 1999/11/17 14:48:43 kleink Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -441,7 +441,7 @@ cpu_startup()
"buffer cache");
pmap_enter(kernel_map->pmap, curbuf,
VM_PAGE_TO_PHYS(pg), VM_PROT_READ|VM_PROT_WRITE,
TRUE, VM_PROT_READ|VM_PROT_WRITE);
VM_PROT_READ|VM_PROT_WRITE|PMAP_WIRED);
curbuf += PAGE_SIZE;
curbufsize -= PAGE_SIZE;
}