From f4159d814941382c282672f5c06ea14d37240f7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20F=C3=BCrst?= Date: Wed, 7 Feb 2024 22:11:41 +0100 Subject: [PATCH] fix old flag name from FLAG_TRIGGER_PAGES to FLAG_FORCE_MAP_PAGES --- offloading-cacher/cache.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offloading-cacher/cache.hpp b/offloading-cacher/cache.hpp index 17ac67f..3dbcf06 100755 --- a/offloading-cacher/cache.hpp +++ b/offloading-cacher/cache.hpp @@ -467,7 +467,7 @@ inline uint8_t* dsacache::Cache::AllocOnNode(const size_t size, const int node) return nullptr; } - if (CheckFlag(flags_, FLAG_TRIGGER_PAGES)) { + if (CheckFlag(flags_, FLAG_FORCE_MAP_PAGES)) { static const size_t page_size_b = getpagesize(); for (size_t i = 0; i < size; i += page_size_b) {