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 <xiaoguangrong@linux.vnet.ibm.com> Cc: Andrea Arcangeli <aarcange@redhat.com> Cc: Hugh Dickins <hughd@google.com> Cc: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
db97141882
commit
65b3c07b43
@@ -1874,9 +1874,9 @@ static void collapse_huge_page(struct mm_struct *mm,
|
|||||||
*hpage = ERR_PTR(-ENOMEM);
|
*hpage = ERR_PTR(-ENOMEM);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
count_vm_event(THP_COLLAPSE_ALLOC);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
count_vm_event(THP_COLLAPSE_ALLOC);
|
|
||||||
if (unlikely(mem_cgroup_newpage_charge(new_page, mm, GFP_KERNEL))) {
|
if (unlikely(mem_cgroup_newpage_charge(new_page, mm, GFP_KERNEL))) {
|
||||||
#ifdef CONFIG_NUMA
|
#ifdef CONFIG_NUMA
|
||||||
put_page(new_page);
|
put_page(new_page);
|
||||||
|
Reference in New Issue
Block a user