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>
 
 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);
 }
 
 static const struct kernel_param_ops enabled_param_ops = {
-       .set = enabled_store,
+       .set = damon_reclaim_enabled_store,
        .get = param_get_bool,
 };