Page MenuHomeFreeBSD

Slightly simplify page queue code.
ClosedPublic

Authored by markj on Aug 20 2019, 2:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 1 2025, 12:22 PM
Unknown Object (File)
Feb 23 2025, 10:45 PM
Unknown Object (File)
Feb 9 2025, 2:34 AM
Unknown Object (File)
Feb 8 2025, 5:30 AM
Unknown Object (File)
Jan 29 2025, 1:33 AM
Unknown Object (File)
Jan 27 2025, 12:52 AM
Unknown Object (File)
Jan 26 2025, 1:39 AM
Unknown Object (File)
Jan 23 2025, 9:23 PM
Subscribers

Details

Summary
  • Add vm_pagequeue_remove(), which updates page queue state as required when removing a page.
  • Get rid of vm_page_pagequeue_lockptr(). When I added it I planned to use it more widely, but it is only used in vm_page_dequeue(). Modify vm_page_pagequeue() to handle a queue index of PQ_NONE, and use it instead. Make it local to vm_page.c; there are no external consumers and page queue management should be limited to vm_page.c and vm_pageout.c.

No functional change intended.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sys/vm/vm_page.c
3342 ↗(On Diff #61044)

I'm not sure that I see the point of this assignment or the variable pq1, since the very first statement within this loop will replace the value assigned here.

  • Remove pq1.
  • Fix an assertion added in r338276. I meant to assert that either the page lock is held or that vm_page_dequeue() is being called from the page allocator. But testing m->order is not right, we have m->order == VM_NFREEORDER for any allocated page, so the assertion didn't really test anything.

Re-add pq1, and reload the page queue pointer only once if a mismatch
is detected after locking the page queue.

This revision is now accepted and ready to land.Aug 20 2019, 7:23 PM
This revision was automatically updated to reflect the committed changes.