diff options
author | Murphy Zhou <jencce.kernel@gmail.com> | 2020-03-14 06:38:31 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-03-17 21:27:06 +0300 |
commit | 979a2665eb6c603ddce0ab374041ab101827b2e7 (patch) | |
tree | d3eaad9aff2622fa1497492197830e1179a30d9f /fs/cifs/smb2ops.c | |
parent | 1be1fa42ebb73ad8fd67d2c846931361b4e3dd0a (diff) | |
download | linux-979a2665eb6c603ddce0ab374041ab101827b2e7.tar.xz |
CIFS: fiemap: do not return EINVAL if get nothing
If we call fiemap on a truncated file with none blocks allocated,
it makes sense we get nothing from this call. No output means
no blocks have been counted, but the call succeeded. It's a valid
response.
Simple example reproducer:
xfs_io -f 'truncate 2M' -c 'fiemap -v' /cifssch/testfile
xfs_io: ioctl(FS_IOC_FIEMAP) ["/cifssch/testfile"]: Invalid argument
Signed-off-by: Murphy Zhou <jencce.kernel@gmail.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Pavel Shilovsky <pshilov@microsoft.com>
CC: Stable <stable@vger.kernel.org>
Diffstat (limited to 'fs/cifs/smb2ops.c')
-rw-r--r-- | fs/cifs/smb2ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c index 3dddd20c5e2b..cfe9b800ea8c 100644 --- a/fs/cifs/smb2ops.c +++ b/fs/cifs/smb2ops.c @@ -3419,7 +3419,7 @@ static int smb3_fiemap(struct cifs_tcon *tcon, if (rc) goto out; - if (out_data_len < sizeof(struct file_allocated_range_buffer)) { + if (out_data_len && out_data_len < sizeof(struct file_allocated_range_buffer)) { rc = -EINVAL; goto out; } |