Page MenuHomeFreeBSD

Move the backing_object chain traversal into its own function.
ClosedPublic

Authored by jeff on Jan 22 2020, 2:59 AM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Nov 21, 1:11 AM
Unknown Object (File)
Fri, Nov 21, 1:11 AM
Unknown Object (File)
Fri, Nov 21, 1:09 AM
Unknown Object (File)
Fri, Nov 21, 1:08 AM
Unknown Object (File)
Thu, Nov 20, 2:28 PM
Unknown Object (File)
Thu, Nov 20, 2:28 PM
Unknown Object (File)
Thu, Nov 20, 2:27 PM
Unknown Object (File)
Thu, Nov 20, 2:15 PM
Subscribers

Details

Summary

This should be functionally identical. In a later diff I collapse the two calls to vm_object_next() into one.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 28835
Build 26843: arc lint + arc unit

Event Timeline

jeff added reviewers: alc, dougm, kib, markj.
jeff set the repository for this revision to rS FreeBSD src repository - subversion.
sys/vm/vm_fault.c
964

In retrospect it might end up making the locking more clear if I split the zero fill off. I would like to do that in a subsequent patch.

sys/vm/vm_fault.c
1193

I perceive that the point of the next label before this change and the new function introduced in its stead is all to avoid wrapping lines 1267-1379 in a giant if (fs.object->type != OBJT_DEFAULT) {} block, with associated indentation, and all the line wrapping that would lead to. It seems that a function to wrap all that code would solve the same problem in a more direct way.

sys/vm/vm_fault.c
1193

Yes definitely. a couple of diffs after this resolve this more cleanly. I just didn't want to post it all at once for fear of burning people out. I wanted to move the large blocks out whole before too much restructuring.

This revision is now accepted and ready to land.Jan 22 2020, 5:04 AM