The patch titled Subject: exit_thread-accept-a-task-parameter-to-be-exited-checkpatch-fixes has been removed from the -mm tree. Its filename was exit_thread-accept-a-task-parameter-to-be-exited-checkpatch-fixes.patch This patch was dropped because it was folded into exit_thread-accept-a-task-parameter-to-be-exited.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: exit_thread-accept-a-task-parameter-to-be-exited-checkpatch-fixes WARNING: space prohibited between function name and open parenthesis '(' #242: FILE: arch/ia64/kernel/process.c:577: +exit_thread (struct task_struct *tsk) WARNING: braces {} are not necessary for single statement blocks #331: FILE: arch/sh/kernel/process_64.c:310: + if (last_task_used_math == tsk) { last_task_used_math = NULL; } total: 0 errors, 2 warnings, 231 lines checked ./patches/exit_thread-accept-a-task-parameter-to-be-exited.patch has style problems, please review. NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Jiri Slaby <jslaby@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/sh/kernel/process_64.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN arch/sh/kernel/process_64.c~exit_thread-accept-a-task-parameter-to-be-exited-checkpatch-fixes arch/sh/kernel/process_64.c --- a/arch/sh/kernel/process_64.c~exit_thread-accept-a-task-parameter-to-be-exited-checkpatch-fixes +++ a/arch/sh/kernel/process_64.c @@ -307,9 +307,8 @@ void exit_thread(struct task_struct *tsk * which it would get safely nulled. */ #ifdef CONFIG_SH_FPU - if (last_task_used_math == tsk) { + if (last_task_used_math == tsk) last_task_used_math = NULL; - } #endif } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are exit_thread-accept-a-task-parameter-to-be-exited.patch lib-gcd-use-binary-gcd-algorithm-instead-of-euclidean-fix.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