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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D8E3CC61DA4 for ; Tue, 7 Mar 2023 01:23:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229813AbjCGBXO (ORCPT ); Mon, 6 Mar 2023 20:23:14 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51844 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229718AbjCGBXN (ORCPT ); Mon, 6 Mar 2023 20:23:13 -0500 Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 98E52252AD for ; Mon, 6 Mar 2023 17:23:06 -0800 (PST) Received: from dggpemm500001.china.huawei.com (unknown [172.30.72.55]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4PVyNW50MbzrS4M; Tue, 7 Mar 2023 09:22:19 +0800 (CST) Received: from [10.174.177.243] (10.174.177.243) by dggpemm500001.china.huawei.com (7.185.36.107) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.21; Tue, 7 Mar 2023 09:22:33 +0800 Message-ID: <174e75a4-f03c-a542-5f6a-651abb5dec58@huawei.com> Date: Tue, 7 Mar 2023 09:22:33 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.5.1 Subject: Re: [PATCH v2 2/3] mm/damon/paddr: minor refactor of damon_pa_young() Content-Language: en-US To: SeongJae Park CC: Andrew Morton , , , References: <20230306212727.303846-1-sj@kernel.org> From: Kefeng Wang In-Reply-To: <20230306212727.303846-1-sj@kernel.org> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.174.177.243] X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To dggpemm500001.china.huawei.com (7.185.36.107) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/3/7 5:27, SeongJae Park wrote: > Hi Kefeng, > > On Mon, 6 Mar 2023 09:56:49 +0800 Kefeng Wang wrote: > >> >> >> On 2023/3/6 9:10, Kefeng Wang wrote: >>> >>> >>> On 2023/3/4 2:39, SeongJae Park wrote: >>>> Hi Kefeng, >>>> >>>> On Fri, 3 Mar 2023 16:43:42 +0800 Kefeng Wang >>>> wrote: >>>> >>>>> Omit three lines by unified folio_put(), and make code more clear. >>>>> >>>>> Signed-off-by: Kefeng Wang >>>>> --- >>>>> mm/damon/paddr.c | 11 ++++------- >>>>> 1 file changed, 4 insertions(+), 7 deletions(-) >>>>> >>>>> diff --git a/mm/damon/paddr.c b/mm/damon/paddr.c >>>>> index 3fda00a0f786..2ef9db0189ca 100644 >>>>> --- a/mm/damon/paddr.c >>>>> +++ b/mm/damon/paddr.c >>>>> @@ -130,24 +130,21 @@ static bool damon_pa_young(unsigned long paddr, >>>>> unsigned long *folio_sz) >>>>> accessed = false; >>>>> else >>>>> accessed = true; >>>>> - folio_put(folio); >>>>> goto out; >>>> >>>> Because you moved 'out' label to not include *folio_sz setting, >>>> folio_sz will >>>> not set in this case. It should be set. >>> oh, it should be fixed. >>>> >>>>> } >>>>> need_lock = !folio_test_anon(folio) || folio_test_ksm(folio); >>>>> - if (need_lock && !folio_trylock(folio)) { >>>>> - folio_put(folio); >>>>> - return false; >>>>> - } >> >> Hi SJ, apart from above issue, it looks that this branch need the >> folio_size() setting, right? > > folio_sz is effectively used by caller of damon_pa_young() only if this > function returns true, so this branch doesn't need to set folio_sz. __damon_pa_check_access() store last_addr, last_accessed and last_folio_sz, even damon_pa_young() return false, the following check still use last_folio_sz, ALIGN_DOWN(last_addr, last_folio_sz) == ALIGN_DOWN(r->sampling_addr, last_folio_sz) but last_folio_sz is not up to date, so I think it need to update, and update last_folio_sz is harmless, which could let's unify the return path, correct me if I am wrong.