Currently, priv_default_hugepage on Linux always returns None.
Implementing it consists of parsing /proc/meminfo looking for a line of the form Hugepagesize: xxx kB. What makes this tricky is that it has to be done using only libc, and without heap allocation.
Mentor: @joshlf
Currently,
priv_default_hugepageon Linux always returns None.Implementing it consists of parsing
/proc/meminfolooking for a line of the formHugepagesize: xxx kB. What makes this tricky is that it has to be done using onlylibc, and without heap allocation.Mentor: @joshlf