Page MenuHomeFreeBSD

vm: Honour the "noreuse" flag to vm_page_unwire_managed()
ClosedPublic

Authored by markj on Feb 9 2021, 4:27 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 21, 2:28 PM
Unknown Object (File)
Wed, Mar 18, 6:59 AM
Unknown Object (File)
Tue, Mar 17, 4:04 AM
Unknown Object (File)
Mon, Mar 16, 7:54 AM
Unknown Object (File)
Feb 28 2026, 7:18 AM
Unknown Object (File)
Feb 10 2026, 5:27 AM
Unknown Object (File)
Feb 9 2026, 10:15 AM
Unknown Object (File)
Feb 9 2026, 12:08 AM
Subscribers

Details

Summary

This flag indicates that the page should be enqueued near the head of
the inactive queue, skipping the LRU queue. It is used when unwiring
pages from the buffer cache following direct I/O or after I/O when
POSIX_FADV_NOREUSE or _DONTNEED advice was specified, or when
sendfile(SF_NOCACHE) completes. For the direct I/O and sendfile cases
we only enqueue the page if we decide not to free it, typically because
it's mapped.

Pass "noreuse" through to vm_page_release_toq() so that we actually
honour the desired LRU policy.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable