]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - fs/cifs/file.c
CIFS: cleanup min_t() cast in cifs_read()
[mv-sheeva.git] / fs / cifs / file.c
index 7f84ece116d08935988c985b9ff2d4eda3f595f4..852d1f39adae579816e794378493df40b05bc407 100644 (file)
@@ -1904,13 +1904,13 @@ static ssize_t cifs_read(struct file *file, char *read_data, size_t read_size,
        for (total_read = 0, current_offset = read_data;
             read_size > total_read;
             total_read += bytes_read, current_offset += bytes_read) {
-               current_read_size = min_t(const int, read_size - total_read,
+               current_read_size = min_t(uint, read_size - total_read,
                                          cifs_sb->rsize);
                /* For windows me and 9x we do not want to request more
                than it negotiated since it will refuse the read then */
                if ((pTcon->ses) &&
                        !(pTcon->ses->capabilities & CAP_LARGE_FILES)) {
-                       current_read_size = min_t(const int, current_read_size,
+                       current_read_size = min_t(uint, current_read_size,
                                        CIFSMaxBufSize);
                }
                rc = -EAGAIN;