The patch titled print_ip_sym(): use %pS has been removed from the -mm tree. Its filename was print_ip_sym-use-%ps.patch This patch was dropped because it was merged into mainline or a subsystem tree 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 linux-next.patch git-infiniband.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