[Bug dynamic-link/34080] Support THP segment load with THP enabled with madvise
"cvs-commit at gcc dot gnu.org via Glibc-bugs" <[email protected]> Fri, 19 Jun 2026 22:17:20 +0000
| Newsgroups | gmane.comp.lib.glibc.bugs |
|---|---|
| Message-ID | <[email protected]/bugzilla/> |
https://sourceware.org/bugzilla/show_bug.cgi?id=34080 --- Comment #1 from Sourceware Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by H.J. Lu <[email protected]>: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=53d909a283085c82bdcc71e1cf06c0899506b664 commit 53d909a283085c82bdcc71e1cf06c0899506b664 Author: H.J. Lu <[email protected]> Date: Mon Apr 13 08:23:05 2026 +0800 elf: Support THP segment load with madvise enabled THP The current THP segment load approach works only when THP is enabled with always in the kernel. If THP is enabled with madvise in the kernel, to enable THP segment load in an application, madvise should be called with MADV_HUGEPAGE on all THP eligible PT_LOAD segments: 1. Define DL_MAP_DEFAULT_THP_PAGESIZE in hugepages.h and default it to 0. If DL_MAP_DEFAULT_THP_PAGESIZE is defined, assume kernel THP madvise mode. If kernel THP mode is always or never, there is an extra madvise call which has no impact. DL_MAP_DEFAULT_THP_PAGESIZE is defined for x86-64 and 64-bit loongarch. 2. Update _dl_map_segment_align to support madvise THP mode. This fixes BZ #34079. 3. Call _dl_executable_postprocess in rtld_setup_main_map for dynamic executables and in LIBC_START_MAIN for static executables, which calls madvise with MADV_HUGEPAGE on all THP eligible PT_LOAD segments in executable. This fixes BZ #34080 for both dynamic and static executables. 4. Call _dl_postprocess_loadcmd_extra in _dl_postprocess_loadcmd, which calls madvise with MADV_HUGEPAGE on all THP eligible PT_LOAD segments when loading an object after they have been mapped in. This fixes BZ #34080 for shared objects. 5. Set the maximum page alignment on THP tests to THP page size as the default maximum page alignment may be smaller than THP page size. 6. Add tests to verify that large executable PT_LOAD segments in executables are mapped at addresses aligned to THP page size when the kernel is configured to use THP in "always" mode or "madvise" mode by inspecting /proc/self/maps to check that the mapping address is aligned to THP page size reported by the kernel. Also verify that madvise is called with MADV_HUGEPAGE when the glibc tunable glibc.elf.thp=1 is used and madvise isn't called with MADV_HUGEPAGE when the glibc tunable glibc.elf.thp=0 is used. Skip these tests if THP page size cannot be determined or if THP is not enabled in "always" mode nor "madvise" mode. Quote WANG Rui <[email protected]>: From benchmarking a clang build of the Linux kernel on x86_64 with your patch in THP madvise mode, I observed that iTLB misses were reduced, similar to what we see in THP always mode. NB: Some THP tests fail on arm due to limitations of arm32 kABI: https://sourceware.org/bugzilla/show_bug.cgi?id=34096 Signed-off-by: H.J. Lu <[email protected]> Reviewed-by: Adhemerval Zanella <[email protected]> -- You are receiving this mail because: You are on the CC list for the bug.