Remove useless check; vm_pindex_t is unsigned on all architectures.

CID:		3701
Found with:	Coverity Prevent
This commit is contained in:
Edward Tomasz Napierala 2012-10-28 20:03:57 +00:00
parent 322181c98e
commit a406d8c319

View File

@ -1895,7 +1895,7 @@ vm_daemon()
continue;
size = vmspace_resident_count(vm);
if (limit >= 0 && size >= limit) {
if (size >= limit) {
vm_pageout_map_deactivate_pages(
&vm->vm_map, limit);
}