The patch titled Subject: mremap: take anon_vma lock in shared mode has been removed from the -mm tree. Its filename was mremap-take-anon_vma-lock-in-shared-mode.patch This patch was dropped because it was withdrawn ------------------------------------------------------ From: "Kirill A. Shutemov" <kirill.shutemov@xxxxxxxxxxxxxxx> Subject: mremap: take anon_vma lock in shared mode There's no modification to anon_vma interval tree. We only need to serialize against exclusive rmap walker who wants to catch all ptes the page is mapped with. Shared lock is enough for that. Signed-off-by: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx> Suggested-by: Davidlohr Bueso <dbueso@xxxxxxx> Acked-by: Rik van Riel <riel@xxxxxxxxxx> Cc: Michel Lespinasse <walken@xxxxxxxxxx> Cc: Andrea Arcangeli <aarcange@xxxxxxxxxx> Cc: Hugh Dickins <hughd@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/mremap.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN mm/mremap.c~mremap-take-anon_vma-lock-in-shared-mode mm/mremap.c --- a/mm/mremap.c~mremap-take-anon_vma-lock-in-shared-mode +++ a/mm/mremap.c @@ -123,7 +123,7 @@ static void move_ptes(struct vm_area_str } if (vma->anon_vma) { anon_vma = vma->anon_vma; - anon_vma_lock_write(anon_vma); + anon_vma_lock_read(anon_vma); } } @@ -154,7 +154,7 @@ static void move_ptes(struct vm_area_str pte_unmap(new_pte - 1); pte_unmap_unlock(old_pte - 1, old_ptl); if (anon_vma) - anon_vma_unlock_write(anon_vma); + anon_vma_unlock_read(anon_vma); if (mapping) mutex_unlock(&mapping->i_mmap_mutex); } @@ -199,12 +199,12 @@ unsigned long move_page_tables(struct vm vma); /* See comment in move_ptes() */ if (need_rmap_locks) - anon_vma_lock_write(vma->anon_vma); + anon_vma_lock_read(vma->anon_vma); err = move_huge_pmd(vma, new_vma, old_addr, new_addr, old_end, old_pmd, new_pmd); if (need_rmap_locks) - anon_vma_unlock_write(vma->anon_vma); + anon_vma_unlock_read(vma->anon_vma); } if (err > 0) { need_flush = true; _ Patches currently in -mm which might be from kirill.shutemov@xxxxxxxxxxxxxxx are mm-page_alloc-fix-incorrect-isolation-behavior-by-rechecking-migratetype.patch mm-page_alloc-add-freepage-on-isolate-pageblock-to-correct-buddy-list.patch mm-page_alloc-move-freepage-counting-logic-to-__free_one_page.patch mm-page_alloc-restrict-max-order-of-merging-on-isolated-pageblock.patch mm-verify-compound-order-when-freeing-a-page.patch thp-do-not-mark-zero-page-pmd-write-protected-explicitly.patch mm-fix-huge-zero-page-accounting-in-smaps-report.patch mm-introduce-do_shared_fault-and-drop-do_fault-fix-fix.patch do_shared_fault-check-that-mmap_sem-is-held.patch mm-replace-remap_file_pages-syscall-with-emulation.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