diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-12-04 23:22:43 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-12-04 23:22:43 +0000 |
commit | 2d6ebc6b1044ef771b2b25c09c2abffe0c0a0d3d (patch) | |
tree | f85c4269fcfa3a0ec1575186dfcbcbbb1ebaf8d7 /sys/arch/vax/include | |
parent | f1bec1965343db9a80a80e7ed55ee2fe5dd36253 (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/vax/include')
-rw-r--r-- | sys/arch/vax/include/pmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/include/pmap.h b/sys/arch/vax/include/pmap.h index 2645763d069..50cbca23400 100644 --- a/sys/arch/vax/include/pmap.h +++ b/sys/arch/vax/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.14 2001/11/28 15:34:17 art Exp $ */ +/* $OpenBSD: pmap.h,v 1.15 2001/12/04 23:22:42 art Exp $ */ /* $NetBSD: pmap.h,v 1.37 1999/08/01 13:48:07 ragge Exp $ */ /* @@ -124,7 +124,7 @@ extern struct pmap kernel_pmap_store; /* Routines that are best to define as macros */ #define pmap_phys_address(phys) ((u_int)(phys) << PGSHIFT) #define pmap_copy(a,b,c,d,e) /* Dont do anything */ -#define pmap_update() /* nothing */ +#define pmap_update(pm) /* nothing */ #define pmap_collect(pmap) /* No need so far */ #define pmap_remove(pmap, start, slut) pmap_protect(pmap, start, slut, 0) #define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count) |