summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/include/pmap.h
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-12-04 23:22:43 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-12-04 23:22:43 +0000
commit2d6ebc6b1044ef771b2b25c09c2abffe0c0a0d3d (patch)
treef85c4269fcfa3a0ec1575186dfcbcbbb1ebaf8d7 /sys/arch/sparc64/include/pmap.h
parentf1bec1965343db9a80a80e7ed55ee2fe5dd36253 (diff)
Yet another sync to NetBSD uvm.
Today we add a pmap argument to pmap_update() and allocate map entries for kernel_map from kmem_map instead of using the static entries. This should get rid of MAX_KMAPENT panics. Also some uvm_loan problems are fixed.
Diffstat (limited to 'sys/arch/sparc64/include/pmap.h')
-rw-r--r--sys/arch/sparc64/include/pmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/pmap.h b/sys/arch/sparc64/include/pmap.h
index 1032af946e2..703e1f79b8c 100644
--- a/sys/arch/sparc64/include/pmap.h
+++ b/sys/arch/sparc64/include/pmap.h
@@ -161,7 +161,7 @@ int pmap_count_res __P((pmap_t pmap));
#define pmap_resident_count(pm) pmap_count_res((pm))
#define pmap_from_phys_address(x,f) ((x)>>PGSHIFT)
#define pmap_phys_address(x) ((((paddr_t)(x))<<PGSHIFT)|PMAP_NC)
-#define pmap_update() /* nothing (yet) */
+#define pmap_update(pm) /* nothing (yet) */
void pmap_bootstrap __P((u_long kernelstart, u_long kernelend, u_int numctx));
/* make sure all page mappings are modulo 16K to prevent d$ aliasing */