Revert r212360 now that PowerPC can handle large sparse arguments to

pmap_remove() (changed in r228412).

MFC after:	2 weeks
This commit is contained in:
Nathan Whitehorn 2012-01-17 00:31:09 +00:00
parent 292177e67a
commit 8d01a3b281
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=230247

View file

@ -714,11 +714,8 @@ vm_pageout_map_deactivate_pages(map, desired)
* table pages.
*/
if (desired == 0 && nothingwired) {
tmpe = map->header.next;
while (tmpe != &map->header) {
pmap_remove(vm_map_pmap(map), tmpe->start, tmpe->end);
tmpe = tmpe->next;
}
pmap_remove(vm_map_pmap(map), vm_map_min(map),
vm_map_max(map));
}
vm_map_unlock(map);
}