The variable "breakout" is used like a Boolean, so actually define it as

one.

Reviewed by:	kib
MFC after:	5 days
This commit is contained in:
Alan Cox 2017-06-05 18:07:56 +00:00
parent 064650c180
commit 3e78e98337
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=319605

View File

@ -1855,6 +1855,7 @@ vm_pageout_oom(int shortage)
vm_offset_t size, bigsize;
struct thread *td;
struct vmspace *vm;
bool breakout;
/*
* We keep the process bigproc locked once we find it to keep anyone
@ -1868,8 +1869,6 @@ vm_pageout_oom(int shortage)
bigsize = 0;
sx_slock(&allproc_lock);
FOREACH_PROC_IN_SYSTEM(p) {
int breakout;
PROC_LOCK(p);
/*
@ -1886,7 +1885,7 @@ vm_pageout_oom(int shortage)
* If the process is in a non-running type state,
* don't touch it. Check all the threads individually.
*/
breakout = 0;
breakout = false;
FOREACH_THREAD_IN_PROC(p, td) {
thread_lock(td);
if (!TD_ON_RUNQ(td) &&
@ -1895,7 +1894,7 @@ vm_pageout_oom(int shortage)
!TD_IS_SUSPENDED(td) &&
!TD_IS_SWAPPED(td)) {
thread_unlock(td);
breakout = 1;
breakout = true;
break;
}
thread_unlock(td);