mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
mm/damon/reclaim: add 'damon_reclaim_' prefix to 'enabled_store()'
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>
This commit is contained in:
parent
f943e7e3a4
commit
d79905c77f
@ -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);
|
||||
@ -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,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user