* [f2fs-dev] [PATCH] fsck.f2fs: drop compression bit if inline_data is set
@ 2022-06-21 20:05 Jaegeuk Kim
2022-07-03 2:56 ` Chao Yu
0 siblings, 1 reply; 2+ messages in thread
From: Jaegeuk Kim @ 2022-06-21 20:05 UTC (permalink / raw)
To: linux-f2fs-devel; +Cc: Jaegeuk Kim
The kernel enforced not to have compression and inline_data bits
together, but old kernel created files with them. Let's disable
compression in that case.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
---
fsck/fsck.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/fsck/fsck.c b/fsck/fsck.c
index 4b546aeff995..b1b6722566ef 100644
--- a/fsck/fsck.c
+++ b/fsck/fsck.c
@@ -712,7 +712,10 @@ void fsck_chk_inode_blk(struct f2fs_sb_info *sbi, u32 nid,
int ret;
u32 cluster_size = 1 << node_blk->i.i_log_cluster_size;
- if (!compr_supported && compressed) {
+ if (!compressed)
+ goto check_next;
+
+ if (!compr_supported || (node_blk->i.i_inline & F2FS_INLINE_DATA)) {
/*
* The 'compression' flag in i_flags affects the traverse of
* the node tree. Thus, it must be fixed unconditionally
@@ -727,6 +730,7 @@ void fsck_chk_inode_blk(struct f2fs_sb_info *sbi, u32 nid,
}
i_flags &= ~F2FS_COMPR_FL;
}
+check_next:
memset(&child, 0, sizeof(child));
child.links = 2;
child.p_ino = nid;
--
2.37.0.rc0.104.g0611611a94-goog
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-07-03 3:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-21 20:05 [f2fs-dev] [PATCH] fsck.f2fs: drop compression bit if inline_data is set Jaegeuk Kim
2022-07-03 2:56 ` Chao Yu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).