Page MenuHomeFreeBSD

Add phys_avail allocation routines.
ClosedPublic

Authored by jeff on Aug 13 2019, 5:31 PM.
Tags
None
Referenced Files
F107792893: D21251.diff
Sat, Jan 18, 5:56 AM
Unknown Object (File)
Sat, Jan 4, 12:09 PM
Unknown Object (File)
Wed, Jan 1, 2:06 AM
Unknown Object (File)
Tue, Dec 31, 4:03 PM
Unknown Object (File)
Thu, Dec 26, 12:22 PM
Unknown Object (File)
Sun, Dec 22, 10:05 PM
Unknown Object (File)
Dec 12 2024, 7:33 PM
Unknown Object (File)
Nov 23 2024, 1:02 PM
Subscribers

Details

Summary

This depends on https://reviews.freebsd.org/D21250

To implement a more intelligent early alloc I neded to be able to split phys_avail entries. This really could grow a little more encapsulation so there is less direct list manipulation elsewhere. The primary goal is to enable domain aware early allocation but I also think a little abstraction is nicer.

Some of this code came from Drew at netflix.

Diff Detail

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

Event Timeline

jeff retitled this revision from Add phys_avail processing routines. to Add phys_avail allocation routines..Aug 13 2019, 5:40 PM
jeff edited the summary of this revision. (Show Details)
jeff added reviewers: alc, markj, kib, gallatin.
gallatin added inline comments.
sys/vm/vm_phys.c
1635 ↗(On Diff #60747)

Style nit .. I think these locals should be sorted alphabetically

1699 ↗(On Diff #60747)

In the numa case, would it make sense to iterate to another domain rather than panic?

This revision is now accepted and ready to land.Aug 15 2019, 12:14 AM
kib added inline comments.
sys/vm/vm_phys.c
1604 ↗(On Diff #60747)

phys_avail[i + 1] != 0

1642 ↗(On Diff #60747)

dot at the end of the sentence

1668 ↗(On Diff #60747)

Again, end the sentence with dot.

1672 ↗(On Diff #60747)

!= 0

sys/vm/vm_phys.c
1699 ↗(On Diff #60747)

I think that the startup memory we're allocating should be so small relative to domain memory that if we run into this it indicates another bug.