Commit 50535db8 authored by Tian Tao's avatar Tian Tao Committed by David Sterba

btrfs: return EAGAIN if defrag is canceled

When inode defrag is canceled, the error is set to EAGAIN but then
overwritten by number of defragmented bytes. As this would hide the
error, rather return EAGAIN. This does not harm 'btrfs fi defrag', it
will print the error and continue to next file (as it does in for any
other error).
Signed-off-by: default avatarTian Tao <tiantao6@hisilicon.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
[ update changelog ]
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 1245835d
...@@ -1455,7 +1455,7 @@ int btrfs_defrag_file(struct inode *inode, struct file *file, ...@@ -1455,7 +1455,7 @@ int btrfs_defrag_file(struct inode *inode, struct file *file,
if (btrfs_defrag_cancelled(fs_info)) { if (btrfs_defrag_cancelled(fs_info)) {
btrfs_debug(fs_info, "defrag_file cancelled"); btrfs_debug(fs_info, "defrag_file cancelled");
ret = -EAGAIN; ret = -EAGAIN;
break; goto error;
} }
if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT, if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
...@@ -1533,6 +1533,8 @@ int btrfs_defrag_file(struct inode *inode, struct file *file, ...@@ -1533,6 +1533,8 @@ int btrfs_defrag_file(struct inode *inode, struct file *file,
} }
} }
ret = defrag_count;
error:
if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) { if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
filemap_flush(inode->i_mapping); filemap_flush(inode->i_mapping);
if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT, if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
...@@ -1546,8 +1548,6 @@ int btrfs_defrag_file(struct inode *inode, struct file *file, ...@@ -1546,8 +1548,6 @@ int btrfs_defrag_file(struct inode *inode, struct file *file,
btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD); btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
} }
ret = defrag_count;
out_ra: out_ra:
if (do_compress) { if (do_compress) {
btrfs_inode_lock(inode, 0); btrfs_inode_lock(inode, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment