Linux Kernel Selftest development
 help / color / mirror / Atom feed
* [PATCH] tools/include/linux/bitops.h: undef PAGE_SIZE after including limits.h
@ 2026-05-07 23:48 Hisam Mehboob
  0 siblings, 0 replies; only message in thread
From: Hisam Mehboob @ 2026-05-07 23:48 UTC (permalink / raw)
  To: acme
  Cc: shuah, seanjc, linux-kernel, linux-kselftest, Hisam Mehboob,
	Aqib Faruqui

musl libc defines PAGE_SIZE as a signed int in <limits.h>
under _GNU_SOURCE, conflicting with kernel headers that
require an unsigned 64-bit definition:

  include/x86/processor.h:372:9: warning: 'PAGE_SIZE' redefined
  /usr/include/x86_64-linux-musl/limits.h:97:9: note: this is the
  location of the previous definition

Undefine PAGE_SIZE immediately after the #include <limits.h> to
prevent musl's definition from leaking into kernel headers. This
is a no-op on glibc, which does not define PAGE_SIZE in <limits.h>.

Reported-by: Aqib Faruqui <aqibaf@amazon.com>
Link: https://lore.kernel.org/kvm/aL8e0MMa4U2-nstQ@google.com/
Signed-off-by: Hisam Mehboob <hisamshar@gmail.com>
---
 tools/include/linux/bitops.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/include/linux/bitops.h b/tools/include/linux/bitops.h
index b4e4cd071f8c..62117a77ceb5 100644
--- a/tools/include/linux/bitops.h
+++ b/tools/include/linux/bitops.h
@@ -4,6 +4,7 @@
 
 #include <asm/types.h>
 #include <limits.h>
+#undef PAGE_SIZE
 #ifndef __WORDSIZE
 #define __WORDSIZE (__SIZEOF_LONG__ * 8)
 #endif
-- 
2.51.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-05-07 23:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-07 23:48 [PATCH] tools/include/linux/bitops.h: undef PAGE_SIZE after including limits.h Hisam Mehboob

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox