Page MenuHomeFreeBSD

vm_page_unswappable: remove wrong assertion
ClosedPublic

Authored by vangyzen on Nov 9 2022, 8:19 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Oct 21, 4:43 AM
Unknown Object (File)
Mon, Oct 20, 12:04 AM
Unknown Object (File)
Sun, Oct 19, 1:39 AM
Unknown Object (File)
Tue, Sep 30, 5:17 AM
Unknown Object (File)
Sep 8 2025, 7:43 PM
Unknown Object (File)
Sep 2 2025, 6:14 AM
Unknown Object (File)
Sep 1 2025, 8:03 PM
Unknown Object (File)
Aug 30 2025, 11:50 PM
Subscribers

Details

Summary

markj says:

...the assertion is incorrect and should simply be removed.
It has been racy since we removed the use of the page hash
lock to synchronize wiring of pages.

PR: 267621

Diff Detail

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

Event Timeline

markj added inline comments.
sys/vm/vm_page.c
4203–4204

ASSERT_LOCKED is sufficient. The intent is that nothing should be concurrently freeing the page; a read lock on the object suffices for that.

This revision is now accepted and ready to land.Nov 9 2022, 8:21 PM
This revision was automatically updated to reflect the committed changes.