From: Xiao Guangrong Date: Fri, 28 Sep 2012 00:19:50 +0000 (+1000) Subject: thp: khugepaged_prealloc_page() forgot to reset the page alloc indicator X-Git-Tag: next-20120928~1^2~227 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9b8be52f6e051028f4841866d6966bf4cb8bb352;p=karo-tx-linux.git thp: khugepaged_prealloc_page() forgot to reset the page alloc indicator If NUMA is enabled, the indicator is not reset if the previous page request failed, ausing us to trigger the BUG_ON() in khugepaged_alloc_page(). Signed-off-by: Xiao Guangrong Cc: Hugh Dickins Cc: Andrea Arcangeli Cc: Michel Lespinasse Cc: David Rientjes Signed-off-by: Andrew Morton --- diff --git a/mm/huge_memory.c b/mm/huge_memory.c index 61fe1aa22960..ba34b36c7008 100644 --- a/mm/huge_memory.c +++ b/mm/huge_memory.c @@ -1883,6 +1883,7 @@ static bool khugepaged_prealloc_page(struct page **hpage, bool *wait) return false; *wait = false; + *hpage = NULL; khugepaged_alloc_sleep(); } else if (*hpage) { put_page(*hpage);