Since we don't unlock anything on the way out, change the label. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> Reported-by: Brian Foster <bfoster@xxxxxxxxxx> --- fs/xfs/xfs_file.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c index 54c27ed..710ee11 100644 --- a/fs/xfs/xfs_file.c +++ b/fs/xfs/xfs_file.c @@ -1098,19 +1098,19 @@ xfs_file_share_range( /* Wait for the completion of any pending IOs on srcfile */ ret = xfs_file_wait_for_io(inode_in, pos_in, len); if (ret) - goto out_unlock; + goto out; ret = xfs_file_wait_for_io(inode_out, pos_out, len); if (ret) - goto out_unlock; + goto out; if (is_dedupe) flags |= XFS_REFLINK_DEDUPE; ret = xfs_reflink_remap_range(XFS_I(inode_in), pos_in, XFS_I(inode_out), pos_out, len, flags); if (ret < 0) - goto out_unlock; + goto out; -out_unlock: +out: return ret; } -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html