aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r--fs/cifs/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c
index 7f84ece116d0..852d1f39adae 100644
--- a/fs/cifs/file.c
+++ b/fs/cifs/file.c
@@ -1904,13 +1904,13 @@ static ssize_t cifs_read(struct file *file, char *read_data, size_t read_size,
1904 for (total_read = 0, current_offset = read_data; 1904 for (total_read = 0, current_offset = read_data;
1905 read_size > total_read; 1905 read_size > total_read;
1906 total_read += bytes_read, current_offset += bytes_read) { 1906 total_read += bytes_read, current_offset += bytes_read) {
1907 current_read_size = min_t(const int, read_size - total_read, 1907 current_read_size = min_t(uint, read_size - total_read,
1908 cifs_sb->rsize); 1908 cifs_sb->rsize);
1909 /* For windows me and 9x we do not want to request more 1909 /* For windows me and 9x we do not want to request more
1910 than it negotiated since it will refuse the read then */ 1910 than it negotiated since it will refuse the read then */
1911 if ((pTcon->ses) && 1911 if ((pTcon->ses) &&
1912 !(pTcon->ses->capabilities & CAP_LARGE_FILES)) { 1912 !(pTcon->ses->capabilities & CAP_LARGE_FILES)) {
1913 current_read_size = min_t(const int, current_read_size, 1913 current_read_size = min_t(uint, current_read_size,
1914 CIFSMaxBufSize); 1914 CIFSMaxBufSize);
1915 } 1915 }
1916 rc = -EAGAIN; 1916 rc = -EAGAIN;