aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 4a6a21077bae..7a998c49a086 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -697,12 +697,12 @@ struct fown_struct {
697 * Track a single file's readahead state 697 * Track a single file's readahead state
698 */ 698 */
699struct file_ra_state { 699struct file_ra_state {
700 pgoff_t start; /* where readahead started */ 700 pgoff_t start; /* where readahead started */
701 unsigned long size; /* # of readahead pages */ 701 unsigned int size; /* # of readahead pages */
702 unsigned long async_size; /* do asynchronous readahead when 702 unsigned int async_size; /* do asynchronous readahead when
703 there are only # of pages ahead */ 703 there are only # of pages ahead */
704 704
705 unsigned long ra_pages; /* Maximum readahead window */ 705 unsigned int ra_pages; /* Maximum readahead window */
706 unsigned long mmap_hit; /* Cache hit stat for mmap accesses */ 706 unsigned long mmap_hit; /* Cache hit stat for mmap accesses */
707 unsigned long mmap_miss; /* Cache miss stat for mmap accesses */ 707 unsigned long mmap_miss; /* Cache miss stat for mmap accesses */
708 unsigned long prev_index; /* Cache last read() position */ 708 unsigned long prev_index; /* Cache last read() position */