aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/xfs/xfs_rmap_item.c
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2019-11-06 09:17:43 -0800
committerDarrick J. Wong <darrick.wong@oracle.com>2019-11-10 16:54:18 -0800
commit895e196fb6f84402dcd0c1d3c3feb8a58049564e (patch)
tree70d0fe537d7982ec770b6dad9a02fd028e0e665c /fs/xfs/xfs_rmap_item.c
parentxfs: refactor "does this fork map blocks" predicate (diff)
downloadwireguard-linux-895e196fb6f84402dcd0c1d3c3feb8a58049564e.tar.xz
wireguard-linux-895e196fb6f84402dcd0c1d3c3feb8a58049564e.zip
xfs: convert EIO to EFSCORRUPTED when log contents are invalid
Convert EIO to EFSCORRUPTED in the logging code when we can determine that the log contents are invalid. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_rmap_item.c')
-rw-r--r--fs/xfs/xfs_rmap_item.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_rmap_item.c b/fs/xfs/xfs_rmap_item.c
index 1d72e4b3ebf1..02f84d9a511c 100644
--- a/fs/xfs/xfs_rmap_item.c
+++ b/fs/xfs/xfs_rmap_item.c
@@ -541,7 +541,7 @@ xfs_rui_recover(
*/
set_bit(XFS_RUI_RECOVERED, &ruip->rui_flags);
xfs_rui_release(ruip);
- return -EIO;
+ return -EFSCORRUPTED;
}
}