From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B8B97C433EF for ; Wed, 20 Oct 2021 01:21:41 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id F35316103B for ; Wed, 20 Oct 2021 01:21:40 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org F35316103B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id E1ECF6B0071; Tue, 19 Oct 2021 21:21:39 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id DA7336B0072; Tue, 19 Oct 2021 21:21:39 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id C6E506B0073; Tue, 19 Oct 2021 21:21:39 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0120.hostedemail.com [216.40.44.120]) by kanga.kvack.org (Postfix) with ESMTP id B1BF26B0071 for ; Tue, 19 Oct 2021 21:21:39 -0400 (EDT) Received: from smtpin01.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id 5EB22181AF5C2 for ; Wed, 20 Oct 2021 01:21:39 +0000 (UTC) X-FDA: 78715063518.01.2B2789A Received: from out30-130.freemail.mail.aliyun.com (out30-130.freemail.mail.aliyun.com [115.124.30.130]) by imf10.hostedemail.com (Postfix) with ESMTP id 12923600198E for ; Wed, 20 Oct 2021 01:21:33 +0000 (UTC) X-Alimail-AntiSpam:AC=PASS;BC=-1|-1;BR=01201311R101e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01e04407;MF=xhao@linux.alibaba.com;NM=1;PH=DS;RN=5;SR=0;TI=SMTPD_---0Ut-kjiw_1634692891; Received: from B-X3VXMD6M-2058.local(mailfrom:xhao@linux.alibaba.com fp:SMTPD_---0Ut-kjiw_1634692891) by smtp.aliyun-inc.com(127.0.0.1); Wed, 20 Oct 2021 09:21:32 +0800 From: Xin Hao Reply-To: xhao@linux.alibaba.com Subject: Re: [PATCH v2 2/2] mm/damon/dbgfs: Add adaptive_targets list check before enable monitor_on To: SeongJae Park Cc: sjpark@amazon.de, akpm@linux-foundation.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org References: <20211019154243.17474-1-sj@kernel.org> Message-ID: <7376a28e-ac8d-06d0-fa05-81656cd3a994@linux.alibaba.com> Date: Wed, 20 Oct 2021 09:21:30 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <20211019154243.17474-1-sj@kernel.org> Content-Type: text/plain; charset=utf-8; format=flowed X-Stat-Signature: 18kzzwkmexgjiam6o7feoyfw56388guf Authentication-Results: imf10.hostedemail.com; dkim=none; spf=pass (imf10.hostedemail.com: domain of xhao@linux.alibaba.com designates 115.124.30.130 as permitted sender) smtp.mailfrom=xhao@linux.alibaba.com; dmarc=pass (policy=none) header.from=alibaba.com X-Rspamd-Server: rspam04 X-Rspamd-Queue-Id: 12923600198E X-HE-Tag: 1634692893-741479 Content-Transfer-Encoding: quoted-printable X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: On 2021/10/19 =E4=B8=8B=E5=8D=8811:42, SeongJae Park wrote: > Hello Xin, > > On Tue, 19 Oct 2021 22:26:04 +0800 Xin Hao wro= te: > >> When the ctx->adaptive_targets list is empty, >> i did some test on monitor_on interface like this. > s/i/I/ thanks >> echo on > /sys/kernel/debug/damon/monitor_on >> [ 851.988307] damon: kdamond (5390) starts > Could you please add four spaces in the beginning of this example termi= nal > outputs? Also, I think confirming targets are empty like below before = writing > 'on' could make this example better. > > # cat /sys/kernel/debug/damon/target_ids > # > > or, like below. > > # echo > /sys/kernel/debug/damon/target_ids Oh! thank you so much, i will fix it. > >> Though the ctx->adaptive_targets list is empty, but the >> kthread_run still be called, and the kdamond.x thread still >> be created, this is meaningless. >> >> So there adds a judgment in 'dbgfs_monitor_on_write', >> if the ctx->adaptive_targets list is empty, return -EINVAL. >> >> Signed-off-by: Xin Hao >> --- >> include/linux/damon.h | 1 + >> mm/damon/core.c | 5 +++++ >> mm/damon/dbgfs.c | 10 ++++++++-- >> 3 files changed, 14 insertions(+), 2 deletions(-) >> >> diff --git a/include/linux/damon.h b/include/linux/damon.h >> index 715dadd21f7c..06acf73fe9db 100644 >> --- a/include/linux/damon.h >> +++ b/include/linux/damon.h >> @@ -316,6 +316,7 @@ void damon_destroy_scheme(struct damos *s); >> >> struct damon_target *damon_new_target(unsigned long id); >> void damon_add_target(struct damon_ctx *ctx, struct damon_target *t)= ; >> +int damon_target_empty(struct damon_ctx *ctx); > Seems 'bool' would be better for the return type? ok! > >> void damon_free_target(struct damon_target *t); >> void damon_destroy_target(struct damon_target *t); >> unsigned int damon_nr_regions(struct damon_target *t); >> diff --git a/mm/damon/core.c b/mm/damon/core.c >> index 2f6785737902..c651b49249e5 100644 >> --- a/mm/damon/core.c >> +++ b/mm/damon/core.c >> @@ -156,6 +156,11 @@ void damon_add_target(struct damon_ctx *ctx, stru= ct damon_target *t) >> list_add_tail(&t->list, &ctx->adaptive_targets); >> } >> >> +int damon_target_empty(struct damon_ctx *ctx) >> +{ >> + return list_empty(&ctx->adaptive_targets); >> +} >> + >> static void damon_del_target(struct damon_target *t) >> { >> list_del(&t->list); >> diff --git a/mm/damon/dbgfs.c b/mm/damon/dbgfs.c >> index 38188347d8ab..bac42dd358d1 100644 >> --- a/mm/damon/dbgfs.c >> +++ b/mm/damon/dbgfs.c >> @@ -865,9 +865,15 @@ static ssize_t dbgfs_monitor_on_write(struct file= *file, >> return -EINVAL; >> } >> >> - if (!strncmp(kbuf, "on", count)) >> + if (!strncmp(kbuf, "on", count)) { >> + int i; >> + >> + for (i =3D 0; i < dbgfs_nr_ctxs; i++) { >> + if (damon_target_empty(dbgfs_ctxs[i])) >> + return -EINVAL; >> + } >> err =3D damon_start(dbgfs_ctxs, dbgfs_nr_ctxs); >> - else if (!strncmp(kbuf, "off", count)) >> + } else if (!strncmp(kbuf, "off", count)) >> err =3D damon_stop(dbgfs_ctxs, dbgfs_nr_ctxs); >> else >> err =3D -EINVAL; > Please use braces for all above branches: Ok=EF=BC=8Ci will correct it. > > https://docs.kernel.org/process/coding-style.html#placing-braces-and-sp= aces > > > Thanks, > SJ > >> -- >> 2.31.0 --=20 Best Regards! Xin Hao