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)
Fri, Jul 3, 4:48 AM
Unknown Object (File)
Sun, Jun 21, 1:59 PM
Unknown Object (File)
Sat, Jun 13, 3:27 AM
Unknown Object (File)
Sun, Jun 7, 7:30 AM
Unknown Object (File)
Sun, Jun 7, 4:36 AM
Unknown Object (File)
May 18 2026, 12:45 PM
Unknown Object (File)
May 18 2026, 2:10 AM
Unknown Object (File)
May 18 2026, 2:10 AM
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.