blob: fc52f9f1b80cb08695c2379ed8faf5d761021293 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/readahead.c - address_space-level file readahead.
3 *
4 * Copyright (C) 2002, Linus Torvalds
5 *
6 * 09Apr2002 akpm@zip.com.au
7 * Initial version.
8 */
9
10#include <linux/kernel.h>
11#include <linux/fs.h>
12#include <linux/mm.h>
13#include <linux/module.h>
14#include <linux/blkdev.h>
15#include <linux/backing-dev.h>
Andrew Morton8bde37f2006-12-10 02:19:40 -080016#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/pagevec.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020018#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20void default_unplug_io_fn(struct backing_dev_info *bdi, struct page *page)
21{
22}
23EXPORT_SYMBOL(default_unplug_io_fn);
24
25struct backing_dev_info default_backing_dev_info = {
Fengguang Wu535443f2007-10-16 01:24:36 -070026 .ra_pages = VM_MAX_READAHEAD * 1024 / PAGE_CACHE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 .state = 0,
28 .capabilities = BDI_CAP_MAP_COPY,
29 .unplug_io_fn = default_unplug_io_fn,
30};
31EXPORT_SYMBOL_GPL(default_backing_dev_info);
32
33/*
34 * Initialise a struct file's readahead state. Assumes that the caller has
35 * memset *ra to zero.
36 */
37void
38file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping)
39{
40 ra->ra_pages = mapping->backing_dev_info->ra_pages;
Fengguang Wuf4e6b492007-10-16 01:24:33 -070041 ra->prev_pos = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
Steven Whitehoused41cc702006-01-30 08:53:33 +000043EXPORT_SYMBOL_GPL(file_ra_state_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define list_to_page(head) (list_entry((head)->prev, struct page, lru))
46
47/**
Randy Dunlapbd40cdd2006-06-25 05:48:08 -070048 * read_cache_pages - populate an address space with some pages & start reads against them
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * @mapping: the address_space
50 * @pages: The address of a list_head which contains the target pages. These
51 * pages have their ->index populated and are otherwise uninitialised.
52 * @filler: callback routine for filling a single page.
53 * @data: private data for the callback routine.
54 *
55 * Hides the details of the LRU cache etc from the filesystems.
56 */
57int read_cache_pages(struct address_space *mapping, struct list_head *pages,
58 int (*filler)(void *, struct page *), void *data)
59{
60 struct page *page;
61 struct pagevec lru_pvec;
62 int ret = 0;
63
64 pagevec_init(&lru_pvec, 0);
65
66 while (!list_empty(pages)) {
67 page = list_to_page(pages);
68 list_del(&page->lru);
69 if (add_to_page_cache(page, mapping, page->index, GFP_KERNEL)) {
70 page_cache_release(page);
71 continue;
72 }
73 ret = filler(data, page);
74 if (!pagevec_add(&lru_pvec, page))
75 __pagevec_lru_add(&lru_pvec);
76 if (ret) {
OGAWA Hirofumi38da2882006-12-06 20:36:46 -080077 put_pages_list(pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 break;
79 }
Andrew Morton8bde37f2006-12-10 02:19:40 -080080 task_io_account_read(PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
82 pagevec_lru_add(&lru_pvec);
83 return ret;
84}
85
86EXPORT_SYMBOL(read_cache_pages);
87
88static int read_pages(struct address_space *mapping, struct file *filp,
89 struct list_head *pages, unsigned nr_pages)
90{
91 unsigned page_idx;
92 struct pagevec lru_pvec;
Zach Brown994fc28c2005-12-15 14:28:17 -080093 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 if (mapping->a_ops->readpages) {
96 ret = mapping->a_ops->readpages(filp, mapping, pages, nr_pages);
OGAWA Hirofumi029e3322006-11-02 22:07:06 -080097 /* Clean up the remaining pages */
98 put_pages_list(pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 goto out;
100 }
101
102 pagevec_init(&lru_pvec, 0);
103 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
104 struct page *page = list_to_page(pages);
105 list_del(&page->lru);
106 if (!add_to_page_cache(page, mapping,
107 page->index, GFP_KERNEL)) {
Zach Brown9f1a3cf2006-06-25 05:46:46 -0700108 mapping->a_ops->readpage(filp, page);
109 if (!pagevec_add(&lru_pvec, page))
110 __pagevec_lru_add(&lru_pvec);
111 } else
112 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114 pagevec_lru_add(&lru_pvec);
Zach Brown994fc28c2005-12-15 14:28:17 -0800115 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116out:
117 return ret;
118}
119
120/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * do_page_cache_readahead actually reads a chunk of disk. It allocates all
122 * the pages first, then submits them all for I/O. This avoids the very bad
123 * behaviour which would occur if page allocations are causing VM writeback.
124 * We really don't want to intermingle reads and writes like that.
125 *
126 * Returns the number of pages requested, or the maximum amount of I/O allowed.
127 *
128 * do_page_cache_readahead() returns -1 if it encountered request queue
129 * congestion.
130 */
131static int
132__do_page_cache_readahead(struct address_space *mapping, struct file *filp,
Fengguang Wu46fc3e72007-07-19 01:47:57 -0700133 pgoff_t offset, unsigned long nr_to_read,
134 unsigned long lookahead_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 struct inode *inode = mapping->host;
137 struct page *page;
138 unsigned long end_index; /* The last page we want to read */
139 LIST_HEAD(page_pool);
140 int page_idx;
141 int ret = 0;
142 loff_t isize = i_size_read(inode);
143
144 if (isize == 0)
145 goto out;
146
Fengguang Wu46fc3e72007-07-19 01:47:57 -0700147 end_index = ((isize - 1) >> PAGE_CACHE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /*
150 * Preallocate as many pages as we will need.
151 */
152 read_lock_irq(&mapping->tree_lock);
153 for (page_idx = 0; page_idx < nr_to_read; page_idx++) {
Andrew Morton7361f4d2005-11-07 00:59:28 -0800154 pgoff_t page_offset = offset + page_idx;
Fengguang Wuc743d962007-07-19 01:48:04 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (page_offset > end_index)
157 break;
158
159 page = radix_tree_lookup(&mapping->page_tree, page_offset);
160 if (page)
161 continue;
162
163 read_unlock_irq(&mapping->tree_lock);
164 page = page_cache_alloc_cold(mapping);
165 read_lock_irq(&mapping->tree_lock);
166 if (!page)
167 break;
168 page->index = page_offset;
169 list_add(&page->lru, &page_pool);
Fengguang Wu46fc3e72007-07-19 01:47:57 -0700170 if (page_idx == nr_to_read - lookahead_size)
171 SetPageReadahead(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 ret++;
173 }
174 read_unlock_irq(&mapping->tree_lock);
175
176 /*
177 * Now start the IO. We ignore I/O errors - if the page is not
178 * uptodate then the caller will launch readpage again, and
179 * will then handle the error.
180 */
181 if (ret)
182 read_pages(mapping, filp, &page_pool, ret);
183 BUG_ON(!list_empty(&page_pool));
184out:
185 return ret;
186}
187
188/*
189 * Chunk the readahead into 2 megabyte units, so that we don't pin too much
190 * memory at once.
191 */
192int force_page_cache_readahead(struct address_space *mapping, struct file *filp,
Andrew Morton7361f4d2005-11-07 00:59:28 -0800193 pgoff_t offset, unsigned long nr_to_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 int ret = 0;
196
197 if (unlikely(!mapping->a_ops->readpage && !mapping->a_ops->readpages))
198 return -EINVAL;
199
200 while (nr_to_read) {
201 int err;
202
203 unsigned long this_chunk = (2 * 1024 * 1024) / PAGE_CACHE_SIZE;
204
205 if (this_chunk > nr_to_read)
206 this_chunk = nr_to_read;
207 err = __do_page_cache_readahead(mapping, filp,
Fengguang Wu46fc3e72007-07-19 01:47:57 -0700208 offset, this_chunk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (err < 0) {
210 ret = err;
211 break;
212 }
213 ret += err;
214 offset += this_chunk;
215 nr_to_read -= this_chunk;
216 }
217 return ret;
218}
219
220/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * This version skips the IO if the queue is read-congested, and will tell the
222 * block layer to abandon the readahead if request allocation would block.
223 *
224 * force_page_cache_readahead() will ignore queue congestion and will block on
225 * request queues.
226 */
227int do_page_cache_readahead(struct address_space *mapping, struct file *filp,
Andrew Morton7361f4d2005-11-07 00:59:28 -0800228 pgoff_t offset, unsigned long nr_to_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 if (bdi_read_congested(mapping->backing_dev_info))
231 return -1;
232
Fengguang Wu46fc3e72007-07-19 01:47:57 -0700233 return __do_page_cache_readahead(mapping, filp, offset, nr_to_read, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 * Given a desired number of PAGE_CACHE_SIZE readahead pages, return a
238 * sensible upper limit.
239 */
240unsigned long max_sane_readahead(unsigned long nr)
241{
Christoph Lameter05a04162007-02-10 01:43:05 -0800242 return min(nr, (node_page_state(numa_node_id(), NR_INACTIVE)
243 + node_page_state(numa_node_id(), NR_FREE_PAGES)) / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
Fengguang Wu5ce11102007-07-19 01:47:59 -0700245
246/*
247 * Submit IO for the read-ahead request in file_ra_state.
248 */
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700249static unsigned long ra_submit(struct file_ra_state *ra,
Fengguang Wu5ce11102007-07-19 01:47:59 -0700250 struct address_space *mapping, struct file *filp)
251{
Fengguang Wu5ce11102007-07-19 01:47:59 -0700252 int actual;
253
Fengguang Wu5ce11102007-07-19 01:47:59 -0700254 actual = __do_page_cache_readahead(mapping, filp,
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700255 ra->start, ra->size, ra->async_size);
Fengguang Wu5ce11102007-07-19 01:47:59 -0700256
257 return actual;
258}
Fengguang Wu122a21d2007-07-19 01:48:01 -0700259
260/*
Fengguang Wuc743d962007-07-19 01:48:04 -0700261 * Set the initial window size, round to next power of 2 and square
262 * for small size, x 4 for medium, and x 2 for large
263 * for 128k (32 page) max ra
264 * 1-8 page = 32k initial, > 8 page = 128k initial
265 */
266static unsigned long get_init_ra_size(unsigned long size, unsigned long max)
267{
268 unsigned long newsize = roundup_pow_of_two(size);
269
270 if (newsize <= max / 32)
271 newsize = newsize * 4;
272 else if (newsize <= max / 4)
273 newsize = newsize * 2;
274 else
275 newsize = max;
276
277 return newsize;
278}
279
280/*
Fengguang Wu122a21d2007-07-19 01:48:01 -0700281 * Get the previous window size, ramp it up, and
282 * return it as the new window size.
283 */
Fengguang Wuc743d962007-07-19 01:48:04 -0700284static unsigned long get_next_ra_size(struct file_ra_state *ra,
Fengguang Wu122a21d2007-07-19 01:48:01 -0700285 unsigned long max)
286{
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700287 unsigned long cur = ra->size;
Fengguang Wu122a21d2007-07-19 01:48:01 -0700288 unsigned long newsize;
289
290 if (cur < max / 16)
Fengguang Wuc743d962007-07-19 01:48:04 -0700291 newsize = 4 * cur;
Fengguang Wu122a21d2007-07-19 01:48:01 -0700292 else
Fengguang Wuc743d962007-07-19 01:48:04 -0700293 newsize = 2 * cur;
Fengguang Wu122a21d2007-07-19 01:48:01 -0700294
295 return min(newsize, max);
296}
297
298/*
299 * On-demand readahead design.
300 *
301 * The fields in struct file_ra_state represent the most-recently-executed
302 * readahead attempt:
303 *
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700304 * |<----- async_size ---------|
305 * |------------------- size -------------------->|
306 * |==================#===========================|
307 * ^start ^page marked with PG_readahead
Fengguang Wu122a21d2007-07-19 01:48:01 -0700308 *
309 * To overlap application thinking time and disk I/O time, we do
310 * `readahead pipelining': Do not wait until the application consumed all
311 * readahead pages and stalled on the missing page at readahead_index;
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700312 * Instead, submit an asynchronous readahead I/O as soon as there are
313 * only async_size pages left in the readahead window. Normally async_size
314 * will be equal to size, for maximum pipelining.
Fengguang Wu122a21d2007-07-19 01:48:01 -0700315 *
316 * In interleaved sequential reads, concurrent streams on the same fd can
317 * be invalidating each other's readahead state. So we flag the new readahead
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700318 * page at (start+size-async_size) with PG_readahead, and use it as readahead
Fengguang Wu122a21d2007-07-19 01:48:01 -0700319 * indicator. The flag won't be set on already cached pages, to avoid the
320 * readahead-for-nothing fuss, saving pointless page cache lookups.
321 *
Fengguang Wuf4e6b492007-10-16 01:24:33 -0700322 * prev_pos tracks the last visited byte in the _previous_ read request.
Fengguang Wu122a21d2007-07-19 01:48:01 -0700323 * It should be maintained by the caller, and will be used for detecting
324 * small random reads. Note that the readahead algorithm checks loosely
325 * for sequential patterns. Hence interleaved reads might be served as
326 * sequential ones.
327 *
328 * There is a special-case: if the first page which the application tries to
329 * read happens to be the first page of the file, it is assumed that a linear
330 * read is about to happen and the window is immediately set to the initial size
331 * based on I/O request size and the max_readahead.
332 *
333 * The code ramps up the readahead size aggressively at first, but slow down as
334 * it approaches max_readhead.
335 */
336
337/*
338 * A minimal readahead algorithm for trivial sequential/random reads.
339 */
340static unsigned long
341ondemand_readahead(struct address_space *mapping,
342 struct file_ra_state *ra, struct file *filp,
Rusty Russellcf914a72007-07-19 01:48:08 -0700343 bool hit_readahead_marker, pgoff_t offset,
Fengguang Wu122a21d2007-07-19 01:48:01 -0700344 unsigned long req_size)
345{
Fengguang Wuf4e6b492007-10-16 01:24:33 -0700346 int max = ra->ra_pages; /* max readahead pages */
347 pgoff_t prev_offset;
348 int sequential;
Fengguang Wu122a21d2007-07-19 01:48:01 -0700349
350 /*
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700351 * It's the expected callback offset, assume sequential access.
Fengguang Wu122a21d2007-07-19 01:48:01 -0700352 * Ramp up sizes, and push forward the readahead window.
353 */
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700354 if (offset && (offset == (ra->start + ra->size - ra->async_size) ||
355 offset == (ra->start + ra->size))) {
356 ra->start += ra->size;
357 ra->size = get_next_ra_size(ra, max);
358 ra->async_size = ra->size;
359 goto readit;
Fengguang Wu122a21d2007-07-19 01:48:01 -0700360 }
361
Fengguang Wuf4e6b492007-10-16 01:24:33 -0700362 prev_offset = ra->prev_pos >> PAGE_CACHE_SHIFT;
363 sequential = offset - prev_offset <= 1UL || req_size > max;
364
Fengguang Wu122a21d2007-07-19 01:48:01 -0700365 /*
366 * Standalone, small read.
367 * Read as is, and do not pollute the readahead state.
368 */
Rusty Russellcf914a72007-07-19 01:48:08 -0700369 if (!hit_readahead_marker && !sequential) {
Fengguang Wu122a21d2007-07-19 01:48:01 -0700370 return __do_page_cache_readahead(mapping, filp,
371 offset, req_size, 0);
372 }
373
374 /*
Fengguang Wu6b10c6c2007-10-16 01:24:34 -0700375 * Hit a marked page without valid readahead state.
376 * E.g. interleaved reads.
377 * Query the pagecache for async_size, which normally equals to
378 * readahead size. Ramp it up and use it as the new readahead size.
379 */
380 if (hit_readahead_marker) {
381 pgoff_t start;
382
383 read_lock_irq(&mapping->tree_lock);
384 start = radix_tree_next_hole(&mapping->page_tree, offset, max+1);
385 read_unlock_irq(&mapping->tree_lock);
386
387 if (!start || start - offset > max)
388 return 0;
389
390 ra->start = start;
391 ra->size = start - offset; /* old async_size */
392 ra->size = get_next_ra_size(ra, max);
393 ra->async_size = ra->size;
394 goto readit;
395 }
396
397 /*
Fengguang Wu122a21d2007-07-19 01:48:01 -0700398 * It may be one of
399 * - first read on start of file
400 * - sequential cache miss
401 * - oversize random read
402 * Start readahead for it.
403 */
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700404 ra->start = offset;
405 ra->size = get_init_ra_size(req_size, max);
406 ra->async_size = ra->size > req_size ? ra->size - req_size : ra->size;
Fengguang Wu122a21d2007-07-19 01:48:01 -0700407
Fengguang Wuf9acc8c2007-07-19 01:48:08 -0700408readit:
Fengguang Wu122a21d2007-07-19 01:48:01 -0700409 return ra_submit(ra, mapping, filp);
410}
411
412/**
Rusty Russellcf914a72007-07-19 01:48:08 -0700413 * page_cache_sync_readahead - generic file readahead
Fengguang Wu122a21d2007-07-19 01:48:01 -0700414 * @mapping: address_space which holds the pagecache and I/O vectors
415 * @ra: file_ra_state which holds the readahead state
416 * @filp: passed on to ->readpage() and ->readpages()
Rusty Russellcf914a72007-07-19 01:48:08 -0700417 * @offset: start offset into @mapping, in pagecache page-sized units
Fengguang Wu122a21d2007-07-19 01:48:01 -0700418 * @req_size: hint: total size of the read which the caller is performing in
Rusty Russellcf914a72007-07-19 01:48:08 -0700419 * pagecache pages
Fengguang Wu122a21d2007-07-19 01:48:01 -0700420 *
Rusty Russellcf914a72007-07-19 01:48:08 -0700421 * page_cache_sync_readahead() should be called when a cache miss happened:
422 * it will submit the read. The readahead logic may decide to piggyback more
423 * pages onto the read request if access patterns suggest it will improve
424 * performance.
Fengguang Wu122a21d2007-07-19 01:48:01 -0700425 */
Rusty Russellcf914a72007-07-19 01:48:08 -0700426void page_cache_sync_readahead(struct address_space *mapping,
427 struct file_ra_state *ra, struct file *filp,
428 pgoff_t offset, unsigned long req_size)
Fengguang Wu122a21d2007-07-19 01:48:01 -0700429{
430 /* no read-ahead */
431 if (!ra->ra_pages)
Rusty Russellcf914a72007-07-19 01:48:08 -0700432 return;
Fengguang Wu122a21d2007-07-19 01:48:01 -0700433
434 /* do read-ahead */
Rusty Russellcf914a72007-07-19 01:48:08 -0700435 ondemand_readahead(mapping, ra, filp, false, offset, req_size);
Fengguang Wu122a21d2007-07-19 01:48:01 -0700436}
Rusty Russellcf914a72007-07-19 01:48:08 -0700437EXPORT_SYMBOL_GPL(page_cache_sync_readahead);
438
439/**
440 * page_cache_async_readahead - file readahead for marked pages
441 * @mapping: address_space which holds the pagecache and I/O vectors
442 * @ra: file_ra_state which holds the readahead state
443 * @filp: passed on to ->readpage() and ->readpages()
444 * @page: the page at @offset which has the PG_readahead flag set
445 * @offset: start offset into @mapping, in pagecache page-sized units
446 * @req_size: hint: total size of the read which the caller is performing in
447 * pagecache pages
448 *
449 * page_cache_async_ondemand() should be called when a page is used which
450 * has the PG_readahead flag: this is a marker to suggest that the application
451 * has used up enough of the readahead window that we should start pulling in
452 * more pages. */
453void
454page_cache_async_readahead(struct address_space *mapping,
455 struct file_ra_state *ra, struct file *filp,
456 struct page *page, pgoff_t offset,
457 unsigned long req_size)
458{
459 /* no read-ahead */
460 if (!ra->ra_pages)
461 return;
462
463 /*
464 * Same bit is used for PG_readahead and PG_reclaim.
465 */
466 if (PageWriteback(page))
467 return;
468
469 ClearPageReadahead(page);
470
471 /*
472 * Defer asynchronous read-ahead on IO congestion.
473 */
474 if (bdi_read_congested(mapping->backing_dev_info))
475 return;
476
477 /* do read-ahead */
478 ondemand_readahead(mapping, ra, filp, true, offset, req_size);
479}
480EXPORT_SYMBOL_GPL(page_cache_async_readahead);