diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2018-01-08 10:49:02 -0800 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-01-08 10:49:02 -0800 |
commit | 5a0f433745ead12f485da2213fa0c473ed613a45 (patch) | |
tree | 19bcc551fca6303cb12af117161b81c727283a8b /fs/xfs/scrub/common.c | |
parent | 5a9d929d6e13278df62bd9e3d3ceae8c87ad1eea (diff) | |
download | linux-5a0f433745ead12f485da2213fa0c473ed613a45.tar.gz linux-5a0f433745ead12f485da2213fa0c473ed613a45.tar.bz2 linux-5a0f433745ead12f485da2213fa0c473ed613a45.zip |
xfs: ignore agfl read errors when not scrubbing agfl
In xfs_scrub_ag_read_headers, if we're not scrubbing the AGFL but
hit a read error reading the AGFL, we should reset the error code
so that it doesn't propagate up into the caller.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/scrub/common.c')
-rw-r--r-- | fs/xfs/scrub/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/scrub/common.c b/fs/xfs/scrub/common.c index 98452ad58cff..6ec4e1013ac0 100644 --- a/fs/xfs/scrub/common.c +++ b/fs/xfs/scrub/common.c @@ -302,7 +302,7 @@ xfs_scrub_ag_read_headers( error = xfs_alloc_read_agfl(mp, sc->tp, agno, agfl); if (error && want_ag_read_header_failure(sc, XFS_SCRUB_TYPE_AGFL)) goto out; - + error = 0; out: return error; } |