diff options
Diffstat (limited to 'mm/readahead.c')
-rw-r--r-- | mm/readahead.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mm/readahead.c b/mm/readahead.c index 60cd846a9a44..24682f6f4cfd 100644 --- a/mm/readahead.c +++ b/mm/readahead.c | |||
@@ -89,8 +89,8 @@ int read_cache_pages(struct address_space *mapping, struct list_head *pages, | |||
89 | while (!list_empty(pages)) { | 89 | while (!list_empty(pages)) { |
90 | page = list_to_page(pages); | 90 | page = list_to_page(pages); |
91 | list_del(&page->lru); | 91 | list_del(&page->lru); |
92 | if (add_to_page_cache_lru(page, mapping, | 92 | if (add_to_page_cache_lru(page, mapping, page->index, |
93 | page->index, GFP_KERNEL)) { | 93 | GFP_KERNEL & mapping_gfp_mask(mapping))) { |
94 | read_cache_pages_invalidate_page(mapping, page); | 94 | read_cache_pages_invalidate_page(mapping, page); |
95 | continue; | 95 | continue; |
96 | } | 96 | } |
@@ -127,8 +127,8 @@ static int read_pages(struct address_space *mapping, struct file *filp, | |||
127 | for (page_idx = 0; page_idx < nr_pages; page_idx++) { | 127 | for (page_idx = 0; page_idx < nr_pages; page_idx++) { |
128 | struct page *page = list_to_page(pages); | 128 | struct page *page = list_to_page(pages); |
129 | list_del(&page->lru); | 129 | list_del(&page->lru); |
130 | if (!add_to_page_cache_lru(page, mapping, | 130 | if (!add_to_page_cache_lru(page, mapping, page->index, |
131 | page->index, GFP_KERNEL)) { | 131 | GFP_KERNEL & mapping_gfp_mask(mapping))) { |
132 | mapping->a_ops->readpage(filp, page); | 132 | mapping->a_ops->readpage(filp, page); |
133 | } | 133 | } |
134 | page_cache_release(page); | 134 | page_cache_release(page); |