Prev: [patch 044/149] drivers/base/cpu.c: fix the output from /sys/devices/system/cpu/offline
Next: [patch 059/149] md: set mddev readonly flag on blkdev BLKROSET ioctl
From: Greg KH on 1 Jul 2010 14:50 2.6.32-stable review patch. If anyone has any objections, please let us know. ------------------ From: Andrea Arcangeli <aarcange(a)redhat.com> commit 74dbdd239bb1348ad86d28b18574d9c1f28b62ca upstream. sz is in bytes, MAX_ORDER_NR_PAGES is in pages. Signed-off-by: Andrea Arcangeli <aarcange(a)redhat.com> Acked-by: David Gibson <dwg(a)au1.ibm.com> Cc: Mel Gorman <mel(a)csn.ul.ie> Cc: David Rientjes <rientjes(a)google.com> Cc: Lee Schermerhorn <lee.schermerhorn(a)hp.com> Signed-off-by: Andrew Morton <akpm(a)linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds(a)linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- mm/hugetlb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/hugetlb.c +++ b/mm/hugetlb.c @@ -401,7 +401,7 @@ static void clear_huge_page(struct page { int i; - if (unlikely(sz > MAX_ORDER_NR_PAGES)) { + if (unlikely(sz/PAGE_SIZE > MAX_ORDER_NR_PAGES)) { clear_gigantic_page(page, addr, sz); return; } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |