mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-26 20:51:11 +00:00
malloc: Move MORECORE fallback mmap to sysmalloc_mmap_fallback
So it can be used on hugepage code as well. Reviewed-by: DJ Delorie <dj@redhat.com>
This commit is contained in:
parent
c1beb51d08
commit
0849eed45d
@ -2498,6 +2498,51 @@ sysmalloc_mmap (INTERNAL_SIZE_T nb, size_t pagesize, int extra_flags, mstate av)
|
|||||||
return chunk2mem (p);
|
return chunk2mem (p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Allocate memory using mmap() based on S and NB requested size, aligning to
|
||||||
|
PAGESIZE if required. The EXTRA_FLAGS is used on mmap() call. If the call
|
||||||
|
succeedes S is updated with the allocated size. This is used as a fallback
|
||||||
|
if MORECORE fails.
|
||||||
|
*/
|
||||||
|
static void *
|
||||||
|
sysmalloc_mmap_fallback (long int *s, INTERNAL_SIZE_T nb,
|
||||||
|
INTERNAL_SIZE_T old_size, size_t minsize,
|
||||||
|
size_t pagesize, int extra_flags, mstate av)
|
||||||
|
{
|
||||||
|
long int size = *s;
|
||||||
|
|
||||||
|
/* Cannot merge with old top, so add its size back in */
|
||||||
|
if (contiguous (av))
|
||||||
|
size = ALIGN_UP (size + old_size, pagesize);
|
||||||
|
|
||||||
|
/* If we are relying on mmap as backup, then use larger units */
|
||||||
|
if ((unsigned long) (size) < minsize)
|
||||||
|
size = minsize;
|
||||||
|
|
||||||
|
/* Don't try if size wraps around 0 */
|
||||||
|
if ((unsigned long) (size) <= (unsigned long) (nb))
|
||||||
|
return MORECORE_FAILURE;
|
||||||
|
|
||||||
|
char *mbrk = (char *) (MMAP (0, size,
|
||||||
|
mtag_mmap_flags | PROT_READ | PROT_WRITE,
|
||||||
|
extra_flags));
|
||||||
|
if (mbrk == MAP_FAILED)
|
||||||
|
return MAP_FAILED;
|
||||||
|
|
||||||
|
#ifdef MAP_HUGETLB
|
||||||
|
if (!(extra_flags & MAP_HUGETLB))
|
||||||
|
madvise_thp (mbrk, size);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Record that we no longer have a contiguous sbrk region. After the first
|
||||||
|
time mmap is used as backup, we do not ever rely on contiguous space
|
||||||
|
since this could incorrectly bridge regions. */
|
||||||
|
set_noncontiguous (av);
|
||||||
|
|
||||||
|
*s = size;
|
||||||
|
return mbrk;
|
||||||
|
}
|
||||||
|
|
||||||
static void *
|
static void *
|
||||||
sysmalloc (INTERNAL_SIZE_T nb, mstate av)
|
sysmalloc (INTERNAL_SIZE_T nb, mstate av)
|
||||||
{
|
{
|
||||||
@ -2696,38 +2741,14 @@ sysmalloc (INTERNAL_SIZE_T nb, mstate av)
|
|||||||
segregated mmap region.
|
segregated mmap region.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Cannot merge with old top, so add its size back in */
|
char *mbrk = sysmalloc_mmap_fallback (&size, nb, old_size, pagesize,
|
||||||
if (contiguous (av))
|
MMAP_AS_MORECORE_SIZE, 0, av);
|
||||||
size = ALIGN_UP (size + old_size, pagesize);
|
if (mbrk != MAP_FAILED)
|
||||||
|
{
|
||||||
/* If we are relying on mmap as backup, then use larger units */
|
/* We do not need, and cannot use, another sbrk call to find end */
|
||||||
if ((unsigned long) (size) < (unsigned long) (MMAP_AS_MORECORE_SIZE))
|
brk = mbrk;
|
||||||
size = MMAP_AS_MORECORE_SIZE;
|
snd_brk = brk + size;
|
||||||
|
}
|
||||||
/* Don't try if size wraps around 0 */
|
|
||||||
if ((unsigned long) (size) > (unsigned long) (nb))
|
|
||||||
{
|
|
||||||
char *mbrk = (char *) (MMAP (0, size,
|
|
||||||
mtag_mmap_flags | PROT_READ | PROT_WRITE,
|
|
||||||
0));
|
|
||||||
|
|
||||||
if (mbrk != MAP_FAILED)
|
|
||||||
{
|
|
||||||
madvise_thp (mbrk, size);
|
|
||||||
|
|
||||||
/* We do not need, and cannot use, another sbrk call to find end */
|
|
||||||
brk = mbrk;
|
|
||||||
snd_brk = brk + size;
|
|
||||||
|
|
||||||
/*
|
|
||||||
Record that we no longer have a contiguous sbrk region.
|
|
||||||
After the first time mmap is used as backup, we do not
|
|
||||||
ever rely on contiguous space since this could incorrectly
|
|
||||||
bridge regions.
|
|
||||||
*/
|
|
||||||
set_noncontiguous (av);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (brk != (char *) (MORECORE_FAILURE))
|
if (brk != (char *) (MORECORE_FAILURE))
|
||||||
|
Loading…
Reference in New Issue
Block a user