diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2019-11-06 18:17:43 +0100 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-11-11 01:54:18 +0100 |
commit | 895e196fb6f84402dcd0c1d3c3feb8a58049564e (patch) | |
tree | 70d0fe537d7982ec770b6dad9a02fd028e0e665c /fs/xfs/xfs_refcount_item.c | |
parent | xfs: refactor "does this fork map blocks" predicate (diff) | |
download | linux-895e196fb6f84402dcd0c1d3c3feb8a58049564e.tar.xz 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_refcount_item.c')
-rw-r--r-- | fs/xfs/xfs_refcount_item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_refcount_item.c b/fs/xfs/xfs_refcount_item.c index 576f59fe370e..d5708d40ad87 100644 --- a/fs/xfs/xfs_refcount_item.c +++ b/fs/xfs/xfs_refcount_item.c @@ -497,7 +497,7 @@ xfs_cui_recover( */ set_bit(XFS_CUI_RECOVERED, &cuip->cui_flags); xfs_cui_release(cuip); - return -EIO; + return -EFSCORRUPTED; } } |