lkml.org 
[lkml]   [2022]   [Nov]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
SubjectRe: [RFC PATCH 07/11] mm/damon/sysfs-schemes: connect filter directory and filters directory
Date
On Thu, 24 Nov 2022 21:21:10 +0000 SeongJae Park <sj@kernel.org> wrote:

> Implement 'nr_filters' file under 'filters' directory, which will be
> used to populate specific number of 'filter' directory under the
> directory, similar to other 'nr_*' files in DAMON sysfs interface.
>
> Signed-off-by: SeongJae Park <sj@kernel.org>
> ---
> mm/damon/sysfs-schemes.c | 67 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 67 insertions(+)
>
> diff --git a/mm/damon/sysfs-schemes.c b/mm/damon/sysfs-schemes.c
> index afbfc55a8e84..7f2bab617156 100644
> --- a/mm/damon/sysfs-schemes.c
> +++ b/mm/damon/sysfs-schemes.c
[...]
> @@ -401,6 +407,57 @@ damon_sysfs_scheme_filters_alloc(void)
> return kzalloc(sizeof(struct damon_sysfs_scheme_filters), GFP_KERNEL);
> }
>
> +static void damon_sysfs_scheme_filters_rm_dirs(
> + struct damon_sysfs_scheme_filters *filters)
> +{
> + struct damon_sysfs_scheme_filter **filters_arr = filters->filters_arr;
> + int i;
> +
> + for (i = 0; i < filters->nr; i++)
> + kobject_put(&filters_arr[i]->kobj);
> + filters->nr = 0;
> + kfree(filters_arr);
> + filters->filters_arr = NULL;
> +}

This function should also be called from damon_Sysfs_scheme_rm_dirs() but this
patch is missing that. This could result in undeleted filters directory when
writing 0 to 'nr_schemes' file. Next version of this patchset will fix that.


Thanks,
SJ

[...]

\
 
 \ /
  Last update: 2022-11-27 19:23    [W:0.071 / U:0.184 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site