The patch titled mm/page_alloc.c: remove hand-coded get_order() has been removed from the -mm tree. Its filename was mm-page_allocc-remove-hand-coded-get_order.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/page_alloc.c: remove hand-coded get_order() From: Pavel Machek <pavel@xxxxxx> Remove hand-coded get_order() from page_alloc.c. Signed-off-by: Pavel Machek <pavel@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff -puN mm/page_alloc.c~mm-page_allocc-remove-hand-coded-get_order mm/page_alloc.c --- a/mm/page_alloc.c~mm-page_allocc-remove-hand-coded-get_order +++ a/mm/page_alloc.c @@ -4345,9 +4345,7 @@ void *__init alloc_large_system_hash(con else if (hashdist) table = __vmalloc(size, GFP_ATOMIC, PAGE_KERNEL); else { - unsigned long order; - for (order = 0; ((1UL << order) << PAGE_SHIFT) < size; order++) - ; + unsigned long order = get_order(size); table = (void*) __get_free_pages(GFP_ATOMIC, order); /* * If bucketsize is not a power-of-two, we may free _ Patches currently in -mm which might be from pavel@xxxxxx are origin.patch git-acpi.patch s2ram-warn-when-interrupts-should-be-disabled-but-are-not.patch hci_usbh-fix-hard-to-trigger-race.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