1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

mmap: remove debugging output

This commit is contained in:
Steffen Vogel 2019-10-29 09:21:27 +01:00
parent d919a76dd7
commit 1370ad7f7b

View file

@ -104,16 +104,12 @@ static struct memory_allocation * memory_mmap_alloc(size_t len, size_t alignment
fd = -1;
#endif
sz = hugepgsz;
info("allocate %#zx bytes mmap_hugetlb memory", len);
}
else {
flags = MAP_PRIVATE | MAP_ANONYMOUS;
fd = -1;
sz = pgsz;
info("allocate %#zx bytes mmap memory", len);
}
/** We must make sure that len is a multiple of the page size