diff options
author | Steve French <sfrench@us.ibm.com> | 2007-10-12 15:10:28 -0400 |
---|---|---|
committer | Cyrill Gorcunov <sfrench@us.ibm.com> | 2007-10-12 15:10:28 -0400 |
commit | 2c2130e16f0e134aa65515fd0c2436fda465b1b6 (patch) | |
tree | 711048e411f26321bc57675079ac71a0b167c2ac /fs/cifs/file.c | |
parent | 8f18c1316b71df76bb7076c392134864a18636c1 (diff) |
[CIFS] remove two sparse warnings
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r-- | fs/cifs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 780c0e3e4703..1e7e4c06d9e3 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c | |||
@@ -1755,7 +1755,7 @@ static int cifs_readpages(struct file *file, struct address_space *mapping, | |||
1755 | struct page *page; | 1755 | struct page *page; |
1756 | struct cifs_sb_info *cifs_sb; | 1756 | struct cifs_sb_info *cifs_sb; |
1757 | struct cifsTconInfo *pTcon; | 1757 | struct cifsTconInfo *pTcon; |
1758 | int bytes_read = 0; | 1758 | unsigned int bytes_read = 0; |
1759 | unsigned int read_size, i; | 1759 | unsigned int read_size, i; |
1760 | char *smb_read_data = NULL; | 1760 | char *smb_read_data = NULL; |
1761 | struct smb_com_read_rsp *pSMBr; | 1761 | struct smb_com_read_rsp *pSMBr; |
@@ -1849,7 +1849,7 @@ static int cifs_readpages(struct file *file, struct address_space *mapping, | |||
1849 | 1849 | ||
1850 | i += bytes_read >> PAGE_CACHE_SHIFT; | 1850 | i += bytes_read >> PAGE_CACHE_SHIFT; |
1851 | cifs_stats_bytes_read(pTcon, bytes_read); | 1851 | cifs_stats_bytes_read(pTcon, bytes_read); |
1852 | if ((int)(bytes_read & PAGE_CACHE_MASK) != bytes_read) { | 1852 | if ((bytes_read & PAGE_CACHE_MASK) != bytes_read) { |
1853 | i++; /* account for partial page */ | 1853 | i++; /* account for partial page */ |
1854 | 1854 | ||
1855 | /* server copy of file can have smaller size | 1855 | /* server copy of file can have smaller size |