From: Xiao Guangrong Date: Fri, 21 Sep 2012 00:57:24 +0000 (+1000) Subject: thp: fix the count of THP_COLLAPSE_ALLOC X-Git-Tag: next-20120921~6^2~301 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=956237d30eb1b3d9d925afae55500433acfa5814;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 8b3c55a7c070..258c018fb3f1 100644 --- a/mm/huge_memory.c +++ b/mm/huge_memory.c @@ -1875,9 +1875,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);