The patch titled lockdep: add print_ip_sym() has been removed from the -mm tree. Its filename is lockdep-add-print_ip_sym.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: lockdep: add print_ip_sym() From: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Provide a common print_ip_sym() function that prints the passed instruction pointer as well as the symbol belonging to it. Avoids adding a bunch of #ifdef CONFIG_64BIT in order to get the printk format right on 32/64 bit platforms. Acked-by: Ingo Molnar <mingo@xxxxxxx> Cc: Arjan van de Ven <arjan@xxxxxxxxxxxxx> Signed-off-by: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/kallsyms.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff -puN include/linux/kallsyms.h~lockdep-add-print_ip_sym include/linux/kallsyms.h --- a/include/linux/kallsyms.h~lockdep-add-print_ip_sym +++ a/include/linux/kallsyms.h @@ -64,4 +64,18 @@ static inline void print_symbol(const ch __builtin_extract_return_addr((void *)addr)); } +#ifndef CONFIG_64BIT +#define print_ip_sym(ip) \ +do { \ + printk("[<%08lx>]", ip); \ + print_symbol(" %s\n", ip); \ +} while(0) +#else +#define print_ip_sym(ip) \ +do { \ + printk("[<%016lx>]", ip); \ + print_symbol(" %s\n", ip); \ +} while(0) +#endif + #endif /*_LINUX_KALLSYMS_H*/ _ Patches currently in -mm which might be from heiko.carstens@xxxxxxxxxx are origin.patch zfcp-fix-incorrect-usage-of-erp_lock.patch zfcp-fix-incorrect-usage-of-fsf_req_list_lock.patch git-klibc.patch s390-move-var-declarations-behind-ifdef.patch fix-oddball-boolean-logic-in-s390-netiucv.patch s390-broken-null-test-in-claw-driver.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