diff --git a/src/common/host_memory.cpp b/src/common/host_memory.cpp index ba22595e06..7191b8a12f 100644 --- a/src/common/host_memory.cpp +++ b/src/common/host_memory.cpp @@ -416,7 +416,7 @@ public: } #else virtual_base = static_cast(mmap(nullptr, virtual_size, PROT_NONE, - MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE, -1, 0)); + MAP_PRIVATE | MAP_ANONYMOUS, -1, 0)); if (virtual_base == MAP_FAILED) { LOG_CRITICAL(HW_Memory, "mmap failed: {}", strerror(errno)); throw std::bad_alloc{};