Page MenuHomeFreeBSD

Avoid unneeded lookups in vm_page_init_page().
ClosedPublic

Authored by markj on Nov 27 2017, 4:41 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Jul 16, 5:08 AM
Unknown Object (File)
Thu, Jul 16, 2:11 AM
Unknown Object (File)
Sun, Jul 12, 1:45 PM
Unknown Object (File)
May 30 2026, 8:28 AM
Unknown Object (File)
May 30 2026, 3:28 AM
Unknown Object (File)
May 30 2026, 12:36 AM
Unknown Object (File)
May 28 2026, 2:15 PM
Unknown Object (File)
Apr 26 2026, 1:08 PM
Subscribers
None

Details

Summary

In vm_page_startup(), we were performing two vm_phys_segs searches per
page to look up information that we already have. I don't think it's an
abstraction violation to avoid the lookups given how much
vm_page_startup() already knows about the phys segs array.

Garbage-collect the now-unused vm_phys_paddr_to_segind() function.

This reduced the number of cycles spent initializing vm_page_array by
13% on a desktop Ivy Bridge system that I tested.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable