mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 22:14:03 +02:00
mm/damon/core: hide private damon_probe fields
'filters' and 'list' fields of damon_probe are intended to be used by only the DAMON core layer. However, those are mistakenly not marked as private. Mark as private. Link: https://lore.kernel.org/20260714143544.101305-9-sj@kernel.org Signed-off-by: SJ Park <sj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
55686d63f3
commit
6a0c38aba6
|
|
@ -775,12 +775,13 @@ struct damon_filter {
|
|||
* struct damon_probe - Data region attribute probe.
|
||||
*
|
||||
* @weight: Relative priority of the attribute for this probe.
|
||||
* @filters: Filters for assessing if a given region is for this probe.
|
||||
* @list: Siblings list.
|
||||
*/
|
||||
struct damon_probe {
|
||||
unsigned int weight;
|
||||
/* private: */
|
||||
/* Filters for assessing if a given region is for this probe. */
|
||||
struct list_head filters;
|
||||
/* Siblings list. */
|
||||
struct list_head list;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user