The patch titled Subject: mm/mmap.c: remove useless statement "vma = NULL" in find_vma() has been removed from the -mm tree. Its filename was mm-mmapc-remove-useless-statement-vma-=-null-in-find_vma.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Chen Gang <gang.chen.5i5j@xxxxxxxxx> Subject: mm/mmap.c: remove useless statement "vma = NULL" in find_vma() Before the main loop, vma is already is NULL. There is no need to set it to NULL again. Signed-off-by: Chen Gang <gang.chen.5i5j@xxxxxxxxx> Reviewed-by: Oleg Nesterov <oleg@xxxxxxxxxx> Acked-by: David Rientjes <rientjes@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/mmap.c | 1 - 1 file changed, 1 deletion(-) diff -puN mm/mmap.c~mm-mmapc-remove-useless-statement-vma-=-null-in-find_vma mm/mmap.c --- a/mm/mmap.c~mm-mmapc-remove-useless-statement-vma-=-null-in-find_vma +++ a/mm/mmap.c @@ -2047,7 +2047,6 @@ struct vm_area_struct *find_vma(struct m return vma; rb_node = mm->mm_rb.rb_node; - vma = NULL; while (rb_node) { struct vm_area_struct *tmp; _ Patches currently in -mm which might be from gang.chen.5i5j@xxxxxxxxx are mm-mmapc-change-static-function-__install_special_mapping-args-order.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