linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: SeongJae Park <sj@kernel.org>
To: xiakaixu1987@gmail.com
Cc: sj@kernel.org, akpm@linux-foundation.org, damon@lists.linux.dev,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	Kaixu Xia <kaixuxia@tencent.com>
Subject: Re: [PATCH] mm/damon/sysfs: simplify the judgement whether kdamonds are busy
Date: Mon,  5 Sep 2022 18:20:17 +0000	[thread overview]
Message-ID: <20220905182017.50625-1-sj@kernel.org> (raw)
In-Reply-To: <1662302166-13216-1-git-send-email-kaixuxia@tencent.com>

Hi Kaixu,

On Sun, 4 Sep 2022 22:36:06 +0800 xiakaixu1987@gmail.com wrote:

> From: Kaixu Xia <kaixuxia@tencent.com>
> 
> It is unnecessary to get the number of the running kdamond to judge
> whether kdamonds are busy. Here we can use the
> damon_sysfs_kdamond_running() helper and return -EBUSY directly
> when finding a running kdamond. Meanwhile, merging with the judgement
> that a kdamond has current sysfs command callback request to make
> the code more clear.
> 
> Signed-off-by: Kaixu Xia <kaixuxia@tencent.com>

Reviewed-by: SeongJae Park <sj@kernel.org>


Thanks,
SJ

> ---
>  mm/damon/sysfs.c | 25 +++++++------------------
>  1 file changed, 7 insertions(+), 18 deletions(-)
> 
> diff --git a/mm/damon/sysfs.c b/mm/damon/sysfs.c
> index 7488e27c87c3..fe6c6870cf86 100644
> --- a/mm/damon/sysfs.c
> +++ b/mm/damon/sysfs.c
> @@ -2657,23 +2657,18 @@ static void damon_sysfs_kdamonds_rm_dirs(struct damon_sysfs_kdamonds *kdamonds)
>  	kdamonds->kdamonds_arr = NULL;
>  }
>  
> -static int damon_sysfs_nr_running_ctxs(struct damon_sysfs_kdamond **kdamonds,
> +static bool damon_sysfs_kdamonds_busy(struct damon_sysfs_kdamond **kdamonds,
>  		int nr_kdamonds)
>  {
> -	int nr_running_ctxs = 0;
>  	int i;
>  
>  	for (i = 0; i < nr_kdamonds; i++) {
> -		struct damon_ctx *ctx = kdamonds[i]->damon_ctx;
> -
> -		if (!ctx)
> -			continue;
> -		mutex_lock(&ctx->kdamond_lock);
> -		if (ctx->kdamond)
> -			nr_running_ctxs++;
> -		mutex_unlock(&ctx->kdamond_lock);
> +		if (damon_sysfs_kdamond_running(kdamonds[i]) ||
> +		    damon_sysfs_cmd_request.kdamond == kdamonds[i])
> +			return true;
>  	}
> -	return nr_running_ctxs;
> +
> +	return false;
>  }
>  
>  static int damon_sysfs_kdamonds_add_dirs(struct damon_sysfs_kdamonds *kdamonds,
> @@ -2682,15 +2677,9 @@ static int damon_sysfs_kdamonds_add_dirs(struct damon_sysfs_kdamonds *kdamonds,
>  	struct damon_sysfs_kdamond **kdamonds_arr, *kdamond;
>  	int err, i;
>  
> -	if (damon_sysfs_nr_running_ctxs(kdamonds->kdamonds_arr, kdamonds->nr))
> +	if (damon_sysfs_kdamonds_busy(kdamonds->kdamonds_arr, kdamonds->nr))
>  		return -EBUSY;
>  
> -	for (i = 0; i < kdamonds->nr; i++) {
> -		if (damon_sysfs_cmd_request.kdamond ==
> -				kdamonds->kdamonds_arr[i])
> -			return -EBUSY;
> -	}
> -
>  	damon_sysfs_kdamonds_rm_dirs(kdamonds);
>  	if (!nr_kdamonds)
>  		return 0;
> -- 
> 2.27.0
> 
> 


      reply	other threads:[~2022-09-05 18:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-04 14:36 xiakaixu1987
2022-09-05 18:20 ` SeongJae Park [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220905182017.50625-1-sj@kernel.org \
    --to=sj@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=damon@lists.linux.dev \
    --cc=kaixuxia@tencent.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=xiakaixu1987@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox