The patch titled fix possible null ptr deref in kallsyms_lookup has been removed from the -mm tree. Its filename was fix-possible-null-ptr-deref-in-kallsyms_lookup.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fix possible null ptr deref in kallsyms_lookup From: Kyle McMartin <kyle@xxxxxxxxxxxxxxxx> ugh, this function gets called by our unwinder. recursive backtrace for the win... bisection to find this one was "fun." Signed-off-by: Kyle McMartin <kyle@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/kallsyms.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/kallsyms.c~fix-possible-null-ptr-deref-in-kallsyms_lookup kernel/kallsyms.c --- a/kernel/kallsyms.c~fix-possible-null-ptr-deref-in-kallsyms_lookup +++ a/kernel/kallsyms.c @@ -257,7 +257,8 @@ const char *kallsyms_lookup(unsigned lon pos = get_symbol_pos(addr, symbolsize, offset); /* Grab name */ kallsyms_expand_symbol(get_symbol_offset(pos), namebuf); - *modname = NULL; + if (modname) + *modname = NULL; return namebuf; } _ Patches currently in -mm which might be from kyle@xxxxxxxxxxxxxxxx are origin.patch git-parisc.patch dma-mapping-prevent-dma-dependent-code-from-linking-on.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