提交 8a146a2b 编写于 作者: M Michael Halcrow 提交者: Linus Torvalds

eCryptfs: cast page->index to loff_t instead of off_t

page->index should be cast to loff_t instead of off_t.
Signed-off-by: NMichael Halcrow <mhalcrow@us.ibm.com>
Reported-by: NEric Sandeen <sandeen@redhat.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 0fd4980f
......@@ -87,7 +87,7 @@ int ecryptfs_write_lower_page_segment(struct inode *ecryptfs_inode,
loff_t offset;
int rc;
offset = ((((off_t)page_for_lower->index) << PAGE_CACHE_SHIFT)
offset = ((((loff_t)page_for_lower->index) << PAGE_CACHE_SHIFT)
+ offset_in_page);
virt = kmap(page_for_lower);
rc = ecryptfs_write_lower(ecryptfs_inode, virt, offset, size);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册