2017-01-01 00:14:16 +00:00
|
|
|
# Copyright (C) 2016-2017 Free Software Foundation, Inc.
|
2016-12-31 18:02:17 +00:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with the GNU C Library; if not, see
|
|
|
|
# <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Allowed attributes for tunables:
|
|
|
|
#
|
|
|
|
# type: Defaults to STRING
|
|
|
|
# minval: Optional minimum acceptable value
|
|
|
|
# maxval: Optional maximum acceptable value
|
|
|
|
# env_alias: An alias environment variable
|
2017-02-02 10:16:01 +00:00
|
|
|
# security_level: Specify security level of the tunable. Valid values are:
|
|
|
|
#
|
|
|
|
# SXID_ERASE: (default) Don't read for AT_SECURE binaries and
|
|
|
|
# removed so that child processes can't read it.
|
|
|
|
# SXID_IGNORE: Don't read for AT_SECURE binaries, but retained for
|
|
|
|
# non-AT_SECURE subprocesses.
|
2017-03-24 05:38:28 +00:00
|
|
|
# NONE: Read all the time.
|
2016-12-31 18:02:17 +00:00
|
|
|
|
|
|
|
glibc {
|
|
|
|
malloc {
|
|
|
|
check {
|
|
|
|
type: INT_32
|
|
|
|
minval: 0
|
|
|
|
maxval: 3
|
|
|
|
env_alias: MALLOC_CHECK_
|
|
|
|
}
|
|
|
|
top_pad {
|
|
|
|
type: SIZE_T
|
|
|
|
env_alias: MALLOC_TOP_PAD_
|
2017-02-02 10:16:01 +00:00
|
|
|
security_level: SXID_IGNORE
|
2016-12-31 18:02:17 +00:00
|
|
|
}
|
|
|
|
perturb {
|
|
|
|
type: INT_32
|
|
|
|
minval: 0
|
|
|
|
maxval: 0xff
|
|
|
|
env_alias: MALLOC_PERTURB_
|
2017-02-02 10:16:01 +00:00
|
|
|
security_level: SXID_IGNORE
|
2016-12-31 18:02:17 +00:00
|
|
|
}
|
|
|
|
mmap_threshold {
|
|
|
|
type: SIZE_T
|
|
|
|
env_alias: MALLOC_MMAP_THRESHOLD_
|
2017-02-02 10:16:01 +00:00
|
|
|
security_level: SXID_IGNORE
|
2016-12-31 18:02:17 +00:00
|
|
|
}
|
|
|
|
trim_threshold {
|
|
|
|
type: SIZE_T
|
|
|
|
env_alias: MALLOC_TRIM_THRESHOLD_
|
2017-02-02 10:16:01 +00:00
|
|
|
security_level: SXID_IGNORE
|
2016-12-31 18:02:17 +00:00
|
|
|
}
|
|
|
|
mmap_max {
|
|
|
|
type: INT_32
|
|
|
|
env_alias: MALLOC_MMAP_MAX_
|
2017-02-02 10:16:01 +00:00
|
|
|
security_level: SXID_IGNORE
|
2016-12-31 18:02:17 +00:00
|
|
|
}
|
|
|
|
arena_max {
|
|
|
|
type: SIZE_T
|
|
|
|
env_alias: MALLOC_ARENA_MAX
|
|
|
|
minval: 1
|
2017-02-02 10:16:01 +00:00
|
|
|
security_level: SXID_IGNORE
|
2016-12-31 18:02:17 +00:00
|
|
|
}
|
|
|
|
arena_test {
|
|
|
|
type: SIZE_T
|
|
|
|
env_alias: MALLOC_ARENA_TEST
|
|
|
|
minval: 1
|
2017-02-02 10:16:01 +00:00
|
|
|
security_level: SXID_IGNORE
|
2016-12-31 18:02:17 +00:00
|
|
|
}
|
2017-07-06 17:37:30 +00:00
|
|
|
tcache_max {
|
|
|
|
type: SIZE_T
|
|
|
|
security_level: SXID_ERASE
|
|
|
|
}
|
|
|
|
tcache_count {
|
|
|
|
type: SIZE_T
|
|
|
|
security_level: SXID_ERASE
|
|
|
|
}
|
|
|
|
tcache_unsorted_limit {
|
|
|
|
type: SIZE_T
|
|
|
|
security_level: SXID_ERASE
|
|
|
|
}
|
2016-12-31 18:02:17 +00:00
|
|
|
}
|
2017-04-17 04:30:35 +00:00
|
|
|
tune {
|
|
|
|
hwcap_mask {
|
|
|
|
type: UINT_64
|
|
|
|
env_alias: LD_HWCAP_MASK
|
|
|
|
default: HWCAP_IMPORTANT
|
tunables: Add IFUNC selection and cache sizes
The current IFUNC selection is based on microbenchmarks in glibc. It
should give the best performance for most workloads. But other choices
may have better performance for a particular workload or on the hardware
which wasn't available at the selection was made. The environment
variable, GLIBC_TUNABLES=glibc.tune.ifunc=-xxx,yyy,-zzz...., can be used
to enable CPU/ARCH feature yyy, disable CPU/ARCH feature yyy and zzz,
where the feature name is case-sensitive and has to match the ones in
cpu-features.h. It can be used by glibc developers to override the
IFUNC selection to tune for a new processor or improve performance for
a particular workload. It isn't intended for normal end users.
NOTE: the IFUNC selection may change over time. Please check all
multiarch implementations when experimenting.
Also, GLIBC_TUNABLES=glibc.tune.x86_non_temporal_threshold=NUMBER is
provided to set threshold to use non temporal store to NUMBER,
GLIBC_TUNABLES=glibc.tune.x86_data_cache_size=NUMBER to set data cache
size, GLIBC_TUNABLES=glibc.tune.x86_shared_cache_size=NUMBER to set
shared cache size.
* elf/dl-tunables.list (tune): Add ifunc,
x86_non_temporal_threshold,
x86_data_cache_size and x86_shared_cache_size.
* manual/tunables.texi: Document glibc.tune.ifunc,
glibc.tune.x86_data_cache_size, glibc.tune.x86_shared_cache_size
and glibc.tune.x86_non_temporal_threshold.
* sysdeps/unix/sysv/linux/x86/dl-sysdep.c: New file.
* sysdeps/x86/cpu-tunables.c: Likewise.
* sysdeps/x86/cacheinfo.c
(init_cacheinfo): Check and get data cache size, shared cache
size and non temporal threshold from cpu_features.
* sysdeps/x86/cpu-features.c [HAVE_TUNABLES] (TUNABLE_NAMESPACE):
New.
[HAVE_TUNABLES] Include <unistd.h>.
[HAVE_TUNABLES] Include <elf/dl-tunables.h>.
[HAVE_TUNABLES] (TUNABLE_CALLBACK (set_ifunc)): Likewise.
[HAVE_TUNABLES] (init_cpu_features): Use TUNABLE_GET to set
IFUNC selection, data cache size, shared cache size and non
temporal threshold.
* sysdeps/x86/cpu-features.h (cpu_features): Add data_cache_size,
shared_cache_size and non_temporal_threshold.
2017-06-20 15:33:29 +00:00
|
|
|
}
|
2017-04-17 04:30:35 +00:00
|
|
|
}
|
2016-12-31 18:02:17 +00:00
|
|
|
}
|