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