The patch titled kernel/fork.c: remove unneeded variable initialization in copy_process() has been removed from the -mm tree. Its filename was kernel-forkc-remove-unneeded-variable-initialization-in-copy_process.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: kernel/fork.c: remove unneeded variable initialization in copy_process() From: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> This initialization of is not needed so just remove it. Signed-off-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/fork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/fork.c~kernel-forkc-remove-unneeded-variable-initialization-in-copy_process kernel/fork.c --- a/kernel/fork.c~kernel-forkc-remove-unneeded-variable-initialization-in-copy_process +++ a/kernel/fork.c @@ -978,7 +978,7 @@ static struct task_struct *copy_process( struct pid *pid) { int retval; - struct task_struct *p = NULL; + struct task_struct *p; int cgroup_callbacks_done = 0; if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS)) _ Patches currently in -mm which might be from m.kozlowski@xxxxxxxxxx are origin.patch fs-reiser4-plugin-file-cryptcompressc-kmalloc-memset-conversion-to-kzalloc.patch reiser4-kmalloc-memset-conversion-to-kzalloc.patch fs-reiser4-init_superc-kmalloc-memset-conversion-to-kzalloc.patch fs-reiser4-plugin-inode_ops_renamec-kmalloc-memset-conversion-to-kzalloc.patch fs-reiser4-ktxnmgrdc-kmalloc-memset-conversion-to-kzalloc.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