Skip to content

Commit

Permalink
mm/damon/reclaim: add 'damon_reclaim_' prefix to 'enabled_store()'
Browse files Browse the repository at this point in the history
This commit adds 'damon_reclaim_' prefix to 'enabled_store()', so that we
can distinguish it easily from the stack trace using 'faddr2line.sh' like
tools.

Link: https://lkml.kernel.org/r/20220606182310.48781-7-sj@kernel.org
Signed-off-by: SeongJae Park <sj@kernel.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
  • Loading branch information
SeongJae Park authored and akpm committed Jul 4, 2022
1 parent f943e7e commit d79905c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mm/damon/reclaim.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ static DECLARE_DELAYED_WORK(damon_reclaim_timer, damon_reclaim_timer_fn);

static bool damon_reclaim_initialized;

static int enabled_store(const char *val,
static int damon_reclaim_enabled_store(const char *val,
const struct kernel_param *kp)
{
int rc = param_set_bool(val, kp);
Expand All @@ -388,7 +388,7 @@ static int enabled_store(const char *val,
}

static const struct kernel_param_ops enabled_param_ops = {
.set = enabled_store,
.set = damon_reclaim_enabled_store,
.get = param_get_bool,
};

Expand Down

0 comments on commit d79905c

Please sign in to comment.