The patch titled Mark sysrq_sched_debug_show static has been removed from the -mm tree. Its filename was mark-sysrq_sched_debug_show-static.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Mark sysrq_sched_debug_show static From: Josh Triplett <josh@xxxxxxxxxx> Only sched.c uses sysrq_sched_debug_show, and sched.c includes sched_debug.c, so all uses of sysrq_sched_debug_show occur in the same source file. Eliminates a sparse warning: warning: symbol 'sysrq_sched_debug_show' was not declared. Should it be static? Signed-off-by: Josh Triplett <josh@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/sched_debug.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/sched_debug.c~mark-sysrq_sched_debug_show-static kernel/sched_debug.c --- a/kernel/sched_debug.c~mark-sysrq_sched_debug_show-static +++ a/kernel/sched_debug.c @@ -186,7 +186,7 @@ static int sched_debug_show(struct seq_f return 0; } -void sysrq_sched_debug_show(void) +static void sysrq_sched_debug_show(void) { sched_debug_show(NULL, NULL); } _ Patches currently in -mm which might be from josh@xxxxxxxxxx are origin.patch immunize-rcu_dereference-against-crazy-compiler-writers.patch i386-include-asm-bugsh-in-bugsc-for-check_bugs-prototype.patch x86_64-include-asm-bugsh-in-bugsc-for-check_bugs.patch i386-mark-pit_clockevent-static.patch cfs-mark-print_cfs_stats-static.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