aboutsummaryrefslogtreecommitdiff
path: root/mm/cma.c
diff options
context:
space:
mode:
authorGravatar Anshuman Khandual <anshuman.khandual@arm.com> 2024-02-06 10:27:31 +0530
committerGravatar Andrew Morton <akpm@linux-foundation.org> 2024-02-22 10:24:57 -0800
commitb9ad003af13a1fe34319da6c2082038bce833831 (patch)
tree7adb6a1e9eb762f06869eb88a9c9676726d21b6b /mm/cma.c
parentselftests/damon/_chk_dependency: get debugfs mount point from /proc/mounts (diff)
downloadlinux-b9ad003af13a1fe34319da6c2082038bce833831.tar.gz
linux-b9ad003af13a1fe34319da6c2082038bce833831.tar.bz2
linux-b9ad003af13a1fe34319da6c2082038bce833831.zip
mm/cma: add sysfs file 'release_pages_success'
This adds the following new sysfs file tracking the number of successfully released pages from a given CMA heap area. This file will be available via CONFIG_CMA_SYSFS and help in determining active CMA pages available on the CMA heap area. This adds a new 'nr_pages_released' (CONFIG_CMA_SYSFS) into 'struct cma' which gets updated during cma_release(). /sys/kernel/mm/cma/<cma-heap-area>/release_pages_success After this change, an user will be able to find active CMA pages available in a given CMA heap area via the following method. Active pages = alloc_pages_success - release_pages_success That's valuable information for both software designers, and system admins as it allows them to tune the number of CMA pages available in the system. This increases user visibility for allocated CMA area and its utilization. Link: https://lkml.kernel.org/r/20240206045731.472759-1-anshuman.khandual@arm.com Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm/cma.c')
-rw-r--r--mm/cma.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/cma.c b/mm/cma.c
index 4902bbfe24f1..01f5a8f71ddf 100644
--- a/mm/cma.c
+++ b/mm/cma.c
@@ -562,6 +562,7 @@ bool cma_release(struct cma *cma, const struct page *pages,
free_contig_range(pfn, count);
cma_clear_bitmap(cma, pfn, count);
+ cma_sysfs_account_release_pages(cma, count);
trace_cma_release(cma->name, pfn, pages, count);
return true;