diff options
author | Jan Kara <jack@suse.cz> | 2008-02-08 07:20:11 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:32 -0500 |
commit | 2004dc8eec1b4f0692b3be87ea80c70faa44d619 (patch) | |
tree | 9458abfdecf29c08a33cccb845eb273c70ad49c5 /mm/filemap.c | |
parent | 476aed3870b26735c4fcfdaa95420fa9e1de5119 (diff) |
Use pgoff_t instead of unsigned long
Convert variables containing page indexes to pgoff_t.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/filemap.c')
-rw-r--r-- | mm/filemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index 5357fcc4643b..4eb958c402fe 100644 --- a/mm/filemap.c +++ b/mm/filemap.c | |||
@@ -1332,7 +1332,7 @@ int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf) | |||
1332 | struct file_ra_state *ra = &file->f_ra; | 1332 | struct file_ra_state *ra = &file->f_ra; |
1333 | struct inode *inode = mapping->host; | 1333 | struct inode *inode = mapping->host; |
1334 | struct page *page; | 1334 | struct page *page; |
1335 | unsigned long size; | 1335 | pgoff_t size; |
1336 | int did_readaround = 0; | 1336 | int did_readaround = 0; |
1337 | int ret = 0; | 1337 | int ret = 0; |
1338 | 1338 | ||