There is a duplicate check for page == NULL now.
Subject: slub: allocate_slab: no need to check twice for page == NULL Remove the second check. Signed-off-by: Christoph Lameter <[email protected]> Index: linux/mm/slub.c =================================================================== --- linux.orig/mm/slub.c +++ linux/mm/slub.c @@ -1396,9 +1396,6 @@ static struct page *allocate_slab(struct kmemcheck_mark_unallocated_pages(page, pages); } - if (!page) - goto out; - page->objects = oo_objects(oo); order = compound_order(page); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

