diff options
author | Fengguang Wu <wfg@mail.ustc.edu.cn> | 2007-10-16 04:24:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:42:52 -0400 |
commit | f4e6b498d6e06742d72706ef50593a9c4dd72214 (patch) | |
tree | 74a573302b2ea086c0d21907175be604f110f5b1 /mm/filemap.c | |
parent | 0bb7ba6b9c358c12084a3cbc6ac08c8d1e973937 (diff) |
readahead: combine file_ra_state.prev_index/prev_offset into prev_pos
Combine the file_ra_state members
unsigned long prev_index
unsigned int prev_offset
into
loff_t prev_pos
It is more consistent and better supports huge files.
Thanks to Peter for the nice proposal!
[akpm@linux-foundation.org: fix shift overflow]
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Fengguang Wu <wfg@mail.ustc.edu.cn>
Cc: Rusty Russell <rusty@rustcorp.com.au>
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 | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index 5dc18d76e703..bbcca456d8a6 100644 --- a/mm/filemap.c +++ b/mm/filemap.c | |||
@@ -879,8 +879,8 @@ void do_generic_mapping_read(struct address_space *mapping, | |||
879 | cached_page = NULL; | 879 | cached_page = NULL; |
880 | index = *ppos >> PAGE_CACHE_SHIFT; | 880 | index = *ppos >> PAGE_CACHE_SHIFT; |
881 | next_index = index; | 881 | next_index = index; |
882 | prev_index = ra.prev_index; | 882 | prev_index = ra.prev_pos >> PAGE_CACHE_SHIFT; |
883 | prev_offset = ra.prev_offset; | 883 | prev_offset = ra.prev_pos & (PAGE_CACHE_SIZE-1); |
884 | last_index = (*ppos + desc->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT; | 884 | last_index = (*ppos + desc->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT; |
885 | offset = *ppos & ~PAGE_CACHE_MASK; | 885 | offset = *ppos & ~PAGE_CACHE_MASK; |
886 | 886 | ||
@@ -966,7 +966,6 @@ page_ok: | |||
966 | index += offset >> PAGE_CACHE_SHIFT; | 966 | index += offset >> PAGE_CACHE_SHIFT; |
967 | offset &= ~PAGE_CACHE_MASK; | 967 | offset &= ~PAGE_CACHE_MASK; |
968 | prev_offset = offset; | 968 | prev_offset = offset; |
969 | ra.prev_offset = offset; | ||
970 | 969 | ||
971 | page_cache_release(page); | 970 | page_cache_release(page); |
972 | if (ret == nr && desc->count) | 971 | if (ret == nr && desc->count) |
@@ -1056,9 +1055,11 @@ no_cached_page: | |||
1056 | 1055 | ||
1057 | out: | 1056 | out: |
1058 | *_ra = ra; | 1057 | *_ra = ra; |
1059 | _ra->prev_index = prev_index; | 1058 | _ra->prev_pos = prev_index; |
1059 | _ra->prev_pos <<= PAGE_CACHE_SHIFT; | ||
1060 | _ra->prev_pos |= prev_offset; | ||
1060 | 1061 | ||
1061 | *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset; | 1062 | *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset; |
1062 | if (cached_page) | 1063 | if (cached_page) |
1063 | page_cache_release(cached_page); | 1064 | page_cache_release(cached_page); |
1064 | if (filp) | 1065 | if (filp) |
@@ -1396,7 +1397,7 @@ retry_find: | |||
1396 | * Found the page and have a reference on it. | 1397 | * Found the page and have a reference on it. |
1397 | */ | 1398 | */ |
1398 | mark_page_accessed(page); | 1399 | mark_page_accessed(page); |
1399 | ra->prev_index = page->index; | 1400 | ra->prev_pos = (loff_t)page->index << PAGE_CACHE_SHIFT; |
1400 | vmf->page = page; | 1401 | vmf->page = page; |
1401 | return ret | VM_FAULT_LOCKED; | 1402 | return ret | VM_FAULT_LOCKED; |
1402 | 1403 | ||