Remove the function vm_page_find_least and in the place it is used, replace it with vm_radix_lookup_ge().
Details
Details
Diff Detail
Diff Detail
- Repository
 - rG FreeBSD src repository
 - Lint
 Lint Not Applicable - Unit
 Tests Not Applicable 
Event Timeline
Comment Actions
Anyone calling vm_page_find_least(object, pindex) from ports code should now use
vm_radix_object_ge(&object->rtree, pindex);
You'll probably need to include <vm/vm_radix.h>.