blob: ea954789aa0d7d44612e35f23681749386d88dca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
From 2ace2eddbd6a0cda2006e632444cd19a360d12d4 Mon Sep 17 00:00:00 2001
From: Lv Ying <lvying6@huawei.com>
Date: Fri, 24 Feb 2023 16:14:42 +0800
Subject: [PATCH 2/3] elf/ld.so: keep compatible with the original policy of
the LD_HUGEPAGE_LIB env
When we use new policy: ld.so load PT_LOAD segement use hugepage according to
PF_HUGEPAGE flag. We should keep compatible with the original policy of
the LD_HUGEPAGE_LIB env which loads all the PT_LOAD segment try to use
hugepage.
Signed-off-by: Lv Ying <lvying6@huawei.com>
---
elf/dl-load.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/elf/dl-load.c b/elf/dl-load.c
index e0d4fa2e..e01bb448 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -1184,7 +1184,9 @@ _dl_map_object_from_fd (const char *name, const char *origname, int fd,
}
#ifdef HUGEPAGE_SHARED_LIB
- if (ph->p_flags & PF_HUGEPAGE) {
+ if (GLRO(dl_hugepage_mask) & DL_HUGEPAGE_LIB_LARGE_IN_FLAG) {
+ hp_bitmap[nloadcmds] = 1;
+ } else if (ph->p_flags & PF_HUGEPAGE) {
hp_bitmap[nloadcmds] = 1;
use_hugepage = true;
} else
--
2.38.1
|