commit 74953b0ff8bb0e69a92e6da1005ebfbf5271edb4
Author: Erez Zadok <[EMAIL PROTECTED]>
Date:   Thu Sep 20 18:35:17 2007 -0400

    Unionfs: cast page->index loff_t before shifting
    
    Signed-off-by: Erez Zadok <[EMAIL PROTECTED]>

diff --git a/fs/unionfs/mmap.c b/fs/unionfs/mmap.c
index 9ebd1d6..aa81c1c 100644
--- a/fs/unionfs/mmap.c
+++ b/fs/unionfs/mmap.c
@@ -179,7 +179,8 @@ static int unionfs_do_readpage(struct file *file, struct 
page *page)
         * may be a little slower, but a lot safer, as the VFS does a lot of
         * the necessary magic for us.
         */
-       offset = lower_file->f_pos = (page->index << PAGE_CACHE_SHIFT);
+       offset = lower_file->f_pos =
+               ((loff_t) page->index << PAGE_CACHE_SHIFT);
        old_fs = get_fs();
        set_fs(KERNEL_DS);
        err = vfs_read(lower_file, page_data, PAGE_CACHE_SIZE,
@@ -289,7 +290,7 @@ static int unionfs_commit_write(struct file *file, struct 
page *page,
        BUG_ON(lower_file == NULL);
 
        page_data = (char *)kmap(page);
-       lower_file->f_pos = (page->index << PAGE_CACHE_SHIFT) + from;
+       lower_file->f_pos = ((loff_t) page->index << PAGE_CACHE_SHIFT) + from;
 
        /*
         * SP: I use vfs_write instead of copying page data and the
_______________________________________________
unionfs-cvs mailing list: http://unionfs.filesystems.org/
[email protected]
http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs-cvs

Reply via email to