[llvm] [BOLT] fix THP check in bolt --hugify (PR #129380)
Eric Wang via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 1 04:16:07 PST 2025
https://github.com/abypun created https://github.com/llvm/llvm-project/pull/129380
None
>From 666fa903284fdfae6eac76062567ea8dfd23a683 Mon Sep 17 00:00:00 2001
From: rfwang07 <wangrufeng5 at huawei.com>
Date: Sat, 1 Mar 2025 20:11:25 +0800
Subject: [PATCH] fix THP check in bolt --hugify
---
bolt/runtime/hugify.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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;
More information about the llvm-commits
mailing list