diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-02-22 21:48:17 -0800 |
---|---|---|
committer | Chandan Babu R <chandanbabu@kernel.org> | 2024-02-24 10:43:26 +0530 |
commit | 1e5efd72a29e6d2aa70b0219f1786834ad14d005 (patch) | |
tree | 80acb2ae4aecd4ca138d56dd73b04f10ed773376 /fs/xfs/xfs_log_recover.c | |
parent | e6469b22bd997cf685df9d64670fb7370a5594bb (diff) | |
download | linux-1e5efd72a29e6d2aa70b0219f1786834ad14d005.tar.gz linux-1e5efd72a29e6d2aa70b0219f1786834ad14d005.tar.bz2 linux-1e5efd72a29e6d2aa70b0219f1786834ad14d005.zip |
xfs: fix log recovery erroring out on refcount recovery failure
Per the comment in the error case of xfs_reflink_recover_cow, zero out
any error (after shutting down the log) so that we actually kill any new
intent items that might have gotten logged by later recovery steps.
Discovered by xfs/434, which few people actually seem to run.
Fixes: 2c1e31ed5c88 ("xfs: place intent recovery under NOFS allocation context")
Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_log_recover.c')
-rw-r--r-- | fs/xfs/xfs_log_recover.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index cd134830a695..13f1d2e91540 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c @@ -3532,6 +3532,7 @@ xlog_recover_finish( * and AIL. */ xlog_force_shutdown(log, SHUTDOWN_LOG_IO_ERROR); + error = 0; goto out_error; } |