From: Xiao Guangrong Date: Fri, 28 Sep 2012 00:19:15 +0000 (+1000) Subject: thp: fix the count of THP_COLLAPSE_ALLOC X-Git-Tag: next-20121008~2^2~153 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=069386e0b86b6dfbe0273210768126227163aa9a;p=karo-tx-linux.git thp: fix the count of THP_COLLAPSE_ALLOC THP_COLLAPSE_ALLOC is double counted if NUMA is disabled since it has already been calculated in khugepaged_alloc_hugepage Signed-off-by: Xiao Guangrong Cc: Andrea Arcangeli Cc: Hugh Dickins Cc: David Rientjes Signed-off-by: Andrew Morton --- diff --git a/mm/huge_memory.c b/mm/huge_memory.c index 291bb5bf20a4..8dbc65e08417 100644 --- a/mm/huge_memory.c +++ b/mm/huge_memory.c @@ -1940,9 +1940,9 @@ static void collapse_huge_page(struct mm_struct *mm, *hpage = ERR_PTR(-ENOMEM); return; } + count_vm_event(THP_COLLAPSE_ALLOC); #endif - count_vm_event(THP_COLLAPSE_ALLOC); if (unlikely(mem_cgroup_newpage_charge(new_page, mm, GFP_KERNEL))) { #ifdef CONFIG_NUMA put_page(new_page);