summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorThomas Weissschuh <thomas.weissschuh@linutronix.de>2026-01-07 10:56:33 +0100
committerSasha Levin <sashal@kernel.org>2026-03-04 07:20:57 -0500
commit1a7f1116c7f8d2f2d38aab1c06e4edb9cbd8754c (patch)
tree8737b58c851eddd901088f10a450fe5cbb8401db /arch
parent44373b1e9c12acce6456f997f65851a28fc14aac (diff)
ARM: 9467/1: mm: Don't use %pK through printk
[ Upstream commit 012ea376a5948b025f260aa45d2a6ec5d96674ea ] Restricted pointers ("%pK") were never meant to be used through printk(). They can acquire sleeping locks in atomic contexts. Switch to %px over the more secure %p as this usage is a debugging aid, gated behind CONFIG_DEBUG_VIRTUAL and used by WARN(). Link: https://lore.kernel.org/lkml/20250113171731-dc10e3c1-da64-4af0-b767-7c7070468023@linutronix.de/ Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de> Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mm/physaddr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/physaddr.c b/arch/arm/mm/physaddr.c
index 3f263c840ebc..1a37ebfacbba 100644
--- a/arch/arm/mm/physaddr.c
+++ b/arch/arm/mm/physaddr.c
@@ -38,7 +38,7 @@ static inline bool __virt_addr_valid(unsigned long x)
phys_addr_t __virt_to_phys(unsigned long x)
{
WARN(!__virt_addr_valid(x),
- "virt_to_phys used for non-linear address: %pK (%pS)\n",
+ "virt_to_phys used for non-linear address: %px (%pS)\n",
(void *)x, (void *)x);
return __virt_to_phys_nodebug(x);