0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-21 12:39:08 +01:00
mongodb/evergreen/prelude_system_env_variables.sh
Zack Winter 1dde2576ec SERVER-90036 Set glibc.pthread.rseq on evergreen variants with glibc version >= 2.34 (#21713)
GitOrigin-RevId: 376c345d34577098b95aedbc9daa2a7b937497f4
2024-05-03 02:11:38 +00:00

26 lines
931 B
Bash
Executable File

#!/bin/bash
get_glibc_version() {
getconf GNU_LIBC_VERSION | cut -d ' ' -f 2
}
# Systems with glibc 2.34 or newer register custom rseq ABI
# behavior that is incompatible with the new TCMalloc, and will cause
# TCMalloc's rseq functionality to break and fall back to the per-thread
# cache behavior. Systems with an older glibc version will successfully
# use TCMalloc's per-CPU caches. We must ensure this environment variable is
# set on problematic systems.
configure_glibc_pthread_req() {
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
local ver="$(get_glibc_version)"
local major="$(echo $ver | cut -d '.' -f 1)"
local minor="$(echo $ver | cut -d '.' -f 2)"
if ((major > 2 || ((major == 2 && minor >= 34)))); then
export GLIBC_TUNABLES="glibc.pthread.rseq=0"
echo "glibc version >= 2.34 detected, setting env variable GLIBC_TUNABLES=glibc.pthread.rseq=0"
fi
fi
}
configure_glibc_pthread_req