Commit 4dd2eb63 authored by Hou Tao's avatar Hou Tao Committed by Darrick J. Wong

xfs: reset b_first_retry_time when clear the retry status of xfs_buf_t

After successful IO or permanent error, b_first_retry_time also
needs to be cleared, else the invalid first retry time will be
used by the next retry check.
Signed-off-by: default avatarHou Tao <houtao1@huawei.com>
Reviewed-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
parent 5eda4300
...@@ -1162,6 +1162,7 @@ xfs_buf_iodone_callbacks( ...@@ -1162,6 +1162,7 @@ xfs_buf_iodone_callbacks(
*/ */
bp->b_last_error = 0; bp->b_last_error = 0;
bp->b_retries = 0; bp->b_retries = 0;
bp->b_first_retry_time = 0;
xfs_buf_do_callbacks(bp); xfs_buf_do_callbacks(bp);
bp->b_fspriv = NULL; bp->b_fspriv = NULL;
......
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