diff options
author | marcel <marcel@FreeBSD.org> | 2013-12-26 05:46:10 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2013-12-26 05:46:10 +0000 |
commit | df5d69cc0da0425416664581e54124acda435772 (patch) | |
tree | 95dfd0f7f9f317551a03909b2bb951761232f030 | |
parent | 87f03cf43ba5aadec822910fbe6141acc79b8ffb (diff) | |
download | FreeBSD-src-df5d69cc0da0425416664581e54124acda435772.zip FreeBSD-src-df5d69cc0da0425416664581e54124acda435772.tar.gz |
For ia64, use pmap_remove_pages() and not pmap_remove(). The problem is
that we don't have a good way (yet) to iterate over the mapped pages by
virtual address and simply try each page within the range. Given that we
call pmap_remove() over the entire 2^63 bytes of address space, it takes
a while for pmap_remove to have tried all 2^50 pages.
By using pmap_remove_pages() we use the PV list to find all mappings.
Change derived from a patch by: alc
-rw-r--r-- | sys/vm/vm_pageout.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index e19ef1f..60d1476 100644 --- a/sys/vm/vm_pageout.c +++ b/sys/vm/vm_pageout.c @@ -875,6 +875,14 @@ vm_pageout_map_deactivate_pages(map, desired) tmpe = tmpe->next; } +#ifdef __ia64__ + /* + * Remove all non-wired, managed mappings if a process is swapped out. + * This will free page table pages. + */ + if (desired == 0) + pmap_remove_pages(map->pmap); +#else /* * Remove all mappings if a process is swapped out, this will free page * table pages. @@ -883,6 +891,8 @@ vm_pageout_map_deactivate_pages(map, desired) pmap_remove(vm_map_pmap(map), vm_map_min(map), vm_map_max(map)); } +#endif + vm_map_unlock(map); } #endif /* !defined(NO_SWAPPING) */ |