diff options
author | Andrea Arcangeli <[email protected]> | 2010-01-08 14:43:05 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2010-01-11 09:34:06 -0800 |
commit | 74dbdd239bb1348ad86d28b18574d9c1f28b62ca (patch) | |
tree | d29d30ee9d4c3dd64d831fa9d042c76cba829b58 | |
parent | b5430a04e995081a308b4419bd0940f2badc6e6b (diff) |
mm: hugetlb: fix clear_huge_page()
sz is in bytes, MAX_ORDER_NR_PAGES is in pages.
Signed-off-by: Andrea Arcangeli <[email protected]>
Acked-by: David Gibson <[email protected]>
Cc: Mel Gorman <[email protected]>
Cc: David Rientjes <[email protected]>
Cc: Lee Schermerhorn <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | mm/hugetlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/hugetlb.c b/mm/hugetlb.c index 65f38c218207..e91b81b63670 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c @@ -402,7 +402,7 @@ static void clear_huge_page(struct page *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; } |