diff --git a/src/common/host_memory.cpp b/src/common/host_memory.cpp index 975b5c407b..da4a1bd9c6 100644 --- a/src/common/host_memory.cpp +++ b/src/common/host_memory.cpp @@ -541,9 +541,7 @@ public: } } LOG_WARNING(Common_Memory, "using largepage of size {} #{}", max_size, max_index); - // Do not use SHM_LARGEPAGE_ALLOC_HARD, yknow what will happen when you do? - // the entire Eden process will hang for eternity! that's what will happen - // Want to fuck around and find out? Go ahead, I tempt you change the "default" to "hard" + // Do not use SHM_LARGEPAGE_ALLOC_HARD, will infinitely hang on vm_reclaim on most systems fd = shm_create_largepage(SHM_ANON, O_RDWR, max_index, SHM_LARGEPAGE_ALLOC_DEFAULT, 0600); } }