summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorSeongJae Park <sj@kernel.org>2025-07-05 10:49:56 -0700
committerAndrew Morton <akpm@linux-foundation.org>2025-07-19 18:59:43 -0700
commit6a52ac0b60317337d57c57c45e6abd4936c386c3 (patch)
treeb3ddbd228f6493ad04575390eae5c62898f6dbab /samples
parentc1db0cb157c6ddd6e24eb62673022b665ca688b9 (diff)
samples/damon/prcl: rename to have damon_sample_ prefix
DAMON sample module, prcl has its name 'prcl'. It could conflict with future modules, and not very easy to identify it by name. Use a prefix, "damon_sample_" for the name. Note that this could break users if they depend on the old name. But it is just a sample, so no such usage is expected, or known. Even if such usage exists, updating it for the new name should be straightforward. Link: https://lkml.kernel.org/r/20250705175000.56259-3-sj@kernel.org Signed-off-by: SeongJae Park <sj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'samples')
-rw-r--r--samples/damon/prcl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/samples/damon/prcl.c b/samples/damon/prcl.c
index a9d7629d70f0..4b0e47718c62 100644
--- a/samples/damon/prcl.c
+++ b/samples/damon/prcl.c
@@ -11,6 +11,11 @@
#include <linux/kernel.h>
#include <linux/module.h>
+#ifdef MODULE_PARAM_PREFIX
+#undef MODULE_PARAM_PREFIX
+#endif
+#define MODULE_PARAM_PREFIX "damon_sample_prcl."
+
static int target_pid __read_mostly;
module_param(target_pid, int, 0600);