The patch titled mm/apply_to_range: call pte function with lazy updates has been removed from the -mm tree. Its filename was mm-apply_to_range-call-pte-function-with-lazy-updates.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: mm/apply_to_range: call pte function with lazy updates From: Jeremy Fitzhardinge <jeremy@xxxxxxxx> Make the pte-level function in apply_to_range be called in lazy mmu mode, so that any pagetable modifications can be batched. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@xxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Nick Piggin <nickpiggin@xxxxxxxxxxxx> Cc: Venkatesh Pallipadi <venkatesh.pallipadi@xxxxxxxxx> Cc: Hugh Dickins <hugh@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memory.c | 4 ++++ 1 file changed, 4 insertions(+) diff -puN mm/memory.c~mm-apply_to_range-call-pte-function-with-lazy-updates mm/memory.c --- a/mm/memory.c~mm-apply_to_range-call-pte-function-with-lazy-updates +++ a/mm/memory.c @@ -1645,6 +1645,8 @@ static int apply_to_pte_range(struct mm_ BUG_ON(pmd_huge(*pmd)); + arch_enter_lazy_mmu_mode(); + token = pmd_pgtable(*pmd); do { @@ -1653,6 +1655,8 @@ static int apply_to_pte_range(struct mm_ break; } while (pte++, addr += PAGE_SIZE, addr != end); + arch_leave_lazy_mmu_mode(); + if (mm != &init_mm) pte_unmap_unlock(pte-1, ptl); return err; _ Patches currently in -mm which might be from jeremy@xxxxxxxx are origin.patch linux-next.patch drivers-xen-xenbus-xenbus_clientc-cleanup-kerneldoc.patch xen-add-xenfs-to-allow-usermode-xen-interaction-fix-xenbus-message-reads.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