In vm_object_madvise() setting PG_REFERENCED on a page before sleeping on

that page only makes sense if the advice is MADV_WILLNEED.  In that case,
the intention is to activate the page, so discouraging the page daemon
from reclaiming the page makes sense.  In contrast, in the other cases,
MADV_DONTNEED and MADV_FREE, it makes no sense whatsoever to discourage
the page daemon from reclaiming the page by setting PG_REFERENCED.

Wrap a nearby line.

Discussed with:	kib
MFC after:	3 weeks
This commit is contained in:
Alan Cox 2010-04-17 21:14:37 +00:00
parent 1a58736816
commit b11b56b55b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=206770

View File

@ -1205,12 +1205,19 @@ vm_object_madvise(vm_object_t object, vm_pindex_t pindex, int count, int advise)
goto unlock_tobject;
}
if ((m->oflags & VPO_BUSY) || m->busy) {
vm_page_flag_set(m, PG_REFERENCED);
if (advise == MADV_WILLNEED)
/*
* Reference the page before unlocking and
* sleeping so that the page daemon is less
* likely to reclaim it.
*/
vm_page_flag_set(m, PG_REFERENCED);
vm_page_unlock_queues();
if (object != tobject)
VM_OBJECT_UNLOCK(object);
m->oflags |= VPO_WANTED;
msleep(m, VM_OBJECT_MTX(tobject), PDROP | PVM, "madvpo", 0);
msleep(m, VM_OBJECT_MTX(tobject), PDROP | PVM, "madvpo",
0);
VM_OBJECT_LOCK(object);
goto relookup;
}