Commit 937085aa authored by Fengguang Wu's avatar Fengguang Wu Committed by Linus Torvalds

readahead: compacting file_ra_state

Use 'unsigned int' instead of 'unsigned long' for readahead sizes.

This helps reduce memory consumption on 64bit CPU when a lot of files are
opened.

CC: Andi Kleen <andi@firstfloor.org>
Signed-off-by: default avatarFengguang Wu <wfg@mail.ustc.edu.cn>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 43fac94d
...@@ -697,12 +697,12 @@ struct fown_struct { ...@@ -697,12 +697,12 @@ struct fown_struct {
* Track a single file's readahead state * Track a single file's readahead state
*/ */
struct file_ra_state { struct file_ra_state {
pgoff_t start; /* where readahead started */ pgoff_t start; /* where readahead started */
unsigned long size; /* # of readahead pages */ unsigned int size; /* # of readahead pages */
unsigned long async_size; /* do asynchronous readahead when unsigned int async_size; /* do asynchronous readahead when
there are only # of pages ahead */ there are only # of pages ahead */
unsigned long ra_pages; /* Maximum readahead window */ unsigned int ra_pages; /* Maximum readahead window */
unsigned long mmap_hit; /* Cache hit stat for mmap accesses */ unsigned long mmap_hit; /* Cache hit stat for mmap accesses */
unsigned long mmap_miss; /* Cache miss stat for mmap accesses */ unsigned long mmap_miss; /* Cache miss stat for mmap accesses */
unsigned long prev_index; /* Cache last read() position */ unsigned long prev_index; /* Cache last read() position */
......
...@@ -351,7 +351,7 @@ ondemand_readahead(struct address_space *mapping, ...@@ -351,7 +351,7 @@ ondemand_readahead(struct address_space *mapping,
bool hit_readahead_marker, pgoff_t offset, bool hit_readahead_marker, pgoff_t offset,
unsigned long req_size) unsigned long req_size)
{ {
unsigned long max; /* max readahead pages */ int max; /* max readahead pages */
int sequential; int sequential;
max = ra->ra_pages; max = ra->ra_pages;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment