Page MenuHomeFreeBSD

vm_page_unswappable: remove wrong assertion
ClosedPublic

Authored by vangyzen on Nov 9 2022, 8:19 PM.
Tags
None
Referenced Files
F172684087: D37320.id.diff
Sun, Sep 20, 5:07 AM
Unknown Object (File)
Wed, Sep 16, 4:14 AM
Unknown Object (File)
Sun, Sep 6, 3:30 PM
Unknown Object (File)
Sun, Sep 6, 2:41 AM
Unknown Object (File)
Sat, Sep 5, 11:09 AM
Unknown Object (File)
Sat, Sep 5, 8:44 AM
Unknown Object (File)
Sat, Sep 5, 3:24 AM
Unknown Object (File)
Fri, Sep 4, 6:40 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.