The patch titled stacktrace: fix header file for !CONFIG_STACKTRACE has been added to the -mm tree. Its filename is stacktrace-fix-header-file-for-config_stacktrace.patch *** 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 ------------------------------------------------------ Subject: stacktrace: fix header file for !CONFIG_STACKTRACE From: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> The print_stack_trace macro in stacktrace.h has a wrong number of arguments, fix it. Signed-off-by: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Cc: Arjan van de Ven <arjan@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/stacktrace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/stacktrace.h~stacktrace-fix-header-file-for-config_stacktrace include/linux/stacktrace.h --- a/include/linux/stacktrace.h~stacktrace-fix-header-file-for-config_stacktrace +++ a/include/linux/stacktrace.h @@ -13,7 +13,7 @@ extern void save_stack_trace(struct stac extern void print_stack_trace(struct stack_trace *trace, int spaces); #else # define save_stack_trace(trace) do { } while (0) -# define print_stack_trace(trace) do { } while (0) +# define print_stack_trace(trace, spaces) do { } while (0) #endif #endif _ Patches currently in -mm which might be from johannes@xxxxxxxxxxxxxxxx are git-powerpc.patch git-netdev-all.patch git-net.patch git-ocfs2.patch tidy-up-usermode-helper-waiting-a-bit-fix.patch lockdep-debugging-give-stacktrace-for-init_error.patch stacktrace-fix-header-file-for-config_stacktrace.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