Commit fe23759e authored by Eric Sandeen's avatar Eric Sandeen Committed by Dave Chinner

xfs: remove pointless error goto in xfs_bmap_remap_alloc

The commit:

f65306ea xfs: map an inode's offset to an exact physical block

added a pointless error0: target; remove it.

Addresses-Coverity-Id: 1373865
Signed-off-by: default avatarEric Sandeen <sandeen@redhat.com>
Reviewed-by: default avatarBill O'Donnell <billodo@redhat.com>
Reviewed-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
parent 0ee7a3f6
...@@ -3974,9 +3974,6 @@ xfs_bmap_remap_alloc( ...@@ -3974,9 +3974,6 @@ xfs_bmap_remap_alloc(
* allocating, so skip that check by pretending to be freeing. * allocating, so skip that check by pretending to be freeing.
*/ */
error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING); error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
if (error)
goto error0;
error0:
xfs_perag_put(args.pag); xfs_perag_put(args.pag);
if (error) if (error)
trace_xfs_bmap_remap_alloc_error(ap->ip, error, _RET_IP_); trace_xfs_bmap_remap_alloc_error(ap->ip, error, _RET_IP_);
......
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