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
F102894238: D28555.diff
Mon, Nov 18, 10:24 AM
Unknown Object (File)
Sun, Nov 17, 3:06 AM
Unknown Object (File)
Sun, Nov 17, 12:56 AM
Unknown Object (File)
Sun, Nov 10, 8:58 PM
Unknown Object (File)
Sun, Nov 10, 6:23 PM
Unknown Object (File)
Sat, Nov 9, 10:57 AM
Unknown Object (File)
Sep 28 2024, 11:30 AM
Unknown Object (File)
Sep 28 2024, 9:39 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