Page MenuHomeFreeBSD

vm_pageout_scan_active: ensure ps_delta is initialized
ClosedPublic

Authored by vangyzen on Aug 27 2020, 3:08 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Apr 14, 1:25 PM
Unknown Object (File)
Mon, Apr 14, 11:36 AM
Unknown Object (File)
Mon, Apr 14, 11:24 AM
Unknown Object (File)
Mon, Apr 14, 6:54 AM
Unknown Object (File)
Mon, Apr 14, 12:52 AM
Unknown Object (File)
Sun, Apr 13, 11:14 PM
Unknown Object (File)
Sun, Apr 13, 11:13 PM
Unknown Object (File)
Sat, Apr 12, 6:38 PM
Subscribers

Details

Summary

Ensure ps_delta is initialized.

Reported by: Coverity

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 33194
Build 30541: arc lint + arc unit

Event Timeline

sys/vm/vm_pageout.c
1293

I guess this is the only case where we can end up with a bogus ps_delta. It should be quite rare.

The assignment should go here, not at the top of the loop. We only break from the loop when the atomic_fcmpset at the end succeeds. In one iteration we might set ps_delta to a nonzero value, fail the update, and then exit the loop through this case, in which case ps_delta will be left equal to the old and now-incorrect value.

  • move init to the right place
vangyzen added inline comments.
sys/vm/vm_pageout.c
1293

Indeed. Thank you.

This revision is now accepted and ready to land.Aug 27 2020, 4:34 PM
This revision was automatically updated to reflect the committed changes.
vangyzen marked an inline comment as done.