malloc: Add madvise support for Transparent Huge Pages
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 13 Aug 2021 11:36:29 +0000 (08:36 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 15 Dec 2021 20:35:14 +0000 (17:35 -0300)
commit5f6d8d97c69748180f0031dfa385aff75062c4d5
tree97837a8eab4175385c32bacb10dc633b9070f266
parentcb976fba4c51ede7bf8cee5035888527c308dfbc
malloc: Add madvise support for Transparent Huge Pages

Linux Transparent Huge Pages (THP) current supports three different
states: 'never', 'madvise', and 'always'.  The 'never' is
self-explanatory and 'always' will enable THP for all anonymous
pages.  However, 'madvise' is still the default for some system and
for such case THP will be only used if the memory range is explicity
advertise by the program through a madvise(MADV_HUGEPAGE) call.

To enable it a new tunable is provided, 'glibc.malloc.hugetlb',
where setting to a value diffent than 0 enables the madvise call.

This patch issues the madvise(MADV_HUGEPAGE) call after a successful
mmap() call at sysmalloc() with sizes larger than the default huge
page size.  The madvise() call is disable is system does not support
THP or if it has the mode set to "never" and on Linux only support
one page size for THP, even if the architecture supports multiple
sizes.

To test is a new rule is added tests-malloc-hugetlb1, which run the
addes tests with the required GLIBC_TUNABLE setting.

Checked on x86_64-linux-gnu.

Reviewed-by: DJ Delorie <dj@redhat.com>
13 files changed:
NEWS
Rules
elf/dl-tunables.list
elf/tst-rtld-list-tunables.exp
malloc/Makefile
malloc/arena.c
malloc/malloc-internal.h
malloc/malloc.c
manual/tunables.texi
sysdeps/generic/Makefile
sysdeps/generic/malloc-hugepages.c [new file with mode: 0644]
sysdeps/generic/malloc-hugepages.h [new file with mode: 0644]
sysdeps/unix/sysv/linux/malloc-hugepages.c [new file with mode: 0644]