The patch titled Subject: mutex-subsystem-synchro-test-module-fix has been removed from the -mm tree. Its filename was mutex-subsystem-synchro-test-module-fix.patch This patch was dropped because it was folded into mutex-subsystem-synchro-test-module.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mutex-subsystem-synchro-test-module-fix Cc: Adrian Bunk <bunk@xxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Michel Lespinasse <walken@xxxxxxxxxx> Cc: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/synchro-test.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- a/kernel/synchro-test.c~mutex-subsystem-synchro-test-module-fix +++ a/kernel/synchro-test.c @@ -264,7 +264,7 @@ static int spinlocker(void *arg) if (verbose >= 2) printk("%s: done\n", current->comm); - complete_and_exit(&sp_comp[N], 0); + kthread_complete_and_exit(&sp_comp[N], 0); } static int mutexer(void *arg) @@ -285,7 +285,7 @@ static int mutexer(void *arg) if (verbose >= 2) printk("%s: done\n", current->comm); - complete_and_exit(&mx_comp[N], 0); + kthread_complete_and_exit(&mx_comp[N], 0); } static int semaphorer(void *arg) @@ -306,7 +306,7 @@ static int semaphorer(void *arg) if (verbose >= 2) printk("%s: done\n", current->comm); - complete_and_exit(&sm_comp[N], 0); + kthread_complete_and_exit(&sm_comp[N], 0); } static int reader(void *arg) @@ -329,7 +329,7 @@ static int reader(void *arg) if (verbose >= 2) printk("%s: done\n", current->comm); - complete_and_exit(&rd_comp[N], 0); + kthread_complete_and_exit(&rd_comp[N], 0); } static int writer(void *arg) @@ -352,7 +352,7 @@ static int writer(void *arg) if (verbose >= 2) printk("%s: done\n", current->comm); - complete_and_exit(&wr_comp[N], 0); + kthread_complete_and_exit(&wr_comp[N], 0); } static int downgrader(void *arg) @@ -380,7 +380,7 @@ static int downgrader(void *arg) if (verbose >= 2) printk("%s: done\n", current->comm); - complete_and_exit(&dg_comp[N], 0); + kthread_complete_and_exit(&dg_comp[N], 0); } static void stop_test(struct timer_list *t) _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm.patch mm-shmem-make-shmem_init-return-void-fix.patch ksm-count-ksm-merging-pages-for-each-process-fix.patch mm-memory_hotplug-refactor-hotadd_init_pgdat-and-try_online_node-checkpatch-fixes.patch proc-fix-dentry-inode-overinstantiating-under-proc-pid-net-checkpatch-fixes.patch add-fat-messages-to-printk-index-checkpatch-fixes.patch linux-next-rejects.patch mm-oom_killc-fix-vm_oom_kill_table-ifdeffery.patch mutex-subsystem-synchro-test-module.patch kernel-forkc-export-kernel_thread-to-modules.patch