On 1/13/25 09:47, Yi Sun wrote:
Now f2fs_invalidate_blocks() supports a continuous range of addresses,
so the for loop can be omitted.

Signed-off-by: Yi Sun <yi....@unisoc.com>
Signed-off-by: Zhiguo Niu <zhiguo....@unisoc.com>

Actually, this can be merged into "f2fs: add parameter @len to f2fs_invalidate_blocks()", but, anyway, I guess it's fine to merge it separately.

Reviewed-by: Chao Yu <c...@kernel.org>

Thanks,

---
  fs/f2fs/file.c | 4 +---
  1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 9980d17ef9f5..4baafad7a00c 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -811,10 +811,8 @@ int f2fs_do_truncate_blocks(struct inode *inode, u64 from, 
bool lock)
        if (IS_DEVICE_ALIASING(inode)) {
                struct extent_tree *et = F2FS_I(inode)->extent_tree[EX_READ];
                struct extent_info ei = et->largest;
-               unsigned int i;
- for (i = 0; i < ei.len; i++)
-                       f2fs_invalidate_blocks(sbi, ei.blk + i, 1);
+               f2fs_invalidate_blocks(sbi, ei.blk, ei.len);
dec_valid_block_count(sbi, inode, ei.len);
                f2fs_update_time(sbi, REQ_TIME);



_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to