[PATCH] 32bit integer overflow in invalidate_inode_pages2()
Fix a 32 bit integer overflow in invalidate_inode_pages2_range. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
02b7068221
commit
479ef592f3
1 changed files with 3 additions and 3 deletions
|
@ -282,8 +282,8 @@ int invalidate_inode_pages2_range(struct address_space *mapping,
|
|||
* Zap the rest of the file in one hit.
|
||||
*/
|
||||
unmap_mapping_range(mapping,
|
||||
page_index << PAGE_CACHE_SHIFT,
|
||||
(end - page_index + 1)
|
||||
(loff_t)page_index<<PAGE_CACHE_SHIFT,
|
||||
(loff_t)(end - page_index + 1)
|
||||
<< PAGE_CACHE_SHIFT,
|
||||
0);
|
||||
did_range_unmap = 1;
|
||||
|
@ -292,7 +292,7 @@ int invalidate_inode_pages2_range(struct address_space *mapping,
|
|||
* Just zap this page
|
||||
*/
|
||||
unmap_mapping_range(mapping,
|
||||
page_index << PAGE_CACHE_SHIFT,
|
||||
(loff_t)page_index<<PAGE_CACHE_SHIFT,
|
||||
PAGE_CACHE_SIZE, 0);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue