Skip to content

Commit 623f0b6

Browse files
committedMar 24, 2021
8262235: Remove unnecessary logic in hugetlbfs_sanity_check()
Reviewed-by: iwalulya, tschatzl
1 parent 1a13c9e commit 623f0b6

File tree

1 file changed

+5
-23
lines changed

1 file changed

+5
-23
lines changed
 

‎src/hotspot/os/linux/os_linux.cpp

+5-23
Original file line numberDiff line numberDiff line change
@@ -3493,39 +3493,21 @@ int os::Linux::hugetlbfs_page_size_flag(size_t page_size) {
34933493
}
34943494

34953495
bool os::Linux::hugetlbfs_sanity_check(bool warn, size_t page_size) {
3496-
bool result = false;
3497-
34983496
// Include the page size flag to ensure we sanity check the correct page size.
34993497
int flags = MAP_ANONYMOUS | MAP_PRIVATE | MAP_HUGETLB | hugetlbfs_page_size_flag(page_size);
35003498
void *p = mmap(NULL, page_size, PROT_READ|PROT_WRITE, flags, -1, 0);
35013499

35023500
if (p != MAP_FAILED) {
3503-
// We don't know if this really is a huge page or not.
3504-
FILE *fp = fopen("/proc/self/maps", "r");
3505-
if (fp) {
3506-
while (!feof(fp)) {
3507-
char chars[257];
3508-
long x = 0;
3509-
if (fgets(chars, sizeof(chars), fp)) {
3510-
if (sscanf(chars, "%lx-%*x", &x) == 1
3511-
&& x == (long)p) {
3512-
if (strstr (chars, "hugepage")) {
3513-
result = true;
3514-
break;
3515-
}
3516-
}
3517-
}
3518-
}
3519-
fclose(fp);
3520-
}
3501+
// Mapping succeeded, sanity check passed.
35213502
munmap(p, page_size);
3503+
return true;
35223504
}
35233505

3524-
if (warn && !result) {
3525-
warning("HugeTLBFS is not supported by the operating system.");
3506+
if (warn) {
3507+
warning("HugeTLBFS is not configured or not supported by the operating system.");
35263508
}
35273509

3528-
return result;
3510+
return false;
35293511
}
35303512

35313513
bool os::Linux::shm_hugetlbfs_sanity_check(bool warn, size_t page_size) {

0 commit comments

Comments
 (0)
Please sign in to comment.