diff options
author | Nick Piggin <npiggin@suse.de> | 2007-07-20 00:31:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-20 08:44:19 -0700 |
commit | 1833633803c7ef4d8f09877d3f1549cbd252f477 (patch) | |
tree | ce69505de705701f838bd77c6b6b6bc18529bed0 /fs/buffer.c | |
parent | e228929bc257b963523ed75aa60d2ad77ece2189 (diff) | |
download | linux-3.10-1833633803c7ef4d8f09877d3f1549cbd252f477.tar.gz linux-3.10-1833633803c7ef4d8f09877d3f1549cbd252f477.tar.bz2 linux-3.10-1833633803c7ef4d8f09877d3f1549cbd252f477.zip |
fix some conversion overflows
Fix page index to offset conversion overflows in buffer layer, ecryptfs,
and ocfs2.
It would be nice to convert the whole tree to page_offset, but for now
just fix the bugs.
Signed-off-by: Nick Piggin <npiggin@suse.de>
Cc: Michael Halcrow <mhalcrow@us.ibm.com>
Cc: Mark Fasheh <mark.fasheh@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/buffer.c')
-rw-r--r-- | fs/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/buffer.c b/fs/buffer.c index 02ebb1f1d3b..0e5ec371ce7 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -2221,7 +2221,7 @@ block_page_mkwrite(struct vm_area_struct *vma, struct page *page, lock_page(page); size = i_size_read(inode); if ((page->mapping != inode->i_mapping) || - ((page->index << PAGE_CACHE_SHIFT) > size)) { + (page_offset(page) > size)) { /* page got truncated out from underneath us */ goto out_unlock; } |