Restore loop break in vm_pageout_lowmem().

r355004 removed return statement from this loop with intention to also
call uma_reclaim_wakeup().  But in case of vm.lowmem_period=0 it causes
infinite loop.

Reviewed by:	markj
Sponsored by:	iXsystems, Inc.
This commit is contained in:
mav 2020-01-14 03:27:57 +00:00
parent db12eb3fcd
commit 46f2095782

View File

@ -1974,6 +1974,7 @@ vm_pageout_lowmem(void)
*/
uma_reclaim(UMA_RECLAIM_TRIM);
ret = true;
break;
}
/*