The patch titled stacktrace: fix header file for !CONFIG_STACKTRACE has been removed from the -mm tree. Its filename was stacktrace-fix-header-file-for-config_stacktrace.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 origin.patch appletouch-powersaving.patch git-net.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