BACKPORT: f2fs: compress: fix to avoid inconsistence bewteen i_blocks and dnode
In reserve_compress_blocks(), we update blkaddrs of dnode in prior to
inc_valid_block_count(), it may cause inconsistent status bewteen
i_blocks and blkaddrs once inc_valid_block_count() fails.
To fix this issue, it needs to reverse their invoking order.
Bug: 428869293
Change-Id: I4a7348803155b5a5cddfd17ec7c08ce0abc64bce
Fixes: c75488fb4d ("f2fs: introduce F2FS_IOC_RESERVE_COMPRESS_BLOCKS")
Reviewed-by: Daeho Jeong <daehojeong@google.com>
Signed-off-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
(cherry picked from commit 54607494875edd636aff3c21ace3ad9a7da758a9)
[Chao: Resolved conflicts in fs/f2fs/data.c fs/f2fs/file.c fs/f2fs/segment.c ]
Signed-off-by: Chao Yu <chao@kernel.org>
[Qi: This is cherry-pick drops changes to fs/f2fs/segment.c because android12-5.10 f2fs does not have atomic write support.]
Signed-off-by: Qi Han <hanqi@vivo.com>
This commit is contained in:
@@ -1117,7 +1117,8 @@ int f2fs_reserve_new_blocks(struct dnode_of_data *dn, blkcnt_t count)
|
||||
|
||||
if (unlikely(is_inode_flag_set(dn->inode, FI_NO_ALLOC)))
|
||||
return -EPERM;
|
||||
if (unlikely((err = inc_valid_block_count(sbi, dn->inode, &count))))
|
||||
err = inc_valid_block_count(sbi, dn->inode, &count, true);
|
||||
if (unlikely(err))
|
||||
return err;
|
||||
|
||||
trace_f2fs_reserve_new_blocks(dn->inode, dn->nid,
|
||||
@@ -1384,7 +1385,7 @@ static int __allocate_data_block(struct dnode_of_data *dn, int seg_type)
|
||||
if (dn->data_blkaddr != NULL_ADDR)
|
||||
goto alloc;
|
||||
|
||||
if (unlikely((err = inc_valid_block_count(sbi, dn->inode, &count))))
|
||||
if (unlikely((err = inc_valid_block_count(sbi, dn->inode, &count, true))))
|
||||
return err;
|
||||
|
||||
alloc:
|
||||
|
||||
@@ -2293,7 +2293,7 @@ static inline unsigned int get_available_block_count(struct f2fs_sb_info *sbi,
|
||||
|
||||
static inline void f2fs_i_blocks_write(struct inode *, block_t, bool, bool);
|
||||
static inline int inc_valid_block_count(struct f2fs_sb_info *sbi,
|
||||
struct inode *inode, blkcnt_t *count)
|
||||
struct inode *inode, blkcnt_t *count, bool partial)
|
||||
{
|
||||
blkcnt_t diff = 0, release = 0;
|
||||
block_t avail_user_block_count;
|
||||
@@ -2320,6 +2320,11 @@ static inline int inc_valid_block_count(struct f2fs_sb_info *sbi,
|
||||
avail_user_block_count = get_available_block_count(sbi, inode, true);
|
||||
|
||||
if (unlikely(sbi->total_valid_block_count > avail_user_block_count)) {
|
||||
if (!partial) {
|
||||
spin_unlock(&sbi->stat_lock);
|
||||
goto enospc;
|
||||
}
|
||||
|
||||
diff = sbi->total_valid_block_count - avail_user_block_count;
|
||||
if (diff > *count)
|
||||
diff = *count;
|
||||
|
||||
@@ -3713,14 +3713,16 @@ static int reserve_compress_blocks(struct dnode_of_data *dn, pgoff_t count)
|
||||
blkcnt_t to_reserved;
|
||||
int ret;
|
||||
|
||||
for (i = 0; i < cluster_size; i++, dn->ofs_in_node++) {
|
||||
blkaddr = f2fs_data_blkaddr(dn);
|
||||
for (i = 0; i < cluster_size; i++) {
|
||||
blkaddr = data_blkaddr(dn->inode, dn->node_page,
|
||||
dn->ofs_in_node + i);
|
||||
|
||||
if (i == 0) {
|
||||
if (blkaddr == COMPRESS_ADDR)
|
||||
continue;
|
||||
dn->ofs_in_node += cluster_size;
|
||||
goto next;
|
||||
if (blkaddr != COMPRESS_ADDR) {
|
||||
dn->ofs_in_node += cluster_size;
|
||||
goto next;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -3736,9 +3738,6 @@ static int reserve_compress_blocks(struct dnode_of_data *dn, pgoff_t count)
|
||||
compr_blocks++;
|
||||
continue;
|
||||
}
|
||||
|
||||
dn->data_blkaddr = NEW_ADDR;
|
||||
f2fs_set_data_blkaddr(dn);
|
||||
}
|
||||
|
||||
to_reserved = cluster_size - compr_blocks - reserved;
|
||||
@@ -3749,12 +3748,16 @@ static int reserve_compress_blocks(struct dnode_of_data *dn, pgoff_t count)
|
||||
goto next;
|
||||
}
|
||||
|
||||
ret = inc_valid_block_count(sbi, dn->inode, &to_reserved);
|
||||
if (ret)
|
||||
ret = inc_valid_block_count(sbi, dn->inode, &to_reserved, false);
|
||||
if (unlikely(ret))
|
||||
return ret;
|
||||
|
||||
if (reserved != cluster_size - compr_blocks)
|
||||
return -ENOSPC;
|
||||
for (i = 0; i < cluster_size; i++, dn->ofs_in_node++) {
|
||||
if (f2fs_data_blkaddr(dn) == NULL_ADDR) {
|
||||
dn->data_blkaddr = NEW_ADDR;
|
||||
f2fs_set_data_blkaddr(dn);
|
||||
}
|
||||
}
|
||||
|
||||
f2fs_i_compr_blocks_update(dn->inode, compr_blocks, true);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user