Page MenuHomeFreeBSD

Prevent ticks rollover from preventing vm_lowmem event
ClosedPublic

Authored by rstone on Aug 20 2015, 3:07 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Nov 3, 5:38 AM
Unknown Object (File)
Mon, Oct 27, 4:46 AM
Unknown Object (File)
Sat, Oct 25, 8:13 AM
Unknown Object (File)
Fri, Oct 24, 10:46 PM
Unknown Object (File)
Sun, Oct 12, 2:29 PM
Unknown Object (File)
Sep 28 2025, 1:23 AM
Unknown Object (File)
Sep 26 2025, 12:18 AM
Unknown Object (File)
Sep 8 2025, 12:47 AM
Subscribers

Details

Summary

Currently vm_pageout_scan() uses a ticks-based scheme to rate-limit
the number of times that the vm_lowmem event will happen. However
if no events happen for long enough for ticks to roll over, this
leaves us in a long window in which vm_lowmem events will not
happen.

Replace the use of ticks with time_t to prevent rollover from ever
being an issue.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 169
Build 169: arc lint + arc unit

Event Timeline

rstone retitled this revision from to Prevent ticks rollover from preventing vm_lowmem event.
rstone edited the test plan for this revision. (Show Details)
rstone updated this object.
ian added a reviewer: ian.
ian added a subscriber: ian.

Looks good to me.

This revision is now accepted and ready to land.Aug 20 2015, 8:05 PM
This revision was automatically updated to reflect the committed changes.