From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9048F385539 for ; Thu, 20 Aug 2026 03:17:30 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787195852; cv=none; b=Sqho+YczQNKQOpxpGh6Msn4JB4pZ0KSzrXy4obBXOE4BBQyqMQkEQ6HeHIMp0OA9CS2sPM7ZFK8n13YFu0Pl+9RD7fmBGjLyJ05dxZ55veIgfVXRi41JE9Iz8wONT3vNEx+OSgTkyqmInfk2g6S3FHPensxU5W4TtebXH3XZqbU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787195852; c=relaxed/simple; bh=6yqid0ASeMa+P24OLeYiHk0QZf1/lQMZBBcouRn7ByE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=p0FwUXKjfpfr41ZEDXE0oQjeVDKkmCiNw7O0D8gwmnXpPsn8fYyg4WhrzKxUNfPwPwD55810n4xcuXQMCGLc2GBzF5MzzypO9W5qhjpUOZb32YMG8F5HYOgPeAXu14uhkD4iyL1pJsZ/EY4mrCsODaFMg2hSdEZZX0zEZMDVDKI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=dIlp+/xW; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="dIlp+/xW" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6C88F1F00A3A; Thu, 20 Aug 2026 03:17:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1787195850; bh=Gy6N0mOG0lWln4Eg9yHcqbzrc1kNIOAK4i+YKZ5pWLs=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=dIlp+/xWeUVAmvnjy2EpTFp0gMELjg4UrW2sRow2xTiAmBgh8By/HX43+GcTkwrpk CCW1P/U8BI8bUvrZZ5ZwUztjGXTbt+AvhxsX2UTkWN3YjrMBikm30uVJpBLPA08SXD PHSCOja1OeUvMhjHqjtiUD0PWT+PIEXIz3RBVCzRYStuT566dad7tJaJbLzd9s2Sq7 wbGFlBc2DEF9K31DOeoKOySUHs2zKEyizXefScWnE0HpTlNr0xtqNGDpBCJJWlzmhU Qj/g92DO6yzkWhXUEL5SV6uQESW2PYRguAl/vuEYNrrEG0AI6+sEAbSN20gJY2bIo+ Rs5p2Uh7f0MqA== From: Chao Yu To: jaegeuk@kernel.org Cc: linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, Chao Yu Subject: [PATCH v1 02/12] f2fs: cache: initialize meta cache Date: Thu, 20 Aug 2026 11:17:11 +0800 Message-ID: <20260820031721.12218-3-chao@kernel.org> X-Mailer: git-send-email 2.55.0.737.g08866a6d13-goog In-Reply-To: <20260820031721.12218-1-chao@kernel.org> References: <20260820031721.12218-1-chao@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This patch introduces meta_blocks in f2fs_sb_info structure, initializes and destroys the meta cache during filesystem mount and unmount. It also introduces helper wrappers for meta cache operation. Signed-off-by: Chao Yu --- fs/f2fs/cache.h | 12 ++++++++++++ fs/f2fs/data.c | 3 +++ fs/f2fs/f2fs.h | 3 +++ fs/f2fs/super.c | 10 +++++++++- 4 files changed, 27 insertions(+), 1 deletion(-) diff --git a/fs/f2fs/cache.h b/fs/f2fs/cache.h index 686a974008ae..3cd2abafe364 100644 --- a/fs/f2fs/cache.h +++ b/fs/f2fs/cache.h @@ -176,4 +176,16 @@ struct f2fs_cached_block *f2fs_grab_cache(struct f2fs_cached_block_list *cache, void f2fs_drop_cache_range(struct f2fs_cached_block_list *cache, unsigned long start, unsigned long len, bool drop_dirty); +int f2fs_start_cache_wb_thread(struct f2fs_sb_info *sbi); +void f2fs_stop_cache_wb_thread(struct f2fs_sb_info *sbi); + +#define META_CACHE(sbi) (&(sbi)->meta_blocks) + +#define f2fs_find_meta_cache(sbi, blkaddr) \ + f2fs_find_cache(META_CACHE(sbi), blkaddr) +#define f2fs_invalidate_meta_caches(sbi, start, len) \ + f2fs_drop_cache_range(META_CACHE(sbi), start, len, false) +#define f2fs_truncate_meta_caches(sbi, start, len) \ + f2fs_drop_cache_range(META_CACHE(sbi), start, len, true) + #endif /* _LINUX_F2FS_CACHE_H */ diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 09474790035b..110282bb8dcd 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -695,6 +695,9 @@ static bool __has_merged_page(struct bio *bio, struct inode *inode, if (!inode && !folio && !ino) return true; + if (f2fs_is_cache_bio(bio)) + return false; + bio_for_each_folio_all(fi, bio) { struct folio *target = fi.folio; diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 8413983ea9d5..9b7c60bbb137 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -2105,6 +2105,9 @@ struct f2fs_sb_info { #ifdef CONFIG_DEBUG_LOCK_ALLOC struct lock_class_key cp_global_sem_key; #endif + + /* f2fs internal cache */ + struct f2fs_cached_block_list meta_blocks; }; /* Definitions to access f2fs_sb_info */ diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 3bdb0f891c35..bcfb1f97850e 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -2053,6 +2053,8 @@ static void f2fs_put_super(struct super_block *sb) iput(sbi->meta_inode); sbi->meta_inode = NULL; + f2fs_destroy_cache(META_CACHE(sbi)); + /* Should check the page counts after dropping all node/meta pages */ for (i = 0; i < NR_COUNT_TYPE; i++) { if (!get_pages(sbi, i)) @@ -5197,12 +5199,16 @@ static int f2fs_fill_super(struct super_block *sb, struct fs_context *fc) if (err) goto free_percpu; + err = f2fs_init_cache(sbi, META_CACHE(sbi), F2FS_META_CACHE); + if (err) + goto free_page_array_cache; + /* get an inode for meta space */ sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi)); if (IS_ERR(sbi->meta_inode)) { f2fs_err(sbi, "Failed to read F2FS meta data inode"); err = PTR_ERR(sbi->meta_inode); - goto free_page_array_cache; + goto free_meta_cache; } err = f2fs_get_valid_checkpoint(sbi); @@ -5528,6 +5534,8 @@ static int f2fs_fill_super(struct super_block *sb, struct fs_context *fc) make_bad_inode(sbi->meta_inode); iput(sbi->meta_inode); sbi->meta_inode = NULL; +free_meta_cache: + f2fs_destroy_cache(META_CACHE(sbi)); free_page_array_cache: f2fs_destroy_page_array_cache(sbi); free_percpu: -- 2.49.0 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 lists.sourceforge.net (lists.sourceforge.net [216.105.38.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 8C997C5DF88 for ; Thu, 20 Aug 2026 03:18:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.sourceforge.net; s=beta; h=Content-Transfer-Encoding:Content-Type:Cc: Reply-To:From:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:Subject:MIME-Version:References:In-Reply-To: Message-ID:Date:To:Sender:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=CRpngbeJ08vjYq5pouumvW3K0b8ed3aaO49l0zINllk=; b=F9RAsfRwoVZKozKcDMXJaSKytT T5fzdovl9cCKKipkySkPSJldXQ6W8UFDwpZ5mWOhh/GBPxb750QiJfYi0Y/L5LAPSsfJUObG9kvIz 7d1mA9c/8WstSn6M+COGTF9lplZsflqboZW/tscfmwcm7PXaFiHRsez5Xvg3I/UpzQp4=; Received: from [127.0.0.1] (helo=sfs-ml-1.v29.lw.sourceforge.com) by sfs-ml-1.v29.lw.sourceforge.com with esmtp (Exim 4.95) (envelope-from ) id 1wwtIC-00052l-1E; Thu, 20 Aug 2026 03:18:09 +0000 Received: from [172.30.29.66] (helo=mx.sourceforge.net) by sfs-ml-1.v29.lw.sourceforge.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1wwtHg-00051q-Bm for linux-f2fs-devel@lists.sourceforge.net; Thu, 20 Aug 2026 03:17:37 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sourceforge.net; s=x; h=Content-Transfer-Encoding:MIME-Version:References: In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Gy6N0mOG0lWln4Eg9yHcqbzrc1kNIOAK4i+YKZ5pWLs=; b=Po7UtClc1dOkQ/+XrX47CsZmSi iwECS+oge+nOhEBawsRowl5+rovXI25fQ6tQCmQzaaJYH5yDgh+9TrR1LBSyrssOdMY9d7ju7OA8N wWlXqsYGxHhGAPyEwgIT5QdNcGa1OI4MVVgY8qWmUGCYuuJVhR8tcZtXlYhDrfdDM2Y0=; DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sf.net; s=x ; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To:Message-ID: Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=Gy6N0mOG0lWln4Eg9yHcqbzrc1kNIOAK4i+YKZ5pWLs=; b=UGJp1hoVh29FKKQzNmyJxoSvZZ SAb6yzHsT0msvlnL6hRFGa2/jLPzbjT+Yi0v8FyCAyf5KzO8dVqLhBifSTIYLaWeHOYcVUHaPYS61 pWCqq3eZ4h9Zha+4CU/qfZITjmp9UD3Tidyfjduv2zlpUzA1uot7giT2igvDexMxyvjo=; Received: from tor.source.kernel.org ([172.105.4.254]) by sfi-mx-1.v28.lw.sourceforge.com with esmtps (TLS1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.95) id 1wwtHc-00032e-Ch for linux-f2fs-devel@lists.sourceforge.net; Thu, 20 Aug 2026 03:17:37 +0000 Received: from smtp.kernel.org (quasi.space.kernel.org [100.103.45.18]) by tor.source.kernel.org (Postfix) with ESMTP id 7BCA86188D for ; Thu, 20 Aug 2026 03:17:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6C88F1F00A3A; Thu, 20 Aug 2026 03:17:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1787195850; bh=Gy6N0mOG0lWln4Eg9yHcqbzrc1kNIOAK4i+YKZ5pWLs=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=dIlp+/xWeUVAmvnjy2EpTFp0gMELjg4UrW2sRow2xTiAmBgh8By/HX43+GcTkwrpk CCW1P/U8BI8bUvrZZ5ZwUztjGXTbt+AvhxsX2UTkWN3YjrMBikm30uVJpBLPA08SXD PHSCOja1OeUvMhjHqjtiUD0PWT+PIEXIz3RBVCzRYStuT566dad7tJaJbLzd9s2Sq7 wbGFlBc2DEF9K31DOeoKOySUHs2zKEyizXefScWnE0HpTlNr0xtqNGDpBCJJWlzmhU Qj/g92DO6yzkWhXUEL5SV6uQESW2PYRguAl/vuEYNrrEG0AI6+sEAbSN20gJY2bIo+ Rs5p2Uh7f0MqA== To: jaegeuk@kernel.org Date: Thu, 20 Aug 2026 11:17:11 +0800 Message-ID: <20260820031721.12218-3-chao@kernel.org> X-Mailer: git-send-email 2.55.0.737.g08866a6d13-goog In-Reply-To: <20260820031721.12218-1-chao@kernel.org> References: <20260820031721.12218-1-chao@kernel.org> MIME-Version: 1.0 X-Headers-End: 1wwtHc-00032e-Ch Subject: [f2fs-dev] [PATCH v1 02/12] f2fs: cache: initialize meta cache X-BeenThere: linux-f2fs-devel@lists.sourceforge.net X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Chao Yu via Linux-f2fs-devel Reply-To: Chao Yu Cc: linux-kernel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: linux-f2fs-devel-bounces@lists.sourceforge.net This patch introduces meta_blocks in f2fs_sb_info structure, initializes and destroys the meta cache during filesystem mount and unmount. It also introduces helper wrappers for meta cache operation. Signed-off-by: Chao Yu --- fs/f2fs/cache.h | 12 ++++++++++++ fs/f2fs/data.c | 3 +++ fs/f2fs/f2fs.h | 3 +++ fs/f2fs/super.c | 10 +++++++++- 4 files changed, 27 insertions(+), 1 deletion(-) diff --git a/fs/f2fs/cache.h b/fs/f2fs/cache.h index 686a974008ae..3cd2abafe364 100644 --- a/fs/f2fs/cache.h +++ b/fs/f2fs/cache.h @@ -176,4 +176,16 @@ struct f2fs_cached_block *f2fs_grab_cache(struct f2fs_cached_block_list *cache, void f2fs_drop_cache_range(struct f2fs_cached_block_list *cache, unsigned long start, unsigned long len, bool drop_dirty); +int f2fs_start_cache_wb_thread(struct f2fs_sb_info *sbi); +void f2fs_stop_cache_wb_thread(struct f2fs_sb_info *sbi); + +#define META_CACHE(sbi) (&(sbi)->meta_blocks) + +#define f2fs_find_meta_cache(sbi, blkaddr) \ + f2fs_find_cache(META_CACHE(sbi), blkaddr) +#define f2fs_invalidate_meta_caches(sbi, start, len) \ + f2fs_drop_cache_range(META_CACHE(sbi), start, len, false) +#define f2fs_truncate_meta_caches(sbi, start, len) \ + f2fs_drop_cache_range(META_CACHE(sbi), start, len, true) + #endif /* _LINUX_F2FS_CACHE_H */ diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 09474790035b..110282bb8dcd 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -695,6 +695,9 @@ static bool __has_merged_page(struct bio *bio, struct inode *inode, if (!inode && !folio && !ino) return true; + if (f2fs_is_cache_bio(bio)) + return false; + bio_for_each_folio_all(fi, bio) { struct folio *target = fi.folio; diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 8413983ea9d5..9b7c60bbb137 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -2105,6 +2105,9 @@ struct f2fs_sb_info { #ifdef CONFIG_DEBUG_LOCK_ALLOC struct lock_class_key cp_global_sem_key; #endif + + /* f2fs internal cache */ + struct f2fs_cached_block_list meta_blocks; }; /* Definitions to access f2fs_sb_info */ diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 3bdb0f891c35..bcfb1f97850e 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -2053,6 +2053,8 @@ static void f2fs_put_super(struct super_block *sb) iput(sbi->meta_inode); sbi->meta_inode = NULL; + f2fs_destroy_cache(META_CACHE(sbi)); + /* Should check the page counts after dropping all node/meta pages */ for (i = 0; i < NR_COUNT_TYPE; i++) { if (!get_pages(sbi, i)) @@ -5197,12 +5199,16 @@ static int f2fs_fill_super(struct super_block *sb, struct fs_context *fc) if (err) goto free_percpu; + err = f2fs_init_cache(sbi, META_CACHE(sbi), F2FS_META_CACHE); + if (err) + goto free_page_array_cache; + /* get an inode for meta space */ sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi)); if (IS_ERR(sbi->meta_inode)) { f2fs_err(sbi, "Failed to read F2FS meta data inode"); err = PTR_ERR(sbi->meta_inode); - goto free_page_array_cache; + goto free_meta_cache; } err = f2fs_get_valid_checkpoint(sbi); @@ -5528,6 +5534,8 @@ static int f2fs_fill_super(struct super_block *sb, struct fs_context *fc) make_bad_inode(sbi->meta_inode); iput(sbi->meta_inode); sbi->meta_inode = NULL; +free_meta_cache: + f2fs_destroy_cache(META_CACHE(sbi)); free_page_array_cache: f2fs_destroy_page_array_cache(sbi); free_percpu: -- 2.49.0 _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel