Page MenuHomeFreeBSD

vm: Remove handling for OBJT_DEFAULT objects
ClosedPublic

Authored by markj on Jul 12 2022, 4:22 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Feb 25, 3:57 PM
Unknown Object (File)
Sun, Feb 23, 4:20 PM
Unknown Object (File)
Sat, Feb 22, 10:34 PM
Unknown Object (File)
Tue, Feb 18, 11:06 PM
Unknown Object (File)
Jan 27 2025, 2:53 AM
Unknown Object (File)
Jan 12 2025, 8:02 AM
Unknown Object (File)
Dec 5 2024, 2:13 PM
Unknown Object (File)
Nov 18 2024, 1:41 PM
Subscribers

Details

Summary

Now that OBJT_DEFAULT objects can't be instantiated, we can simplify
various checks of the form `object->type == OBJT_DEFAULT ||
(object->flags & OBJ_SWAP) != 0`. No functional change intended.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 46404
Build 43293: arc lint + arc unit

Event Timeline

markj requested review of this revision.Jul 12 2022, 4:22 PM
This revision is now accepted and ready to land.Jul 12 2022, 4:55 PM

Remove a stale comment from vm_object_split().

This revision now requires review to proceed.Jul 13 2022, 1:23 PM
alc added inline comments.
sys/vm/vm_object.c
1526–1527

As an aside, I don't see why we pass a charge to vm_object_allocate_anon(). Currently, the passed charge is always equal to ptoa(size). Moreover, I'm skeptical that there will be a future scenario where it differs.

This revision is now accepted and ready to land.Jul 13 2022, 3:05 PM
This revision was automatically updated to reflect the committed changes.