* [PATCH 6.1.y v2] Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems"
@ 2025-10-23 1:47 Leon Hwang
2025-10-27 11:36 ` Patch "Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems"" has been added to the 6.1-stable tree gregkh
0 siblings, 1 reply; 2+ messages in thread
From: Leon Hwang @ 2025-10-23 1:47 UTC (permalink / raw)
To: stable, greg
Cc: akpm, david, lorenzo.stoakes, lance.yang, shuah, linux-mm,
linux-kernel, Leon Hwang
This reverts commit a584c7734a4dd050451fcdd65c66317e15660e81 to avoid
the build error:
map_hugetlb.c: In function 'main':
map_hugetlb.c:79:25: warning: implicit declaration of function 'default_huge_page_size' [-Wimplicit-function-declaration]
79 | hugepage_size = default_huge_page_size();
Signed-off-by: Leon Hwang <leon.hwang@linux.dev>
---
v1 -> v2:
- Revert the commit instead of fixing the build error.
- https://lore.kernel.org/linux-mm/20251022055138.375042-1-leon.hwang@linux.dev/
tools/testing/selftests/vm/map_hugetlb.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/tools/testing/selftests/vm/map_hugetlb.c b/tools/testing/selftests/vm/map_hugetlb.c
index c65c55b7a789..312889edb84a 100644
--- a/tools/testing/selftests/vm/map_hugetlb.c
+++ b/tools/testing/selftests/vm/map_hugetlb.c
@@ -15,7 +15,6 @@
#include <unistd.h>
#include <sys/mman.h>
#include <fcntl.h>
-#include "vm_util.h"
#define LENGTH (256UL*1024*1024)
#define PROTECTION (PROT_READ | PROT_WRITE)
@@ -71,16 +70,10 @@ int main(int argc, char **argv)
{
void *addr;
int ret;
- size_t hugepage_size;
size_t length = LENGTH;
int flags = FLAGS;
int shift = 0;
- hugepage_size = default_huge_page_size();
- /* munmap with fail if the length is not page aligned */
- if (hugepage_size > length)
- length = hugepage_size;
-
if (argc > 1)
length = atol(argv[1]) << 20;
if (argc > 2) {
--
2.51.0
^ permalink raw reply [flat|nested] 2+ messages in thread* Patch "Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems"" has been added to the 6.1-stable tree
2025-10-23 1:47 [PATCH 6.1.y v2] Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems" Leon Hwang
@ 2025-10-27 11:36 ` gregkh
0 siblings, 0 replies; 2+ messages in thread
From: gregkh @ 2025-10-27 11:36 UTC (permalink / raw)
To: akpm, david, greg, gregkh, lance.yang, leon.hwang, linux-mm,
lorenzo.stoakes, shuah
Cc: stable-commits
This is a note to let you know that I've just added the patch titled
Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems"
to the 6.1-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
revert-selftests-mm-fix-map_hugetlb-failure-on-64k-page-size-systems.patch
and it can be found in the queue-6.1 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
From leon.hwang@linux.dev Mon Oct 27 12:22:10 2025
From: Leon Hwang <leon.hwang@linux.dev>
Date: Thu, 23 Oct 2025 09:47:32 +0800
Subject: Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems"
To: stable@vger.kernel.org, greg@kroah.com
Cc: akpm@linux-foundation.org, david@redhat.com, lorenzo.stoakes@oracle.com, lance.yang@linux.dev, shuah@kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Leon Hwang <leon.hwang@linux.dev>
Message-ID: <20251023014732.73721-1-leon.hwang@linux.dev>
From: Leon Hwang <leon.hwang@linux.dev>
This reverts commit a584c7734a4dd050451fcdd65c66317e15660e81 which is
commit 91b80cc5b39f00399e8e2d17527cad2c7fa535e2 upstream.
This fixes the following build error:
map_hugetlb.c: In function 'main':
map_hugetlb.c:79:25: warning: implicit declaration of function 'default_huge_page_size' [-Wimplicit-function-declaration]
79 | hugepage_size = default_huge_page_size();
Signed-off-by: Leon Hwang <leon.hwang@linux.dev>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
tools/testing/selftests/vm/map_hugetlb.c | 7 -------
1 file changed, 7 deletions(-)
--- a/tools/testing/selftests/vm/map_hugetlb.c
+++ b/tools/testing/selftests/vm/map_hugetlb.c
@@ -15,7 +15,6 @@
#include <unistd.h>
#include <sys/mman.h>
#include <fcntl.h>
-#include "vm_util.h"
#define LENGTH (256UL*1024*1024)
#define PROTECTION (PROT_READ | PROT_WRITE)
@@ -71,16 +70,10 @@ int main(int argc, char **argv)
{
void *addr;
int ret;
- size_t hugepage_size;
size_t length = LENGTH;
int flags = FLAGS;
int shift = 0;
- hugepage_size = default_huge_page_size();
- /* munmap with fail if the length is not page aligned */
- if (hugepage_size > length)
- length = hugepage_size;
-
if (argc > 1)
length = atol(argv[1]) << 20;
if (argc > 2) {
Patches currently in stable-queue which might be from leon.hwang@linux.dev are
queue-6.1/revert-selftests-mm-fix-map_hugetlb-failure-on-64k-page-size-systems.patch
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-10-27 11:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-23 1:47 [PATCH 6.1.y v2] Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems" Leon Hwang
2025-10-27 11:36 ` Patch "Revert "selftests: mm: fix map_hugetlb failure on 64K page size systems"" has been added to the 6.1-stable tree gregkh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox