]> Git Repo - linux.git/commit - mm/hugetlb.c
hugetlb: correct page count for surplus huge pages
authorAdam Litke <[email protected]>
Mon, 10 Mar 2008 18:43:50 +0000 (11:43 -0700)
committerLinus Torvalds <[email protected]>
Tue, 11 Mar 2008 01:01:19 +0000 (18:01 -0700)
commit2668db9111bb1a6ab5a54f41f703179f35c7d098
treebde940cfd298321663cf988b607151513c801a1a
parent842078054da2d754c6b998b116d7c468abbfaaca
hugetlb: correct page count for surplus huge pages

Free pages in the hugetlb pool are free and as such have a reference count of
zero.  Regular allocations into the pool from the buddy are "freed" into the
pool which results in their page_count dropping to zero.  However, surplus
pages can be directly utilized by the caller without first being freed to the
pool.  Therefore, a call to put_page_testzero() is in order so that such a
page will be handed to the caller with a correct count.

This has not affected end users because the bad page count is reset before the
page is handed off.  However, under CONFIG_DEBUG_VM this triggers a BUG when
the page count is validated.

Thanks go to Mel for first spotting this issue and providing an initial fix.

Signed-off-by: Adam Litke <[email protected]>
Cc: Mel Gorman <[email protected]>
Cc: Dave Hansen <[email protected]>
Cc: William Lee Irwin III <[email protected]>
Cc: Andy Whitcroft <[email protected]>
Cc: Mel Gorman <[email protected]>
Cc: David Gibson <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/hugetlb.c
This page took 0.050194 seconds and 4 git commands to generate.