diff options
Diffstat (limited to 'mm')
-rw-r--r-- | mm/readahead.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mm/readahead.c b/mm/readahead.c index 0ca36a7770b1..17b9172ec37f 100644 --- a/mm/readahead.c +++ b/mm/readahead.c | |||
@@ -326,7 +326,6 @@ static unsigned long get_next_ra_size(struct file_ra_state *ra, | |||
326 | * - thrashing threshold in memory tight systems | 326 | * - thrashing threshold in memory tight systems |
327 | */ | 327 | */ |
328 | static pgoff_t count_history_pages(struct address_space *mapping, | 328 | static pgoff_t count_history_pages(struct address_space *mapping, |
329 | struct file_ra_state *ra, | ||
330 | pgoff_t offset, unsigned long max) | 329 | pgoff_t offset, unsigned long max) |
331 | { | 330 | { |
332 | pgoff_t head; | 331 | pgoff_t head; |
@@ -349,7 +348,7 @@ static int try_context_readahead(struct address_space *mapping, | |||
349 | { | 348 | { |
350 | pgoff_t size; | 349 | pgoff_t size; |
351 | 350 | ||
352 | size = count_history_pages(mapping, ra, offset, max); | 351 | size = count_history_pages(mapping, offset, max); |
353 | 352 | ||
354 | /* | 353 | /* |
355 | * not enough history pages: | 354 | * not enough history pages: |