]> git.baikalelectronics.ru Git - kernel.git/commitdiff
mm/damon: return void from damon_set_schemes()
authorKaixu Xia <kaixuxia@tencent.com>
Fri, 16 Sep 2022 15:20:35 +0000 (23:20 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 3 Oct 2022 21:03:27 +0000 (14:03 -0700)
There is no point in returning an int from damon_set_schemes().  It always
returns 0 which is meaningless for the caller, so change it to return void
directly.

Link: https://lkml.kernel.org/r/1663341635-12675-1-git-send-email-kaixuxia@tencent.com
Signed-off-by: Kaixu Xia <kaixuxia@tencent.com>
Reviewed-by: SeongJae Park <sj@kernel.org>
Reviewed-by: Muchun Song <songmuchun@bytedance.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/damon.h
mm/damon/core.c
mm/damon/dbgfs.c
mm/damon/lru_sort.c
mm/damon/reclaim.c

index 1dda8d0068e54a412422a3de08250ae004087a6d..e7808a84675fb5b68468a3ac114621f16ca30400 100644 (file)
@@ -541,7 +541,7 @@ unsigned int damon_nr_regions(struct damon_target *t);
 struct damon_ctx *damon_new_ctx(void);
 void damon_destroy_ctx(struct damon_ctx *ctx);
 int damon_set_attrs(struct damon_ctx *ctx, struct damon_attrs *attrs);
-int damon_set_schemes(struct damon_ctx *ctx,
+void damon_set_schemes(struct damon_ctx *ctx,
                        struct damos **schemes, ssize_t nr_schemes);
 int damon_nr_running_ctxs(void);
 bool damon_is_registered_ops(enum damon_ops_id id);
index a843673c11cfc5a252fd2f6683af4ee5a03efaec..9c80c6eb00c24184c9827c212d12055d252523c4 100644 (file)
@@ -454,10 +454,8 @@ int damon_set_attrs(struct damon_ctx *ctx, struct damon_attrs *attrs)
  *
  * This function should not be called while the kdamond of the context is
  * running.
- *
- * Return: 0 if success, or negative error code otherwise.
  */
-int damon_set_schemes(struct damon_ctx *ctx, struct damos **schemes,
+void damon_set_schemes(struct damon_ctx *ctx, struct damos **schemes,
                        ssize_t nr_schemes)
 {
        struct damos *s, *next;
@@ -467,7 +465,6 @@ int damon_set_schemes(struct damon_ctx *ctx, struct damos **schemes,
                damon_destroy_scheme(s);
        for (i = 0; i < nr_schemes; i++)
                damon_add_scheme(ctx, schemes[i]);
-       return 0;
 }
 
 /**
index c00eba4448d850536c41b88862b3d70781faae6b..6f0ae7d3ae39bb62125cb654d1083c96aa4dab43 100644 (file)
@@ -307,11 +307,9 @@ static ssize_t dbgfs_schemes_write(struct file *file, const char __user *buf,
                goto unlock_out;
        }
 
-       ret = damon_set_schemes(ctx, schemes, nr_schemes);
-       if (!ret) {
-               ret = count;
-               nr_schemes = 0;
-       }
+       damon_set_schemes(ctx, schemes, nr_schemes);
+       ret = count;
+       nr_schemes = 0;
 
 unlock_out:
        mutex_unlock(&ctx->kdamond_lock);
index 4a40054ba03bf2c99354cdaa581545a9ba883f45..d7eb72b41cb67c629abacc9697fe642c3a6a72b2 100644 (file)
@@ -203,9 +203,7 @@ static int damon_lru_sort_apply_parameters(void)
        scheme = damon_lru_sort_new_hot_scheme(hot_thres);
        if (!scheme)
                return -ENOMEM;
-       err = damon_set_schemes(ctx, &scheme, 1);
-       if (err)
-               return err;
+       damon_set_schemes(ctx, &scheme, 1);
 
        cold_thres = cold_min_age / damon_lru_sort_mon_attrs.aggr_interval;
        scheme = damon_lru_sort_new_cold_scheme(cold_thres);
index 039fa55e0ae9cc81b39b852729c4a6e7db2a5f3c..3d59ab11b7b39257660d60fe532f7106ad198f39 100644 (file)
@@ -155,9 +155,7 @@ static int damon_reclaim_apply_parameters(void)
        scheme = damon_reclaim_new_scheme();
        if (!scheme)
                return -ENOMEM;
-       err = damon_set_schemes(ctx, &scheme, 1);
-       if (err)
-               return err;
+       damon_set_schemes(ctx, &scheme, 1);
 
        if (monitor_region_start > monitor_region_end)
                return -EINVAL;