mm/damon/modules: deduplicate init steps for DAMON context setup
authorSeongJae Park <sj@kernel.org>
Wed, 26 Oct 2022 22:59:42 +0000 (22:59 +0000)
committerAndrew Morton <akpm@linux-foundation.org>
Wed, 30 Nov 2022 23:01:26 +0000 (15:01 -0800)
DAMON_RECLAIM and DAMON_LRU_SORT has duplicated code for DAMON context and
target initializations.  Deduplicate the part by implementing a function
for the initialization in 'modules-common.c' and using it.

Link: https://lkml.kernel.org/r/20221026225943.100429-12-sj@kernel.org
Signed-off-by: SeongJae Park <sj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/damon/Makefile
mm/damon/lru_sort.c
mm/damon/modules-common.c [new file with mode: 0644]
mm/damon/modules-common.h
mm/damon/reclaim.c

index 1e86f5253d7ff90fb96c586050ca14933c21fcd8..f7add3f4aa793b012bb644fbd85d677d1d3cbb98 100644 (file)
@@ -5,5 +5,5 @@ obj-$(CONFIG_DAMON_VADDR)       += ops-common.o vaddr.o
 obj-$(CONFIG_DAMON_PADDR)      += ops-common.o paddr.o
 obj-$(CONFIG_DAMON_SYSFS)      += sysfs-common.o sysfs-schemes.o sysfs.o
 obj-$(CONFIG_DAMON_DBGFS)      += dbgfs.o
-obj-$(CONFIG_DAMON_RECLAIM)    += reclaim.o
-obj-$(CONFIG_DAMON_LRU_SORT)   += lru_sort.o
+obj-$(CONFIG_DAMON_RECLAIM)    += modules-common.o reclaim.o
+obj-$(CONFIG_DAMON_LRU_SORT)   += modules-common.o lru_sort.o
index efbc2bda8b9cdaa4448437d350f37a705712d6b5..a1896c5acfe97817c0583907a0bcbe4779616129 100644 (file)
@@ -314,25 +314,14 @@ static int damon_lru_sort_after_wmarks_check(struct damon_ctx *c)
 
 static int __init damon_lru_sort_init(void)
 {
-       ctx = damon_new_ctx();
-       if (!ctx)
-               return -ENOMEM;
+       int err = damon_modules_new_paddr_ctx_target(&ctx, &target);
 
-       if (damon_select_ops(ctx, DAMON_OPS_PADDR)) {
-               damon_destroy_ctx(ctx);
-               return -EINVAL;
-       }
+       if (err)
+               return err;
 
        ctx->callback.after_wmarks_check = damon_lru_sort_after_wmarks_check;
        ctx->callback.after_aggregation = damon_lru_sort_after_aggregation;
 
-       target = damon_new_target();
-       if (!target) {
-               damon_destroy_ctx(ctx);
-               return -ENOMEM;
-       }
-       damon_add_target(ctx, target);
-
        schedule_delayed_work(&damon_lru_sort_timer, 0);
 
        damon_lru_sort_initialized = true;
diff --git a/mm/damon/modules-common.c b/mm/damon/modules-common.c
new file mode 100644 (file)
index 0000000..b2381a8
--- /dev/null
@@ -0,0 +1,42 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Common Primitives for DAMON Modules
+ *
+ * Author: SeongJae Park <sjpark@amazon.de>
+ */
+
+#include <linux/damon.h>
+
+#include "modules-common.h"
+
+/*
+ * Allocate, set, and return a DAMON context for the physical address space.
+ * @ctxp:      Pointer to save the point to the newly created context
+ * @targetp:   Pointer to save the point to the newly created target
+ */
+int damon_modules_new_paddr_ctx_target(struct damon_ctx **ctxp,
+               struct damon_target **targetp)
+{
+       struct damon_ctx *ctx;
+       struct damon_target *target;
+
+       ctx = damon_new_ctx();
+       if (!ctx)
+               return -ENOMEM;
+
+       if (damon_select_ops(ctx, DAMON_OPS_PADDR)) {
+               damon_destroy_ctx(ctx);
+               return -EINVAL;
+       }
+
+       target = damon_new_target();
+       if (!target) {
+               damon_destroy_ctx(ctx);
+               return -ENOMEM;
+       }
+       damon_add_target(ctx, target);
+
+       *ctxp = ctx;
+       *targetp = target;
+       return 0;
+}
index 5a4921851d326380aaa32a524831a4047c4f6e6c..f49cdb4170051eb6cf8aa7a71846e2aee6c219f2 100644 (file)
@@ -44,3 +44,6 @@
                        0400);                                          \
        module_param_named(nr_##qt_exceed_name, stat.qt_exceeds, ulong, \
                        0400);
+
+int damon_modules_new_paddr_ctx_target(struct damon_ctx **ctxp,
+               struct damon_target **targetp);
index 162c9b1ca00fd0de35264bc9f215a797a981a44a..3173f373435c2867221cfc8cb3fff356d2ace5e9 100644 (file)
@@ -256,25 +256,14 @@ static int damon_reclaim_after_wmarks_check(struct damon_ctx *c)
 
 static int __init damon_reclaim_init(void)
 {
-       ctx = damon_new_ctx();
-       if (!ctx)
-               return -ENOMEM;
+       int err = damon_modules_new_paddr_ctx_target(&ctx, &target);
 
-       if (damon_select_ops(ctx, DAMON_OPS_PADDR)) {
-               damon_destroy_ctx(ctx);
-               return -EINVAL;
-       }
+       if (err)
+               return err;
 
        ctx->callback.after_wmarks_check = damon_reclaim_after_wmarks_check;
        ctx->callback.after_aggregation = damon_reclaim_after_aggregation;
 
-       target = damon_new_target();
-       if (!target) {
-               damon_destroy_ctx(ctx);
-               return -ENOMEM;
-       }
-       damon_add_target(ctx, target);
-
        schedule_delayed_work(&damon_reclaim_timer, 0);
 
        damon_reclaim_initialized = true;