Good evening,
I noticed while compiling ... has a redundant "limit >= 0". Is this worthy of a bug report?
(limit is an unsigned long long)
in vm_pageout.c (vm_daemon) line 1721
I noticed while compiling ... has a redundant "limit >= 0". Is this worthy of a bug report?
(limit is an unsigned long long)
in vm_pageout.c (vm_daemon) line 1721
Code:
vm_pindex_t limit;
if (limit >= 0 && size >= limit) {
vm_pageout_map_deactivate_pages(&vm->vm_map, limit);
}