[tip: x86/mm] x86/mm: Fix void/int conditional in pgd_clear()

From: tip-bot2 for Jose A. Perez de Azpillaga

Date: Thu Sep 24 2026 - 15:25:40 EST


The following commit has been merged into the x86/mm branch of tip:

Commit-ID: 4f8c177caac8ecdedeb95caa673214fc3f6a75cb
Gitweb: https://git.kernel.org/tip/4f8c177caac8ecdedeb95caa673214fc3f6a75cb
Author: Jose A. Perez de Azpillaga <azpijr@xxxxxxxxx>
AuthorDate: Wed, 23 Sep 2026 23:27:25 +02:00
Committer: Dave Hansen <dave.hansen@xxxxxxxxxxxxxxx>
CommitterDate: Thu, 24 Sep 2026 12:19:01 -07:00

x86/mm: Fix void/int conditional in pgd_clear()

sparse building mm/ reports an error for every pgd_clear() caller:

mm/pgtable-generic.c:30:9: error: incompatible types in conditional expression (different base types):
mm/pgtable-generic.c:30:9: void
mm/pgtable-generic.c:30:9: int

pgtable_l5_enabled() ? native_pgd_clear(pgd) : 0 mixes a void function
call with an int constant. C11 6.5.15 requires the second and third
operands of a conditional expression to both have arithmetic type, both
have the same structure or union type, both have void type, or to be
compatible pointer types. void and int are none of those, so this is a
type error, not just a style issue. GCC accepts it as an extension, and
the result type is void, so there is no runtime effect today.

The macro only exists when the p4d level is not folded, that is, when
CONFIG_PGTABLE_LEVELS > 4; with a folded p4d, asm-generic/pgtable-nop4d.h
defines pgd_clear() as a no-op.

All callers use pgd_clear() as a statement (mm/memory.c and friends), so
use the do { } while (0) form, matching the paravirt definition in
asm/paravirt.h.

Found by running sparse 0.6.5-rc1 over mm/. No functional change.

Signed-off-by: Jose A. Perez de Azpillaga <azpijr@xxxxxxxxx>
Signed-off-by: Dave Hansen <dave.hansen@xxxxxxxxxxxxxxx>
Link: https://patch.msgid.link/20260923212731.19599-1-azpijr@xxxxxxxxx
---
arch/x86/include/asm/pgtable.h | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h
index d5f4917..153cb62 100644
--- a/arch/x86/include/asm/pgtable.h
+++ b/arch/x86/include/asm/pgtable.h
@@ -66,7 +66,11 @@ extern pmdval_t early_pmd_flags;

#ifndef __PAGETABLE_P4D_FOLDED
#define set_pgd(pgdp, pgd) native_set_pgd(pgdp, pgd)
-#define pgd_clear(pgd) (pgtable_l5_enabled() ? native_pgd_clear(pgd) : 0)
+#define pgd_clear(pgdp) \
+do { \
+ if (pgtable_l5_enabled()) \
+ native_pgd_clear(pgdp); \
+} while (0)
#endif

#ifndef set_p4d