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 7A118C61DA4 for ; Fri, 3 Feb 2023 08:32:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232014AbjBCIcI (ORCPT ); Fri, 3 Feb 2023 03:32:08 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40426 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230144AbjBCIcG (ORCPT ); Fri, 3 Feb 2023 03:32:06 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8CDAB38B51 for ; Fri, 3 Feb 2023 00:32:05 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 42C3BB829C6 for ; Fri, 3 Feb 2023 08:32:04 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 04AABC433EF; Fri, 3 Feb 2023 08:32:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1675413122; bh=RAtN3EJDQ7w/03dr+GaC1INaxMzuX9epOdzJ3OdelEo=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=D9ymYxzvOxRruVkLlhZ85G+eBR+LXzdfB8BLISeUZ//q/LNEoaJs7maN8nhdOvtJC ADEmAJVJL3m/82uypWwEtJijSLczgXO+RLemZspfUCTfT8ThX+adDhZvxst/L8NCZ7 RiDosYU2NDa0hS54zK9N6+4k9h+Oy8Ff3ZCrlp6nWA+X4SA0qqABjY0NnosvG89dB7 Ey14mUf6BUxrfSMupOpDF/dDHCCI23b7wDey20LkDtoYD0e4G/uGjhyUbCfREipqMH zTcpjOcVWePbTYDiIM9OOCqxT9dbf+TH2i5cnpgyP3bRel34zMz3ycix92zFoiTA50 o0WEyGDqVTBZQ== Message-ID: <3589331b-a3ec-87e1-790d-387439672ea5@kernel.org> Date: Fri, 3 Feb 2023 16:31:58 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [PATCH 2/2 v3] f2fs: add sysfs nodes to set last_age_weight Content-Language: en-US To: qixiaoyu1 , Jaegeuk Kim Cc: linux-kernel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, Ping Xiong , Xiaoyu Qi References: <938a8e61-4e47-1acc-938c-c90d213d2c86@kernel.org> <20230202082028.9013-1-qixiaoyu1@xiaomi.com> <20230202082028.9013-2-qixiaoyu1@xiaomi.com> From: Chao Yu In-Reply-To: <20230202082028.9013-2-qixiaoyu1@xiaomi.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023/2/2 16:20, qixiaoyu1 wrote: > Signed-off-by: qixiaoyu1 > Signed-off-by: xiongping1 > --- > Documentation/ABI/testing/sysfs-fs-f2fs | 5 +++++ > fs/f2fs/extent_cache.c | 15 +++++++++------ > fs/f2fs/f2fs.h | 1 + > fs/f2fs/sysfs.c | 11 +++++++++++ > 4 files changed, 26 insertions(+), 6 deletions(-) > > diff --git a/Documentation/ABI/testing/sysfs-fs-f2fs b/Documentation/ABI/testing/sysfs-fs-f2fs > index 9e3756625a81..11af7dbb6bc9 100644 > --- a/Documentation/ABI/testing/sysfs-fs-f2fs > +++ b/Documentation/ABI/testing/sysfs-fs-f2fs > @@ -669,3 +669,8 @@ Contact: "Ping Xiong" > Description: When DATA SEPARATION is on, it controls the age threshold to indicate > the data blocks as warm. By default it was initialized as 2621440 blocks > (equals to 10GB). > + > +What: /sys/fs/f2fs//last_age_weight > +Date: January 2023 > +Contact: "Ping Xiong" > +Description: When DATA SEPARATION is on, it controls the weight of last data block age. > diff --git a/fs/f2fs/extent_cache.c b/fs/f2fs/extent_cache.c > index d9f12f404beb..ce99882ba81c 100644 > --- a/fs/f2fs/extent_cache.c > +++ b/fs/f2fs/extent_cache.c > @@ -871,19 +871,21 @@ void f2fs_update_read_extent_tree_range_compressed(struct inode *inode, > } > #endif > > -static unsigned long long __calculate_block_age(unsigned long long new, > +static unsigned long long __calculate_block_age(struct f2fs_sb_info *sbi, > + unsigned long long new, > unsigned long long old) > { > unsigned int rem_old, rem_new; > unsigned long long res; > + unsigned int weight = sbi->last_age_weight; > > - res = div_u64_rem(new, 100, &rem_new) * (100 - LAST_AGE_WEIGHT) > - + div_u64_rem(old, 100, &rem_old) * LAST_AGE_WEIGHT; > + res = div_u64_rem(new, 100, &rem_new) * (100 - weight) > + + div_u64_rem(old, 100, &rem_old) * weight; > > if (rem_new) > - res += rem_new * (100 - LAST_AGE_WEIGHT) / 100; > + res += rem_new * (100 - weight) / 100; > if (rem_old) > - res += rem_old * LAST_AGE_WEIGHT / 100; > + res += rem_old * weight / 100; > > return res; > } > @@ -917,7 +919,7 @@ static int __get_new_block_age(struct inode *inode, struct extent_info *ei, > cur_age = ULLONG_MAX - tei.last_blocks + cur_blocks; > > if (tei.age) > - ei->age = __calculate_block_age(cur_age, tei.age); > + ei->age = __calculate_block_age(sbi, cur_age, tei.age); > else > ei->age = cur_age; > ei->last_blocks = cur_blocks; > @@ -1233,6 +1235,7 @@ void f2fs_init_extent_cache_info(struct f2fs_sb_info *sbi) > atomic64_set(&sbi->allocated_data_blocks, 0); > sbi->hot_data_age_threshold = DEF_HOT_DATA_AGE_THRESHOLD; > sbi->warm_data_age_threshold = DEF_WARM_DATA_AGE_THRESHOLD; > + sbi->last_age_weight = LAST_AGE_WEIGHT; > } > > int __init f2fs_create_extent_cache(void) > diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h > index e8953c3dc81a..c3609cbc28c7 100644 > --- a/fs/f2fs/f2fs.h > +++ b/fs/f2fs/f2fs.h > @@ -1679,6 +1679,7 @@ struct f2fs_sb_info { > /* The threshold used for hot and warm data seperation*/ > unsigned int hot_data_age_threshold; > unsigned int warm_data_age_threshold; > + unsigned int last_age_weight; > > /* basic filesystem units */ > unsigned int log_sectors_per_block; /* log2 sectors per block */ > diff --git a/fs/f2fs/sysfs.c b/fs/f2fs/sysfs.c > index 83a366f3ee80..a70cf674d8e7 100644 > --- a/fs/f2fs/sysfs.c > +++ b/fs/f2fs/sysfs.c > @@ -686,6 +686,15 @@ static ssize_t __sbi_store(struct f2fs_attr *a, > return count; > } > > + if (!strcmp(a->attr.name, "last_age_weight")) { > + if (t <= 0 || t >= 100) Could 0 or 100 be a valid value? Thanks, > + return -EINVAL; > + if (t == *ui) > + return count; > + *ui = (unsigned int)t; > + return count; > + } > + > *ui = (unsigned int)t; > > return count; > @@ -944,6 +953,7 @@ F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, revoked_atomic_block, revoked_atomic_block) > /* For block age extent cache */ > F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, hot_data_age_threshold, hot_data_age_threshold); > F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, warm_data_age_threshold, warm_data_age_threshold); > +F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, last_age_weight, last_age_weight); > > #define ATTR_LIST(name) (&f2fs_attr_##name.attr) > static struct attribute *f2fs_attrs[] = { > @@ -1042,6 +1052,7 @@ static struct attribute *f2fs_attrs[] = { > ATTR_LIST(revoked_atomic_block), > ATTR_LIST(hot_data_age_threshold), > ATTR_LIST(warm_data_age_threshold), > + ATTR_LIST(last_age_weight), > NULL, > }; > ATTRIBUTE_GROUPS(f2fs);