mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-04 22:49:32 +03:00
new Linux/Android option proposal.
Allowing to disable transparent huge pages on Linux/Android, so we avoid affecting the whole system (such as /sys/kernel/mm/transparent_hugepage/enabled).
This commit is contained in:
parent
36ee5f9024
commit
388d1aa9bd
2 changed files with 25 additions and 0 deletions
|
@ -28,6 +28,7 @@ option(MI_DEBUG_UBSAN "Build with undefined-behavior sanitizer (needs clan
|
||||||
option(MI_SKIP_COLLECT_ON_EXIT "Skip collecting memory on program exit" OFF)
|
option(MI_SKIP_COLLECT_ON_EXIT "Skip collecting memory on program exit" OFF)
|
||||||
option(MI_NO_PADDING "Force no use of padding even in DEBUG mode etc." OFF)
|
option(MI_NO_PADDING "Force no use of padding even in DEBUG mode etc." OFF)
|
||||||
option(MI_INSTALL_TOPLEVEL "Install directly into $CMAKE_INSTALL_PREFIX instead of PREFIX/lib/mimalloc-version" OFF)
|
option(MI_INSTALL_TOPLEVEL "Install directly into $CMAKE_INSTALL_PREFIX instead of PREFIX/lib/mimalloc-version" OFF)
|
||||||
|
option(MI_NO_THP "Force disable transparent huge pages support on Linux/Android process wise only" OFF)
|
||||||
|
|
||||||
# deprecated options
|
# deprecated options
|
||||||
option(MI_CHECK_FULL "Use full internal invariant checking in DEBUG mode (deprecated, use MI_DEBUG_FULL instead)" OFF)
|
option(MI_CHECK_FULL "Use full internal invariant checking in DEBUG mode (deprecated, use MI_DEBUG_FULL instead)" OFF)
|
||||||
|
@ -263,6 +264,14 @@ if(MI_USE_CXX)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux|Android")
|
||||||
|
if(MI_NO_THP)
|
||||||
|
message(STATUS "Disable transparent huge pages support (MI_NO_THP=ON)")
|
||||||
|
list(APPEND mi_defines MI_NO_THP=1)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
if(CMAKE_SYSTEM_NAME MATCHES "Haiku")
|
if(CMAKE_SYSTEM_NAME MATCHES "Haiku")
|
||||||
SET(CMAKE_INSTALL_LIBDIR ~/config/non-packaged/lib)
|
SET(CMAKE_INSTALL_LIBDIR ~/config/non-packaged/lib)
|
||||||
SET(CMAKE_INSTALL_INCLUDEDIR ~/config/non-packaged/headers)
|
SET(CMAKE_INSTALL_INCLUDEDIR ~/config/non-packaged/headers)
|
||||||
|
|
|
@ -31,6 +31,7 @@ terms of the MIT license. A copy of the license can be found in the file
|
||||||
#if defined(__linux__)
|
#if defined(__linux__)
|
||||||
#include <features.h>
|
#include <features.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <sys/prctl.h>
|
||||||
#if defined(__GLIBC__)
|
#if defined(__GLIBC__)
|
||||||
#include <linux/mman.h> // linux mmap flags
|
#include <linux/mman.h> // linux mmap flags
|
||||||
#else
|
#else
|
||||||
|
@ -125,6 +126,20 @@ static bool unix_detect_overcommit(void) {
|
||||||
return os_overcommit;
|
return os_overcommit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void unix_set_thp(void) {
|
||||||
|
#if defined(__linux__) || defined(__ANDROID__)
|
||||||
|
#if MI_NO_THP
|
||||||
|
int val;
|
||||||
|
if (prctl(PR_GET_THP_DISABLE, &val, 0, 0, 0) != 0) {
|
||||||
|
// Most likely since distros often come with always/madvise settings.
|
||||||
|
val = 1;
|
||||||
|
// Disabling only for mimalloc process rather than touching system wide settings
|
||||||
|
(void)prctl(PR_SET_THP_DISABLE, &val, 0, 0, 0);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
void _mi_prim_mem_init( mi_os_mem_config_t* config ) {
|
void _mi_prim_mem_init( mi_os_mem_config_t* config ) {
|
||||||
long psize = sysconf(_SC_PAGESIZE);
|
long psize = sysconf(_SC_PAGESIZE);
|
||||||
if (psize > 0) {
|
if (psize > 0) {
|
||||||
|
@ -135,6 +150,7 @@ void _mi_prim_mem_init( mi_os_mem_config_t* config ) {
|
||||||
config->has_overcommit = unix_detect_overcommit();
|
config->has_overcommit = unix_detect_overcommit();
|
||||||
config->must_free_whole = false; // mmap can free in parts
|
config->must_free_whole = false; // mmap can free in parts
|
||||||
config->has_virtual_reserve = true; // todo: check if this true for NetBSD? (for anonymous mmap with PROT_NONE)
|
config->has_virtual_reserve = true; // todo: check if this true for NetBSD? (for anonymous mmap with PROT_NONE)
|
||||||
|
unix_set_thp();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue