summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMerry <git@mary.rs>2023-01-01 11:14:44 +0000
committerMerry <git@mary.rs>2023-01-01 11:40:35 +0000
commit4d7be85e730bc7f46ec5433c425733c4b65a90ed (patch)
tree1a8d937ebaef359a84b7edc29a1110e5f4984c09 /src
parent05c709bebe2f01f7f66d04cab1386f12d1e5b4dd (diff)
host_memory: Allocate virtual_base with MAP_NORESERVE
Specify that we do not require swap to be reserved for this address range; allow overcommitting.
Diffstat (limited to 'src')
-rw-r--r--src/common/host_memory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/host_memory.cpp b/src/common/host_memory.cpp
index 909f6cf3f..4a67f77b2 100644
--- a/src/common/host_memory.cpp
+++ b/src/common/host_memory.cpp
@@ -393,8 +393,8 @@ public:
}
// Virtual memory initialization
- virtual_base = static_cast<u8*>(
- mmap(nullptr, virtual_size, PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0));
+ virtual_base = static_cast<u8*>(mmap(nullptr, virtual_size, PROT_NONE,
+ MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE, -1, 0));
if (virtual_base == MAP_FAILED) {
LOG_CRITICAL(HW_Memory, "mmap failed: {}", strerror(errno));
throw std::bad_alloc{};