mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Add glibc.malloc.mxfast tunable
* elf/dl-tunables.list: Add glibc.malloc.mxfast. * manual/tunables.texi: Document it. * malloc/malloc.c (do_set_mxfast): New. (__libc_mallopt): Call it. * malloc/arena.c: Add mxfast tunable. * malloc/tst-mxfast.c: New. * malloc/Makefile: Add it. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2019-08-09 DJ Delorie <dj@redhat.com>
|
||||||
|
|
||||||
|
* elf/dl-tunables.list: Add glibc.malloc.mxfast.
|
||||||
|
* manual/tunables.texi: Document it.
|
||||||
|
* malloc/malloc.c (do_set_mxfast): New.
|
||||||
|
(__libc_mallopt): Call it.
|
||||||
|
* malloc/arena.c: Add mxfast tunable.
|
||||||
|
* malloc/tst-mxfast.c: New.
|
||||||
|
* malloc/Makefile: Add it.
|
||||||
|
|
||||||
2019-08-08 Niklas Hambüchen <mail@nh2.me>
|
2019-08-08 Niklas Hambüchen <mail@nh2.me>
|
||||||
Carlos O'Donell <carlos@redhat.com>
|
Carlos O'Donell <carlos@redhat.com>
|
||||||
|
|
||||||
|
@ -85,6 +85,11 @@ glibc {
|
|||||||
tcache_unsorted_limit {
|
tcache_unsorted_limit {
|
||||||
type: SIZE_T
|
type: SIZE_T
|
||||||
}
|
}
|
||||||
|
mxfast {
|
||||||
|
type: SIZE_T
|
||||||
|
minval: 0
|
||||||
|
security_level: SXID_IGNORE
|
||||||
|
}
|
||||||
}
|
}
|
||||||
cpu {
|
cpu {
|
||||||
hwcap_mask {
|
hwcap_mask {
|
||||||
|
@ -39,6 +39,7 @@ tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
|
|||||||
tst-malloc-too-large \
|
tst-malloc-too-large \
|
||||||
tst-malloc-stats-cancellation \
|
tst-malloc-stats-cancellation \
|
||||||
tst-tcfree1 tst-tcfree2 tst-tcfree3 \
|
tst-tcfree1 tst-tcfree2 tst-tcfree3 \
|
||||||
|
tst-mxfast \
|
||||||
|
|
||||||
tests-static := \
|
tests-static := \
|
||||||
tst-interpose-static-nothread \
|
tst-interpose-static-nothread \
|
||||||
@ -196,6 +197,8 @@ tst-malloc-usable-static-ENV = $(tst-malloc-usable-ENV)
|
|||||||
tst-malloc-usable-tunables-ENV = GLIBC_TUNABLES=glibc.malloc.check=3
|
tst-malloc-usable-tunables-ENV = GLIBC_TUNABLES=glibc.malloc.check=3
|
||||||
tst-malloc-usable-static-tunables-ENV = $(tst-malloc-usable-tunables-ENV)
|
tst-malloc-usable-static-tunables-ENV = $(tst-malloc-usable-tunables-ENV)
|
||||||
|
|
||||||
|
tst-mxfast-ENV = GLIBC_TUNABLES=glibc.malloc.tcache_count=0:glibc.malloc.mxfast=0
|
||||||
|
|
||||||
ifeq ($(experimental-malloc),yes)
|
ifeq ($(experimental-malloc),yes)
|
||||||
CPPFLAGS-malloc.c += -DUSE_TCACHE=1
|
CPPFLAGS-malloc.c += -DUSE_TCACHE=1
|
||||||
else
|
else
|
||||||
|
@ -236,6 +236,7 @@ TUNABLE_CALLBACK_FNDECL (set_tcache_max, size_t)
|
|||||||
TUNABLE_CALLBACK_FNDECL (set_tcache_count, size_t)
|
TUNABLE_CALLBACK_FNDECL (set_tcache_count, size_t)
|
||||||
TUNABLE_CALLBACK_FNDECL (set_tcache_unsorted_limit, size_t)
|
TUNABLE_CALLBACK_FNDECL (set_tcache_unsorted_limit, size_t)
|
||||||
#endif
|
#endif
|
||||||
|
TUNABLE_CALLBACK_FNDECL (set_mxfast, size_t)
|
||||||
#else
|
#else
|
||||||
/* Initialization routine. */
|
/* Initialization routine. */
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@ -323,6 +324,7 @@ ptmalloc_init (void)
|
|||||||
TUNABLE_GET (tcache_unsorted_limit, size_t,
|
TUNABLE_GET (tcache_unsorted_limit, size_t,
|
||||||
TUNABLE_CALLBACK (set_tcache_unsorted_limit));
|
TUNABLE_CALLBACK (set_tcache_unsorted_limit));
|
||||||
# endif
|
# endif
|
||||||
|
TUNABLE_GET (mxfast, size_t, TUNABLE_CALLBACK (set_mxfast));
|
||||||
#else
|
#else
|
||||||
const char *s = NULL;
|
const char *s = NULL;
|
||||||
if (__glibc_likely (_environ != NULL))
|
if (__glibc_likely (_environ != NULL))
|
||||||
|
@ -5115,6 +5115,19 @@ do_set_tcache_unsorted_limit (size_t value)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static inline int
|
||||||
|
__always_inline
|
||||||
|
do_set_mxfast (size_t value)
|
||||||
|
{
|
||||||
|
if (value >= 0 && value <= MAX_FAST_SIZE)
|
||||||
|
{
|
||||||
|
LIBC_PROBE (memory_mallopt_mxfast, 2, value, get_max_fast ());
|
||||||
|
set_max_fast (value);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
__libc_mallopt (int param_number, int value)
|
__libc_mallopt (int param_number, int value)
|
||||||
{
|
{
|
||||||
@ -5134,13 +5147,7 @@ __libc_mallopt (int param_number, int value)
|
|||||||
switch (param_number)
|
switch (param_number)
|
||||||
{
|
{
|
||||||
case M_MXFAST:
|
case M_MXFAST:
|
||||||
if (value >= 0 && value <= MAX_FAST_SIZE)
|
do_set_mxfast (value);
|
||||||
{
|
|
||||||
LIBC_PROBE (memory_mallopt_mxfast, 2, value, get_max_fast ());
|
|
||||||
set_max_fast (value);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
res = 0;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case M_TRIM_THRESHOLD:
|
case M_TRIM_THRESHOLD:
|
||||||
|
50
malloc/tst-mxfast.c
Normal file
50
malloc/tst-mxfast.c
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
/* Test that glibc.malloc.mxfast tunable works.
|
||||||
|
Copyright (C) 2018, 2019 Free Software Foundation, Inc.
|
||||||
|
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/>. */
|
||||||
|
|
||||||
|
/* This test verifies that setting the glibc.malloc.mxfast tunable to
|
||||||
|
zero results in free'd blocks being returned to the small bins, not
|
||||||
|
the fast bins. */
|
||||||
|
|
||||||
|
#include <malloc.h>
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
do_test(void)
|
||||||
|
{
|
||||||
|
struct mallinfo m;
|
||||||
|
char * volatile p1;
|
||||||
|
char * volatile p2;
|
||||||
|
|
||||||
|
/* Arbitrary value; must be in default fastbin range. */
|
||||||
|
p1 = malloc (3);
|
||||||
|
/* Something large so that p1 isn't a "top block" */
|
||||||
|
p2 = malloc (512);
|
||||||
|
free (p1);
|
||||||
|
|
||||||
|
m = mallinfo();
|
||||||
|
|
||||||
|
/* This will fail if there are any blocks in the fastbins. */
|
||||||
|
assert (m.smblks == 0);
|
||||||
|
|
||||||
|
/* To keep gcc happy. */
|
||||||
|
free (p2);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#include <support/test-driver.c>
|
@ -214,6 +214,18 @@ pre-fill the per-thread cache with. The default, or when set to zero,
|
|||||||
is no limit.
|
is no limit.
|
||||||
@end deftp
|
@end deftp
|
||||||
|
|
||||||
|
@deftp Tunable glibc.malloc.mxfast
|
||||||
|
One of the optimizations malloc uses is to maintain a series of ``fast
|
||||||
|
bins'' that hold chunks up to a specific size. The default and
|
||||||
|
maximum size which may be held this way is 80 bytes on 32-bit systems
|
||||||
|
or 160 bytes on 64-bit systems. Applications which value size over
|
||||||
|
speed may choose to reduce the size of requests which are serviced
|
||||||
|
from fast bins with this tunable. Note that the value specified
|
||||||
|
includes malloc's internal overhead, which is normally the size of one
|
||||||
|
pointer, so add 4 on 32-bit systems or 8 on 64-bit systems to the size
|
||||||
|
passed to @code{malloc} for the largest bin size to enable.
|
||||||
|
@end deftp
|
||||||
|
|
||||||
@node Elision Tunables
|
@node Elision Tunables
|
||||||
@section Elision Tunables
|
@section Elision Tunables
|
||||||
@cindex elision tunables
|
@cindex elision tunables
|
||||||
|
Reference in New Issue
Block a user