The patch titled Subject: mm/rmap.c: use list_move_tail instead of list_del/list_add_tail has been removed from the -mm tree. Its filename was mm-rmapc-use-list_move_tail-instead-of-list_del-list_add_tail.patch This patch was dropped because it is obsolete ------------------------------------------------------ From: Wei Yongjun <yongjun_wei@xxxxxxxxxxxxxxxxx> Subject: mm/rmap.c: use list_move_tail instead of list_del/list_add_tail Using list_move_tail() instead of list_del() + list_add_tail(). Signed-off-by: Wei Yongjun <yongjun_wei@xxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/rmap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN mm/rmap.c~mm-rmapc-use-list_move_tail-instead-of-list_del-list_add_tail mm/rmap.c --- a/mm/rmap.c~mm-rmapc-use-list_move_tail-instead-of-list_del-list_add_tail +++ a/mm/rmap.c @@ -307,8 +307,7 @@ void anon_vma_moveto_tail(struct vm_area struct anon_vma *anon_vma = pavc->anon_vma; VM_BUG_ON(pavc->vma != dst); root = lock_anon_vma_root(root, anon_vma); - list_del(&pavc->same_anon_vma); - list_add_tail(&pavc->same_anon_vma, &anon_vma->head); + list_move_tail(&pavc->same_anon_vma, &anon_vma->head); } unlock_anon_vma_root(root); } _ Patches currently in -mm which might be from yongjun_wei@xxxxxxxxxxxxxxxxx are linux-next.patch cciss-remove-useless-set-memory-to-zero-use-memset.patch kdump-remove-unneeded-include.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