Commit 37a6547d authored by Darrick J. Wong's avatar Darrick J. Wong
Browse files

xfs: xrep_reap_extents should not destroy the bitmap



Remove the xfs_bitmap_destroy call from the end of xrep_reap_extents
because this sort of violates our rule that the function initializing a
structure should destroy it.

Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: default avatarBrian Foster <bfoster@redhat.com>
parent 77ca1eed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -696,7 +696,7 @@ xrep_agfl(
		goto err;

	/* Dump any AGFL overflow. */
	return xrep_reap_extents(sc, &agfl_extents, &XFS_RMAP_OINFO_AG,
	error = xrep_reap_extents(sc, &agfl_extents, &XFS_RMAP_OINFO_AG,
			XFS_AG_RESV_AGFL);
err:
	xfs_bitmap_destroy(&agfl_extents);
+1 −3
Original line number Diff line number Diff line
@@ -617,11 +617,9 @@ xrep_reap_extents(

		error = xrep_reap_block(sc, fsbno, oinfo, type);
		if (error)
			goto out;
			break;
	}

out:
	xfs_bitmap_destroy(bitmap);
	return error;
}