The patch titled MM: use DIV_ROUND_UP() in mm/memory.c has been removed from the -mm tree. Its filename was mm-use-div_round_up-in-mm-memoryc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: MM: use DIV_ROUND_UP() in mm/memory.c From: Rolf Eike Beer <eike-kernel@xxxxxxxxx> Replace a hand coded version of DIV_ROUND_UP(). Signed-off-by: Rolf Eike Beer <eike-kernel@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/memory.c~mm-use-div_round_up-in-mm-memoryc mm/memory.c --- a/mm/memory.c~mm-use-div_round_up-in-mm-memoryc +++ a/mm/memory.c @@ -2673,7 +2673,7 @@ int make_pages_present(unsigned long add write = (vma->vm_flags & VM_WRITE) != 0; BUG_ON(addr >= end); BUG_ON(end > vma->vm_end); - len = (end+PAGE_SIZE-1)/PAGE_SIZE-addr/PAGE_SIZE; + len = DIV_ROUND_UP(end, PAGE_SIZE) - addr/PAGE_SIZE; ret = get_user_pages(current, current->mm, addr, len, write, 0, NULL, NULL); if (ret < 0) _ Patches currently in -mm which might be from eike-kernel@xxxxxxxxx are origin.patch git-r8169.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