Skip to content

Commit

Permalink
arena spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Dallas Marlow authored and Dallas Marlow committed May 11, 2014
1 parent 030db3d commit 557fbc9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions util/arena.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,8 @@ char* Arena::AllocateAligned(size_t bytes, size_t huge_page_tlb_size,
size_t reserved_size =
((bytes - 1U) / huge_page_tlb_size + 1U) * huge_page_tlb_size;
assert(reserved_size >= bytes);

void* addr = mmap(nullptr, reserved_size, (PROT_READ | PROT_WRITE),
(MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB), 0, 0);
(MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB), 0, 0);

if (addr == MAP_FAILED) {
Warn(logger, "AllocateAligned fail to allocate huge TLB pages: %s",
Expand Down

0 comments on commit 557fbc9

Please sign in to comment.