Commit e3a746f5 authored by Dave Chinner's avatar Dave Chinner Committed by Ben Myers

xfs: really fix the cursor leak in xfs_alloc_ag_vextent_near

The current cursor is reallocated when retrying the allocation, so
the existing cursor needs to be destroyed in both the restart and
the failure cases.
Signed-off-by: default avatarDave Chinner <dchinner@redhat.com>
Tested-by: default avatarMike Snitzer <snitzer@redhat.com>
Signed-off-by: default avatarBen Myers <bpm@sgi.com>
parent f7bdf03a
...@@ -1074,13 +1074,13 @@ xfs_alloc_ag_vextent_near( ...@@ -1074,13 +1074,13 @@ xfs_alloc_ag_vextent_near(
* If we couldn't get anything, give up. * If we couldn't get anything, give up.
*/ */
if (bno_cur_lt == NULL && bno_cur_gt == NULL) { if (bno_cur_lt == NULL && bno_cur_gt == NULL) {
xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
if (!forced++) { if (!forced++) {
trace_xfs_alloc_near_busy(args); trace_xfs_alloc_near_busy(args);
xfs_log_force(args->mp, XFS_LOG_SYNC); xfs_log_force(args->mp, XFS_LOG_SYNC);
goto restart; goto restart;
} }
xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
trace_xfs_alloc_size_neither(args); trace_xfs_alloc_size_neither(args);
args->agbno = NULLAGBLOCK; args->agbno = NULLAGBLOCK;
return 0; return 0;
......
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