Commit 93fed470 authored by Darrick J. Wong's avatar Darrick J. Wong Committed by Dave Chinner

xfs: fix label inaccuracies

Since we don't unlock anything on the way out, change the label.
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Reported-by: default avatarBrian Foster <bfoster@redhat.com>
Reviewed-by: default avatarDave Chinner <dchinner@redhat.com>
Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
parent 97a1b87e
...@@ -1098,19 +1098,19 @@ xfs_file_share_range( ...@@ -1098,19 +1098,19 @@ xfs_file_share_range(
/* Wait for the completion of any pending IOs on srcfile */ /* Wait for the completion of any pending IOs on srcfile */
ret = xfs_file_wait_for_io(inode_in, pos_in, len); ret = xfs_file_wait_for_io(inode_in, pos_in, len);
if (ret) if (ret)
goto out_unlock; goto out;
ret = xfs_file_wait_for_io(inode_out, pos_out, len); ret = xfs_file_wait_for_io(inode_out, pos_out, len);
if (ret) if (ret)
goto out_unlock; goto out;
if (is_dedupe) if (is_dedupe)
flags |= XFS_REFLINK_DEDUPE; flags |= XFS_REFLINK_DEDUPE;
ret = xfs_reflink_remap_range(XFS_I(inode_in), pos_in, XFS_I(inode_out), ret = xfs_reflink_remap_range(XFS_I(inode_in), pos_in, XFS_I(inode_out),
pos_out, len, flags); pos_out, len, flags);
if (ret < 0) if (ret < 0)
goto out_unlock; goto out;
out_unlock: out:
return ret; return ret;
} }
......
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