summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSJ Park <sj@kernel.org>2026-07-14 07:35:35 -0700
committerAndrew Morton <akpm@linux-foundation.org>2026-08-06 18:57:05 -0700
commit300cb8592dd2722783eacb2fece0325570be1b0e (patch)
tree4393850ef00cca90bc166e70ba87eefd59129e6d /include
parente0ea9467dbefc5803fd36b6f1714c2be51518977 (diff)
downloadlinux-300cb8592dd2722783eacb2fece0325570be1b0e.tar.gz
linux-300cb8592dd2722783eacb2fece0325570be1b0e.zip
mm/damon/core: hide private damon_target fields
'nr_regions', 'regions_list' and 'list' fields of damon_target are intended to be used by only the DAMON core layer. Those are mistakenly not marked as private. Mark as private. Link: https://lore.kernel.org/20260714143544.101305-3-sj@kernel.org Signed-off-by: SJ Park <sj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/damon.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/linux/damon.h b/include/linux/damon.h
index d32377e7e535..6e160557a001 100644
--- a/include/linux/damon.h
+++ b/include/linux/damon.h
@@ -79,9 +79,6 @@ struct damon_region {
/**
* struct damon_target - Represents a monitoring target.
* @pid: The PID of the virtual address space to monitor.
- * @nr_regions: Number of monitoring target regions of this target.
- * @regions_list: Head of the monitoring target regions of this target.
- * @list: List head for siblings.
* @obsolete: Whether the commit destination target is obsolete.
*
* Each monitoring context could have multiple targets. For example, a context
@@ -95,10 +92,14 @@ struct damon_region {
*/
struct damon_target {
struct pid *pid;
+ bool obsolete;
+/* private: */
+ /* Number of monitoring target regions of this target. */
unsigned int nr_regions;
+ /* Head of the monitoring target regions of this target. */
struct list_head regions_list;
+ /* List head for siblings. */
struct list_head list;
- bool obsolete;
};
/**