[llvm] [BOLT] fix THP check in bolt --hugify (PR #129380)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 1 04:46:51 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-bolt
Author: Eric Wang (abypun)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/129380.diff
1 Files Affected:
- (modified) bolt/runtime/hugify.cpp (+2-1)
``````````diff
diff --git a/bolt/runtime/hugify.cpp b/bolt/runtime/hugify.cpp
index 05c1be4f2d70c..c49a13d8b2e33 100644
--- a/bolt/runtime/hugify.cpp
+++ b/bolt/runtime/hugify.cpp
@@ -85,7 +85,8 @@ static bool hasPagecacheTHPSupport() {
KernelVersionTy KernelVersion;
getKernelVersion((uint32_t *)&KernelVersion);
- if (KernelVersion.major >= 5 && KernelVersion.minor >= 10)
+ if ((KernelVersion.major == 5 && KernelVersion.minor >= 10) ||
+ KernelVersion.major >= 6)
return true;
return false;
``````````
</details>
https://github.com/llvm/llvm-project/pull/129380
More information about the llvm-commits
mailing list