diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2007-04-11 12:10:43 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2007-04-11 12:10:43 +0000 |
commit | 45b5f5562300b1b582a88e47df07ff5c316e8f68 (patch) | |
tree | 2e986c1b5df798d88908e4d0e3fa145b6577c355 /sys/arch/arm | |
parent | 249cd96ad0ce1ab417c7c97f8dde0be8604cce01 (diff) |
Instead of managing pages for intrsafe maps in special objects (aka.
kmem_object) just so that we can remove them, just use pmap_extract
to get the pages to free and simplify a lot of code to not deal with
the list of intrsafe maps, intrsafe objects, etc.
miod@ ok
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/arm/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/arm/pmap.c b/sys/arch/arm/arm/pmap.c index 6f234a8f70b..77fe39dbd37 100644 --- a/sys/arch/arm/arm/pmap.c +++ b/sys/arch/arm/arm/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.9 2007/02/03 16:48:23 miod Exp $ */ +/* $OpenBSD: pmap.c,v 1.10 2007/04/11 12:10:42 art Exp $ */ /* $NetBSD: pmap.c,v 1.147 2004/01/18 13:03:50 scw Exp $ */ /* @@ -4071,7 +4071,7 @@ pmap_init(void) /* * Now we need to free enough pv_entry structures to allow us to get - * the kmem_map/kmem_object allocated and inited (done after this + * the kmem_map allocated and inited (done after this * function is finished). to do this we allocate one bootstrap page out * of kernel_map and use it to provide an initial pool of pv_entry * structures. we never free this page. |