Page MenuHomeFreeBSD

kboot: Allocate a really big first segment
ClosedPublic

Authored by imp on Feb 1 2023, 6:24 AM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Sep 23, 9:28 AM
Unknown Object (File)
Tue, Sep 10, 2:21 AM
Unknown Object (File)
Sun, Sep 8, 8:35 AM
Unknown Object (File)
Thu, Sep 5, 10:01 PM
Unknown Object (File)
Wed, Sep 4, 8:33 AM
Unknown Object (File)
Sat, Aug 31, 11:32 AM
Unknown Object (File)
Aug 21 2024, 4:33 PM
Unknown Object (File)
Aug 21 2024, 4:33 PM
Subscribers

Details

Summary

Allocate a huge segment for the first kexec_load segments. We limit the
lessor of:
allocation to the size of the remaining memory segment
45% of available memory
95% of the memory we can allocate

This allows us to have really large RAM disks. We likely need to limit
this to the amount we actually used, though, since this can be a lot of
memory.

We have to do this complicated calculation for a few reasons: First, we
need 2 copies of the loaded kernel in the memory: The kernel can copy
everything to a temporary buffer. Next, malloc (via mmap) is limited to
a certain amount due to over commit, so we have to not allocate all we
can (only most of what we can).

Sponsored by: Netflix

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable