]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ARM: 9467/1: mm: Don't use %pK through printk
authorThomas Weissschuh <thomas.weissschuh@linutronix.de>
Wed, 7 Jan 2026 09:56:33 +0000 (10:56 +0100)
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Sat, 31 Jan 2026 12:59:09 +0000 (12:59 +0000)
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>
arch/arm/mm/physaddr.c

index 3f263c840ebc462e13c34d33be0161e7a473173d..1a37ebfacbba969b9341fe17518cdd81fb2899b6 100644 (file)
@@ -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);