The patch titled Subject: kallsyms: let print_ip_sym() print raw addresses has been added to the -mm tree. Its filename is kallsyms-let-print_ip_sym-print-raw-addresses.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/kallsyms-let-print_ip_sym-print-raw-addresses.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/kallsyms-let-print_ip_sym-print-raw-addresses.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Huacai Chen <chenhc@xxxxxxxxxx> Subject: 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. Link: http://lkml.kernel.org/r/1514519382-405-1-git-send-email-chenhc@xxxxxxxxxx Signed-off-by: Huacai Chen <chenhc@xxxxxxxxxx> Cc: Kees Cook <keescook@xxxxxxxxxxxx> Cc: Fuxin Zhang <zhangfx@xxxxxxxxxx> Cc: "Tobin C. Harding" <me@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/kallsyms.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/kallsyms.h~kallsyms-let-print_ip_sym-print-raw-addresses include/linux/kallsyms.h --- a/include/linux/kallsyms.h~kallsyms-let-print_ip_sym-print-raw-addresses +++ a/include/linux/kallsyms.h @@ -131,7 +131,7 @@ static inline void print_symbol(const ch 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*/ _ Patches currently in -mm which might be from chenhc@xxxxxxxxxx are kallsyms-let-print_ip_sym-print-raw-addresses.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html