Page MenuHomeFreeBSD

acpi: Ensure that the affinity table is maximally coalesced
ClosedPublic

Authored by markj on Dec 15 2020, 2:46 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 23 2024, 12:24 PM
Unknown Object (File)
Feb 4 2024, 3:10 PM
Unknown Object (File)
Jan 8 2024, 2:55 AM
Unknown Object (File)
Jan 5 2024, 8:21 AM
Unknown Object (File)
Jan 2 2024, 5:58 PM
Unknown Object (File)
Dec 28 2023, 4:35 PM
Unknown Object (File)
Dec 23 2023, 3:28 AM
Unknown Object (File)
Dec 12 2023, 8:01 PM

Details

Summary

Apparently the SRAT may contain multiple contiguous segments as separate
entries. For example:

SRAT: Found memory domain 0 addr 0x0 len 0x80000000: enabled
SRAT: Found memory domain 0 addr 0x100000000 len 0x5f70000000: enabled
SRAT: Found memory domain 1 addr 0x6070000000 len 0x3000000000: enabled
SRAT: Found memory domain 1 addr 0x9070000000 len 0x2000000000: enabled
SRAT: Found memory domain 1 addr 0xb070000000 len 0x800000000: enabled
SRAT: Found memory domain 1 addr 0xb870000000 len 0x400000000: enabled

Currently this results in multiple contiguous segments in the affinity
table built from the SRAT, because the SRAT parser assumes that SRAT
entries are already coalesced when possible.

vm_phys_early_startup() uses the affinity table to carve up
phys_avail[] so that each entry is contained in a single domain.
However, when the affinity table contains multiple contiguous entries it
will also result in multiple contiguous phys_avail[] entries.

Then, vm_phys segments are created from phys_avail[] entries. They are
coalesced since r338431, so we end up with vm_phys_segs[] entries that
span multiple phys_avail[] entries.

Finally, at the end of vm_page_startup() we add vm_pages to the vm_phys
freelists. We add a range for each vm_phys_seg[] entry for which there
is a covering phys_avail[] entry. But, the fragmentation of
phys_avail[] entries described above means that we may not add some
segments to the vm_phys allocator, and as a result the system leaves
large amounts of RAM unused.

Fix the problem by ensuring that contiguous entries in the memory
affinity table are coalesced. I think we could instead change
vm_page_startup() to call vm_phys_enqueue_contig() on all subranges
covered by phys_avail[] entry, and that would solve the problem too.

Test Plan

Reported and tested by Don Morris.

Diff Detail

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

Event Timeline

markj requested review of this revision.Dec 15 2020, 2:46 PM
markj edited the test plan for this revision. (Show Details)
markj added reviewers: kib, jhb, alc.
markj added a subscriber: dgmorris_earthlink.net.
This revision is now accepted and ready to land.Dec 15 2020, 3:53 PM
sys/dev/acpica/acpi_pxm.c
357

Don't you need to decrement mem_info[i].start in this case, instead of incrementing mem_info[i].end ?

markj marked an inline comment as done.

Fix coalescing when the new entry appears before an existing one.

This revision now requires review to proceed.Dec 16 2020, 1:29 AM
This revision is now accepted and ready to land.Dec 16 2020, 1:58 AM
vangyzen added inline comments.
sys/dev/acpica/acpi_pxm.c
367

Why did this change from <= to <? With <, the code will incorrectly take the "Overlapping" path when mem immediately follows mem_info[i] but is in a different domain.

Fix another boundary condition.

This revision now requires review to proceed.Dec 17 2020, 5:39 PM
This revision is now accepted and ready to land.Dec 17 2020, 7:01 PM