From: SeongJae Park <sj@kernel.org>
To: Changbin Du <changbin.du@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
SeongJae Park <sj@kernel.org>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm/damon: remove return value from before_terminate callback
Date: Fri, 29 Oct 2021 07:22:18 +0000 [thread overview]
Message-ID: <20211029072218.16880-1-sj@kernel.org> (raw)
In-Reply-To: <20211029005023.8895-1-changbin.du@gmail.com>
On Fri, 29 Oct 2021 08:50:23 +0800 Changbin Du <changbin.du@gmail.com> wrote:
> Since the return value of 'before_terminate' callback is never used,
> we make it have no return value.
>
> Signed-off-by: Changbin Du <changbin.du@gmail.com>
Thank you for this patch!
Reviewed-by: SeongJae Park <sj@kernel.org>
Thanks,
SJ
> ---
> include/linux/damon.h | 2 +-
> mm/damon/dbgfs.c | 5 ++---
> 2 files changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/include/linux/damon.h b/include/linux/damon.h
> index 50c6eb0dee1f..041966786270 100644
> --- a/include/linux/damon.h
> +++ b/include/linux/damon.h
> @@ -322,7 +322,7 @@ struct damon_callback {
> int (*before_start)(struct damon_ctx *context);
> int (*after_sampling)(struct damon_ctx *context);
> int (*after_aggregation)(struct damon_ctx *context);
> - int (*before_terminate)(struct damon_ctx *context);
> + void (*before_terminate)(struct damon_ctx *context);
> };
>
> /**
> diff --git a/mm/damon/dbgfs.c b/mm/damon/dbgfs.c
> index befb27a29aab..eccc14b34901 100644
> --- a/mm/damon/dbgfs.c
> +++ b/mm/damon/dbgfs.c
> @@ -645,18 +645,17 @@ static void dbgfs_fill_ctx_dir(struct dentry *dir, struct damon_ctx *ctx)
> debugfs_create_file(file_names[i], 0600, dir, ctx, fops[i]);
> }
>
> -static int dbgfs_before_terminate(struct damon_ctx *ctx)
> +static void dbgfs_before_terminate(struct damon_ctx *ctx)
> {
> struct damon_target *t, *next;
>
> if (!targetid_is_pid(ctx))
> - return 0;
> + return;
>
> damon_for_each_target_safe(t, next, ctx) {
> put_pid((struct pid *)t->id);
> damon_destroy_target(t);
> }
> - return 0;
> }
>
> static struct damon_ctx *dbgfs_new_ctx(void)
> --
> 2.32.0
prev parent reply other threads:[~2021-10-29 7:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-29 0:50 [PATCH] mm/damon: remove return value from before_terminate callback Changbin Du
2021-10-29 7:22 ` SeongJae Park [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211029072218.16880-1-sj@kernel.org \
--to=sj@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=changbin.du@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.