[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1514519382-405-1-git-send-email-chenhc@lemote.com>
Date: Fri, 29 Dec 2017 11:49:42 +0800
From: Huacai Chen <chenhc@...ote.com>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: Fuxin Zhang <zhangfx@...ote.com>, linux-mm@...ck.org,
linux-kernel@...r.kernel.org, Huacai Chen <chenhc@...ote.com>
Subject: [PATCH] kallsyms: let print_ip_sym() print raw addresses
print_ip_sym() is mostly used for debugging, so I think it should print
the raw addresses.
Signed-off-by: Huacai Chen <chenhc@...ote.com>
---
include/linux/kallsyms.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/kallsyms.h b/include/linux/kallsyms.h
index bd118a6..e502db8 100644
--- a/include/linux/kallsyms.h
+++ b/include/linux/kallsyms.h
@@ -131,7 +131,7 @@ static inline void print_symbol(const char *fmt, unsigned long addr)
static inline void print_ip_sym(unsigned long ip)
{
- printk("[<%p>] %pS\n", (void *) ip, (void *) ip);
+ printk("[<%px>] %pS\n", (void *) ip, (void *) ip);
}
#endif /*_LINUX_KALLSYMS_H*/
--
2.7.0
Powered by blists - more mailing lists