The patch titled print_ip_sym(): use %pS has been added to the -mm tree. Its filename is print_ip_sym-use-%ps.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 *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: print_ip_sym(): use %pS From: Vegard Nossum <vegard.nossum@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/kallsyms.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN include/linux/kallsyms.h~print_ip_sym-use-%ps include/linux/kallsyms.h --- a/include/linux/kallsyms.h~print_ip_sym-use-%ps +++ a/include/linux/kallsyms.h @@ -108,8 +108,7 @@ static inline void print_fn_descriptor_s static inline void print_ip_sym(unsigned long ip) { - printk("[<%p>]", (void *) ip); - print_symbol(" %s\n", ip); + printk("[<%p>] %pS\n", (void *) ip, (void *) ip); } #endif /*_LINUX_KALLSYMS_H*/ _ Patches currently in -mm which might be from vegard.nossum@xxxxxxxxx are origin.patch print_ip_sym-use-%ps.patch linux-next.patch parisc-fix-incomplete-header-guard.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