Commit 65149e3f authored by Dave Chinner's avatar Dave Chinner Committed by Dave Chinner

xfs: correct error sign on COLLAPSE_RANGE errors

Signed-off-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarJie Liu <jeff.liu@oracle.com>
Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
parent b38a134b
...@@ -837,7 +837,7 @@ xfs_file_fallocate( ...@@ -837,7 +837,7 @@ xfs_file_fallocate(
unsigned blksize_mask = (1 << inode->i_blkbits) - 1; unsigned blksize_mask = (1 << inode->i_blkbits) - 1;
if (offset & blksize_mask || len & blksize_mask) { if (offset & blksize_mask || len & blksize_mask) {
error = -EINVAL; error = EINVAL;
goto out_unlock; goto out_unlock;
} }
...@@ -846,7 +846,7 @@ xfs_file_fallocate( ...@@ -846,7 +846,7 @@ xfs_file_fallocate(
* in which case it is effectively a truncate operation * in which case it is effectively a truncate operation
*/ */
if (offset + len >= i_size_read(inode)) { if (offset + len >= i_size_read(inode)) {
error = -EINVAL; error = EINVAL;
goto out_unlock; goto out_unlock;
} }
......
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