diff options
Diffstat (limited to 'jemalloc/src/chunk_swap.c')
-rw-r--r-- | jemalloc/src/chunk_swap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jemalloc/src/chunk_swap.c b/jemalloc/src/chunk_swap.c index b8c880f..ed9e414 100644 --- a/jemalloc/src/chunk_swap.c +++ b/jemalloc/src/chunk_swap.c @@ -283,7 +283,7 @@ chunk_swap_enable(const int *fds, unsigned nfds, bool prezeroed) * Allocate a chunk-aligned region of anonymous memory, which will * be the final location for the memory-mapped files. */ - vaddr = chunk_alloc_mmap(cumsize); + vaddr = chunk_alloc_mmap_noreserve(cumsize); if (vaddr == NULL) { ret = true; goto RETURN; |