xref: /linux/mm/readahead.c (revision c7b95d5156a9ee70f800bd2e47a9eba677be73e1)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * mm/readahead.c - address_space-level file readahead.
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Copyright (C) 2002, Linus Torvalds
51da177e4SLinus Torvalds  *
6e1f8e874SFrancois Cami  * 09Apr2002	Andrew Morton
71da177e4SLinus Torvalds  *		Initial version.
81da177e4SLinus Torvalds  */
91da177e4SLinus Torvalds 
101da177e4SLinus Torvalds #include <linux/kernel.h>
1111bd969fSRoss Zwisler #include <linux/dax.h>
125a0e3ad6STejun Heo #include <linux/gfp.h>
13b95f1b31SPaul Gortmaker #include <linux/export.h>
141da177e4SLinus Torvalds #include <linux/blkdev.h>
151da177e4SLinus Torvalds #include <linux/backing-dev.h>
168bde37f0SAndrew Morton #include <linux/task_io_accounting_ops.h>
171da177e4SLinus Torvalds #include <linux/pagevec.h>
18f5ff8422SJens Axboe #include <linux/pagemap.h>
19782182e5SCong Wang #include <linux/syscalls.h>
20782182e5SCong Wang #include <linux/file.h>
21d72ee911SGeliang Tang #include <linux/mm_inline.h>
221da177e4SLinus Torvalds 
2329f175d1SFabian Frederick #include "internal.h"
2429f175d1SFabian Frederick 
251da177e4SLinus Torvalds /*
261da177e4SLinus Torvalds  * Initialise a struct file's readahead state.  Assumes that the caller has
271da177e4SLinus Torvalds  * memset *ra to zero.
281da177e4SLinus Torvalds  */
291da177e4SLinus Torvalds void
301da177e4SLinus Torvalds file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping)
311da177e4SLinus Torvalds {
32de1414a6SChristoph Hellwig 	ra->ra_pages = inode_to_bdi(mapping->host)->ra_pages;
33f4e6b498SFengguang Wu 	ra->prev_pos = -1;
341da177e4SLinus Torvalds }
35d41cc702SSteven Whitehouse EXPORT_SYMBOL_GPL(file_ra_state_init);
361da177e4SLinus Torvalds 
3703fb3d2aSDavid Howells /*
3803fb3d2aSDavid Howells  * see if a page needs releasing upon read_cache_pages() failure
39266cf658SDavid Howells  * - the caller of read_cache_pages() may have set PG_private or PG_fscache
40266cf658SDavid Howells  *   before calling, such as the NFS fs marking pages that are cached locally
41266cf658SDavid Howells  *   on disk, thus we need to give the fs a chance to clean up in the event of
42266cf658SDavid Howells  *   an error
4303fb3d2aSDavid Howells  */
4403fb3d2aSDavid Howells static void read_cache_pages_invalidate_page(struct address_space *mapping,
4503fb3d2aSDavid Howells 					     struct page *page)
4603fb3d2aSDavid Howells {
47266cf658SDavid Howells 	if (page_has_private(page)) {
4803fb3d2aSDavid Howells 		if (!trylock_page(page))
4903fb3d2aSDavid Howells 			BUG();
5003fb3d2aSDavid Howells 		page->mapping = mapping;
5109cbfeafSKirill A. Shutemov 		do_invalidatepage(page, 0, PAGE_SIZE);
5203fb3d2aSDavid Howells 		page->mapping = NULL;
5303fb3d2aSDavid Howells 		unlock_page(page);
5403fb3d2aSDavid Howells 	}
5509cbfeafSKirill A. Shutemov 	put_page(page);
5603fb3d2aSDavid Howells }
5703fb3d2aSDavid Howells 
5803fb3d2aSDavid Howells /*
5903fb3d2aSDavid Howells  * release a list of pages, invalidating them first if need be
6003fb3d2aSDavid Howells  */
6103fb3d2aSDavid Howells static void read_cache_pages_invalidate_pages(struct address_space *mapping,
6203fb3d2aSDavid Howells 					      struct list_head *pages)
6303fb3d2aSDavid Howells {
6403fb3d2aSDavid Howells 	struct page *victim;
6503fb3d2aSDavid Howells 
6603fb3d2aSDavid Howells 	while (!list_empty(pages)) {
67c8ad6302SGeliang Tang 		victim = lru_to_page(pages);
6803fb3d2aSDavid Howells 		list_del(&victim->lru);
6903fb3d2aSDavid Howells 		read_cache_pages_invalidate_page(mapping, victim);
7003fb3d2aSDavid Howells 	}
7103fb3d2aSDavid Howells }
7203fb3d2aSDavid Howells 
731da177e4SLinus Torvalds /**
74bd40cddaSRandy Dunlap  * read_cache_pages - populate an address space with some pages & start reads against them
751da177e4SLinus Torvalds  * @mapping: the address_space
761da177e4SLinus Torvalds  * @pages: The address of a list_head which contains the target pages.  These
771da177e4SLinus Torvalds  *   pages have their ->index populated and are otherwise uninitialised.
781da177e4SLinus Torvalds  * @filler: callback routine for filling a single page.
791da177e4SLinus Torvalds  * @data: private data for the callback routine.
801da177e4SLinus Torvalds  *
811da177e4SLinus Torvalds  * Hides the details of the LRU cache etc from the filesystems.
821da177e4SLinus Torvalds  */
831da177e4SLinus Torvalds int read_cache_pages(struct address_space *mapping, struct list_head *pages,
841da177e4SLinus Torvalds 			int (*filler)(void *, struct page *), void *data)
851da177e4SLinus Torvalds {
861da177e4SLinus Torvalds 	struct page *page;
871da177e4SLinus Torvalds 	int ret = 0;
881da177e4SLinus Torvalds 
891da177e4SLinus Torvalds 	while (!list_empty(pages)) {
90c8ad6302SGeliang Tang 		page = lru_to_page(pages);
911da177e4SLinus Torvalds 		list_del(&page->lru);
92063d99b4SMichal Hocko 		if (add_to_page_cache_lru(page, mapping, page->index,
938a5c743eSMichal Hocko 				readahead_gfp_mask(mapping))) {
9403fb3d2aSDavid Howells 			read_cache_pages_invalidate_page(mapping, page);
951da177e4SLinus Torvalds 			continue;
961da177e4SLinus Torvalds 		}
9709cbfeafSKirill A. Shutemov 		put_page(page);
98eb2be189SNick Piggin 
991da177e4SLinus Torvalds 		ret = filler(data, page);
100eb2be189SNick Piggin 		if (unlikely(ret)) {
10103fb3d2aSDavid Howells 			read_cache_pages_invalidate_pages(mapping, pages);
1021da177e4SLinus Torvalds 			break;
1031da177e4SLinus Torvalds 		}
10409cbfeafSKirill A. Shutemov 		task_io_account_read(PAGE_SIZE);
1051da177e4SLinus Torvalds 	}
1061da177e4SLinus Torvalds 	return ret;
1071da177e4SLinus Torvalds }
1081da177e4SLinus Torvalds 
1091da177e4SLinus Torvalds EXPORT_SYMBOL(read_cache_pages);
1101da177e4SLinus Torvalds 
1111da177e4SLinus Torvalds static int read_pages(struct address_space *mapping, struct file *filp,
1128a5c743eSMichal Hocko 		struct list_head *pages, unsigned int nr_pages, gfp_t gfp)
1131da177e4SLinus Torvalds {
1145b417b18SJens Axboe 	struct blk_plug plug;
1151da177e4SLinus Torvalds 	unsigned page_idx;
116994fc28cSZach Brown 	int ret;
1171da177e4SLinus Torvalds 
1185b417b18SJens Axboe 	blk_start_plug(&plug);
1195b417b18SJens Axboe 
1201da177e4SLinus Torvalds 	if (mapping->a_ops->readpages) {
1211da177e4SLinus Torvalds 		ret = mapping->a_ops->readpages(filp, mapping, pages, nr_pages);
122029e332eSOGAWA Hirofumi 		/* Clean up the remaining pages */
123029e332eSOGAWA Hirofumi 		put_pages_list(pages);
1241da177e4SLinus Torvalds 		goto out;
1251da177e4SLinus Torvalds 	}
1261da177e4SLinus Torvalds 
1271da177e4SLinus Torvalds 	for (page_idx = 0; page_idx < nr_pages; page_idx++) {
128c8ad6302SGeliang Tang 		struct page *page = lru_to_page(pages);
1291da177e4SLinus Torvalds 		list_del(&page->lru);
1308a5c743eSMichal Hocko 		if (!add_to_page_cache_lru(page, mapping, page->index, gfp))
1319f1a3cfcSZach Brown 			mapping->a_ops->readpage(filp, page);
13209cbfeafSKirill A. Shutemov 		put_page(page);
1331da177e4SLinus Torvalds 	}
134994fc28cSZach Brown 	ret = 0;
1355b417b18SJens Axboe 
1361da177e4SLinus Torvalds out:
1375b417b18SJens Axboe 	blk_finish_plug(&plug);
1385b417b18SJens Axboe 
1391da177e4SLinus Torvalds 	return ret;
1401da177e4SLinus Torvalds }
1411da177e4SLinus Torvalds 
1421da177e4SLinus Torvalds /*
143d30a1100SWu Fengguang  * __do_page_cache_readahead() actually reads a chunk of disk.  It allocates all
1441da177e4SLinus Torvalds  * the pages first, then submits them all for I/O. This avoids the very bad
1451da177e4SLinus Torvalds  * behaviour which would occur if page allocations are causing VM writeback.
1461da177e4SLinus Torvalds  * We really don't want to intermingle reads and writes like that.
1471da177e4SLinus Torvalds  *
1481da177e4SLinus Torvalds  * Returns the number of pages requested, or the maximum amount of I/O allowed.
1491da177e4SLinus Torvalds  */
15029f175d1SFabian Frederick int __do_page_cache_readahead(struct address_space *mapping, struct file *filp,
15146fc3e7bSFengguang Wu 			pgoff_t offset, unsigned long nr_to_read,
15246fc3e7bSFengguang Wu 			unsigned long lookahead_size)
1531da177e4SLinus Torvalds {
1541da177e4SLinus Torvalds 	struct inode *inode = mapping->host;
1551da177e4SLinus Torvalds 	struct page *page;
1561da177e4SLinus Torvalds 	unsigned long end_index;	/* The last page we want to read */
1571da177e4SLinus Torvalds 	LIST_HEAD(page_pool);
1581da177e4SLinus Torvalds 	int page_idx;
1591da177e4SLinus Torvalds 	int ret = 0;
1601da177e4SLinus Torvalds 	loff_t isize = i_size_read(inode);
1618a5c743eSMichal Hocko 	gfp_t gfp_mask = readahead_gfp_mask(mapping);
1621da177e4SLinus Torvalds 
1631da177e4SLinus Torvalds 	if (isize == 0)
1641da177e4SLinus Torvalds 		goto out;
1651da177e4SLinus Torvalds 
16609cbfeafSKirill A. Shutemov 	end_index = ((isize - 1) >> PAGE_SHIFT);
1671da177e4SLinus Torvalds 
1681da177e4SLinus Torvalds 	/*
1691da177e4SLinus Torvalds 	 * Preallocate as many pages as we will need.
1701da177e4SLinus Torvalds 	 */
1711da177e4SLinus Torvalds 	for (page_idx = 0; page_idx < nr_to_read; page_idx++) {
1727361f4d8SAndrew Morton 		pgoff_t page_offset = offset + page_idx;
1731da177e4SLinus Torvalds 
1741da177e4SLinus Torvalds 		if (page_offset > end_index)
1751da177e4SLinus Torvalds 			break;
1761da177e4SLinus Torvalds 
17700128188SNick Piggin 		rcu_read_lock();
1781da177e4SLinus Torvalds 		page = radix_tree_lookup(&mapping->page_tree, page_offset);
17900128188SNick Piggin 		rcu_read_unlock();
1800cd6144aSJohannes Weiner 		if (page && !radix_tree_exceptional_entry(page))
1811da177e4SLinus Torvalds 			continue;
1821da177e4SLinus Torvalds 
1838a5c743eSMichal Hocko 		page = __page_cache_alloc(gfp_mask);
1841da177e4SLinus Torvalds 		if (!page)
1851da177e4SLinus Torvalds 			break;
1861da177e4SLinus Torvalds 		page->index = page_offset;
1871da177e4SLinus Torvalds 		list_add(&page->lru, &page_pool);
18846fc3e7bSFengguang Wu 		if (page_idx == nr_to_read - lookahead_size)
18946fc3e7bSFengguang Wu 			SetPageReadahead(page);
1901da177e4SLinus Torvalds 		ret++;
1911da177e4SLinus Torvalds 	}
1921da177e4SLinus Torvalds 
1931da177e4SLinus Torvalds 	/*
1941da177e4SLinus Torvalds 	 * Now start the IO.  We ignore I/O errors - if the page is not
1951da177e4SLinus Torvalds 	 * uptodate then the caller will launch readpage again, and
1961da177e4SLinus Torvalds 	 * will then handle the error.
1971da177e4SLinus Torvalds 	 */
1981da177e4SLinus Torvalds 	if (ret)
1998a5c743eSMichal Hocko 		read_pages(mapping, filp, &page_pool, ret, gfp_mask);
2001da177e4SLinus Torvalds 	BUG_ON(!list_empty(&page_pool));
2011da177e4SLinus Torvalds out:
2021da177e4SLinus Torvalds 	return ret;
2031da177e4SLinus Torvalds }
2041da177e4SLinus Torvalds 
2051da177e4SLinus Torvalds /*
2061da177e4SLinus Torvalds  * Chunk the readahead into 2 megabyte units, so that we don't pin too much
2071da177e4SLinus Torvalds  * memory at once.
2081da177e4SLinus Torvalds  */
2091da177e4SLinus Torvalds int force_page_cache_readahead(struct address_space *mapping, struct file *filp,
2107361f4d8SAndrew Morton 			       pgoff_t offset, unsigned long nr_to_read)
2111da177e4SLinus Torvalds {
2129491ae4aSJens Axboe 	struct backing_dev_info *bdi = inode_to_bdi(mapping->host);
2139491ae4aSJens Axboe 	struct file_ra_state *ra = &filp->f_ra;
2149491ae4aSJens Axboe 	unsigned long max_pages;
2159491ae4aSJens Axboe 
2161da177e4SLinus Torvalds 	if (unlikely(!mapping->a_ops->readpage && !mapping->a_ops->readpages))
2171da177e4SLinus Torvalds 		return -EINVAL;
2181da177e4SLinus Torvalds 
2199491ae4aSJens Axboe 	/*
2209491ae4aSJens Axboe 	 * If the request exceeds the readahead window, allow the read to
2219491ae4aSJens Axboe 	 * be up to the optimal hardware IO size
2229491ae4aSJens Axboe 	 */
2239491ae4aSJens Axboe 	max_pages = max_t(unsigned long, bdi->io_pages, ra->ra_pages);
2249491ae4aSJens Axboe 	nr_to_read = min(nr_to_read, max_pages);
2251da177e4SLinus Torvalds 	while (nr_to_read) {
2261da177e4SLinus Torvalds 		int err;
2271da177e4SLinus Torvalds 
22809cbfeafSKirill A. Shutemov 		unsigned long this_chunk = (2 * 1024 * 1024) / PAGE_SIZE;
2291da177e4SLinus Torvalds 
2301da177e4SLinus Torvalds 		if (this_chunk > nr_to_read)
2311da177e4SLinus Torvalds 			this_chunk = nr_to_read;
2321da177e4SLinus Torvalds 		err = __do_page_cache_readahead(mapping, filp,
23346fc3e7bSFengguang Wu 						offset, this_chunk, 0);
23458d5640eSMark Rutland 		if (err < 0)
23558d5640eSMark Rutland 			return err;
23658d5640eSMark Rutland 
2371da177e4SLinus Torvalds 		offset += this_chunk;
2381da177e4SLinus Torvalds 		nr_to_read -= this_chunk;
2391da177e4SLinus Torvalds 	}
24058d5640eSMark Rutland 	return 0;
2411da177e4SLinus Torvalds }
2421da177e4SLinus Torvalds 
2435ce1110bSFengguang Wu /*
244c743d96bSFengguang Wu  * Set the initial window size, round to next power of 2 and square
245c743d96bSFengguang Wu  * for small size, x 4 for medium, and x 2 for large
246c743d96bSFengguang Wu  * for 128k (32 page) max ra
247c743d96bSFengguang Wu  * 1-8 page = 32k initial, > 8 page = 128k initial
248c743d96bSFengguang Wu  */
249c743d96bSFengguang Wu static unsigned long get_init_ra_size(unsigned long size, unsigned long max)
250c743d96bSFengguang Wu {
251c743d96bSFengguang Wu 	unsigned long newsize = roundup_pow_of_two(size);
252c743d96bSFengguang Wu 
253c743d96bSFengguang Wu 	if (newsize <= max / 32)
254c743d96bSFengguang Wu 		newsize = newsize * 4;
255c743d96bSFengguang Wu 	else if (newsize <= max / 4)
256c743d96bSFengguang Wu 		newsize = newsize * 2;
257c743d96bSFengguang Wu 	else
258c743d96bSFengguang Wu 		newsize = max;
259c743d96bSFengguang Wu 
260c743d96bSFengguang Wu 	return newsize;
261c743d96bSFengguang Wu }
262c743d96bSFengguang Wu 
263c743d96bSFengguang Wu /*
264122a21d1SFengguang Wu  *  Get the previous window size, ramp it up, and
265122a21d1SFengguang Wu  *  return it as the new window size.
266122a21d1SFengguang Wu  */
267c743d96bSFengguang Wu static unsigned long get_next_ra_size(struct file_ra_state *ra,
268122a21d1SFengguang Wu 						unsigned long max)
269122a21d1SFengguang Wu {
270f9acc8c7SFengguang Wu 	unsigned long cur = ra->size;
271122a21d1SFengguang Wu 	unsigned long newsize;
272122a21d1SFengguang Wu 
273122a21d1SFengguang Wu 	if (cur < max / 16)
274c743d96bSFengguang Wu 		newsize = 4 * cur;
275122a21d1SFengguang Wu 	else
276c743d96bSFengguang Wu 		newsize = 2 * cur;
277122a21d1SFengguang Wu 
278122a21d1SFengguang Wu 	return min(newsize, max);
279122a21d1SFengguang Wu }
280122a21d1SFengguang Wu 
281122a21d1SFengguang Wu /*
282122a21d1SFengguang Wu  * On-demand readahead design.
283122a21d1SFengguang Wu  *
284122a21d1SFengguang Wu  * The fields in struct file_ra_state represent the most-recently-executed
285122a21d1SFengguang Wu  * readahead attempt:
286122a21d1SFengguang Wu  *
287f9acc8c7SFengguang Wu  *                        |<----- async_size ---------|
288f9acc8c7SFengguang Wu  *     |------------------- size -------------------->|
289f9acc8c7SFengguang Wu  *     |==================#===========================|
290f9acc8c7SFengguang Wu  *     ^start             ^page marked with PG_readahead
291122a21d1SFengguang Wu  *
292122a21d1SFengguang Wu  * To overlap application thinking time and disk I/O time, we do
293122a21d1SFengguang Wu  * `readahead pipelining': Do not wait until the application consumed all
294122a21d1SFengguang Wu  * readahead pages and stalled on the missing page at readahead_index;
295f9acc8c7SFengguang Wu  * Instead, submit an asynchronous readahead I/O as soon as there are
296f9acc8c7SFengguang Wu  * only async_size pages left in the readahead window. Normally async_size
297f9acc8c7SFengguang Wu  * will be equal to size, for maximum pipelining.
298122a21d1SFengguang Wu  *
299122a21d1SFengguang Wu  * In interleaved sequential reads, concurrent streams on the same fd can
300122a21d1SFengguang Wu  * be invalidating each other's readahead state. So we flag the new readahead
301f9acc8c7SFengguang Wu  * page at (start+size-async_size) with PG_readahead, and use it as readahead
302122a21d1SFengguang Wu  * indicator. The flag won't be set on already cached pages, to avoid the
303122a21d1SFengguang Wu  * readahead-for-nothing fuss, saving pointless page cache lookups.
304122a21d1SFengguang Wu  *
305f4e6b498SFengguang Wu  * prev_pos tracks the last visited byte in the _previous_ read request.
306122a21d1SFengguang Wu  * It should be maintained by the caller, and will be used for detecting
307122a21d1SFengguang Wu  * small random reads. Note that the readahead algorithm checks loosely
308122a21d1SFengguang Wu  * for sequential patterns. Hence interleaved reads might be served as
309122a21d1SFengguang Wu  * sequential ones.
310122a21d1SFengguang Wu  *
311122a21d1SFengguang Wu  * There is a special-case: if the first page which the application tries to
312122a21d1SFengguang Wu  * read happens to be the first page of the file, it is assumed that a linear
313122a21d1SFengguang Wu  * read is about to happen and the window is immediately set to the initial size
314122a21d1SFengguang Wu  * based on I/O request size and the max_readahead.
315122a21d1SFengguang Wu  *
316122a21d1SFengguang Wu  * The code ramps up the readahead size aggressively at first, but slow down as
317122a21d1SFengguang Wu  * it approaches max_readhead.
318122a21d1SFengguang Wu  */
319122a21d1SFengguang Wu 
320122a21d1SFengguang Wu /*
32110be0b37SWu Fengguang  * Count contiguously cached pages from @offset-1 to @offset-@max,
32210be0b37SWu Fengguang  * this count is a conservative estimation of
32310be0b37SWu Fengguang  * 	- length of the sequential read sequence, or
32410be0b37SWu Fengguang  * 	- thrashing threshold in memory tight systems
32510be0b37SWu Fengguang  */
32610be0b37SWu Fengguang static pgoff_t count_history_pages(struct address_space *mapping,
32710be0b37SWu Fengguang 				   pgoff_t offset, unsigned long max)
32810be0b37SWu Fengguang {
32910be0b37SWu Fengguang 	pgoff_t head;
33010be0b37SWu Fengguang 
33110be0b37SWu Fengguang 	rcu_read_lock();
332e7b563bbSJohannes Weiner 	head = page_cache_prev_hole(mapping, offset - 1, max);
33310be0b37SWu Fengguang 	rcu_read_unlock();
33410be0b37SWu Fengguang 
33510be0b37SWu Fengguang 	return offset - 1 - head;
33610be0b37SWu Fengguang }
33710be0b37SWu Fengguang 
33810be0b37SWu Fengguang /*
33910be0b37SWu Fengguang  * page cache context based read-ahead
34010be0b37SWu Fengguang  */
34110be0b37SWu Fengguang static int try_context_readahead(struct address_space *mapping,
34210be0b37SWu Fengguang 				 struct file_ra_state *ra,
34310be0b37SWu Fengguang 				 pgoff_t offset,
34410be0b37SWu Fengguang 				 unsigned long req_size,
34510be0b37SWu Fengguang 				 unsigned long max)
34610be0b37SWu Fengguang {
34710be0b37SWu Fengguang 	pgoff_t size;
34810be0b37SWu Fengguang 
3493e2faa08SFabian Frederick 	size = count_history_pages(mapping, offset, max);
35010be0b37SWu Fengguang 
35110be0b37SWu Fengguang 	/*
3522cad4018SFengguang Wu 	 * not enough history pages:
35310be0b37SWu Fengguang 	 * it could be a random read
35410be0b37SWu Fengguang 	 */
3552cad4018SFengguang Wu 	if (size <= req_size)
35610be0b37SWu Fengguang 		return 0;
35710be0b37SWu Fengguang 
35810be0b37SWu Fengguang 	/*
35910be0b37SWu Fengguang 	 * starts from beginning of file:
36010be0b37SWu Fengguang 	 * it is a strong indication of long-run stream (or whole-file-read)
36110be0b37SWu Fengguang 	 */
36210be0b37SWu Fengguang 	if (size >= offset)
36310be0b37SWu Fengguang 		size *= 2;
36410be0b37SWu Fengguang 
36510be0b37SWu Fengguang 	ra->start = offset;
3662cad4018SFengguang Wu 	ra->size = min(size + req_size, max);
3672cad4018SFengguang Wu 	ra->async_size = 1;
36810be0b37SWu Fengguang 
36910be0b37SWu Fengguang 	return 1;
37010be0b37SWu Fengguang }
37110be0b37SWu Fengguang 
37210be0b37SWu Fengguang /*
373122a21d1SFengguang Wu  * A minimal readahead algorithm for trivial sequential/random reads.
374122a21d1SFengguang Wu  */
375122a21d1SFengguang Wu static unsigned long
376122a21d1SFengguang Wu ondemand_readahead(struct address_space *mapping,
377122a21d1SFengguang Wu 		   struct file_ra_state *ra, struct file *filp,
378cf914a7dSRusty Russell 		   bool hit_readahead_marker, pgoff_t offset,
379122a21d1SFengguang Wu 		   unsigned long req_size)
380122a21d1SFengguang Wu {
3819491ae4aSJens Axboe 	struct backing_dev_info *bdi = inode_to_bdi(mapping->host);
3829491ae4aSJens Axboe 	unsigned long max_pages = ra->ra_pages;
383af248a0cSDamien Ramonda 	pgoff_t prev_offset;
384045a2529SWu Fengguang 
385045a2529SWu Fengguang 	/*
3869491ae4aSJens Axboe 	 * If the request exceeds the readahead window, allow the read to
3879491ae4aSJens Axboe 	 * be up to the optimal hardware IO size
3889491ae4aSJens Axboe 	 */
3899491ae4aSJens Axboe 	if (req_size > max_pages && bdi->io_pages > max_pages)
3909491ae4aSJens Axboe 		max_pages = min(req_size, bdi->io_pages);
3919491ae4aSJens Axboe 
3929491ae4aSJens Axboe 	/*
393045a2529SWu Fengguang 	 * start of file
394045a2529SWu Fengguang 	 */
395045a2529SWu Fengguang 	if (!offset)
396045a2529SWu Fengguang 		goto initial_readahead;
397122a21d1SFengguang Wu 
398122a21d1SFengguang Wu 	/*
399f9acc8c7SFengguang Wu 	 * It's the expected callback offset, assume sequential access.
400122a21d1SFengguang Wu 	 * Ramp up sizes, and push forward the readahead window.
401122a21d1SFengguang Wu 	 */
402045a2529SWu Fengguang 	if ((offset == (ra->start + ra->size - ra->async_size) ||
403f9acc8c7SFengguang Wu 	     offset == (ra->start + ra->size))) {
404f9acc8c7SFengguang Wu 		ra->start += ra->size;
4059491ae4aSJens Axboe 		ra->size = get_next_ra_size(ra, max_pages);
406f9acc8c7SFengguang Wu 		ra->async_size = ra->size;
407f9acc8c7SFengguang Wu 		goto readit;
408122a21d1SFengguang Wu 	}
409122a21d1SFengguang Wu 
410122a21d1SFengguang Wu 	/*
4116b10c6c9SFengguang Wu 	 * Hit a marked page without valid readahead state.
4126b10c6c9SFengguang Wu 	 * E.g. interleaved reads.
4136b10c6c9SFengguang Wu 	 * Query the pagecache for async_size, which normally equals to
4146b10c6c9SFengguang Wu 	 * readahead size. Ramp it up and use it as the new readahead size.
4156b10c6c9SFengguang Wu 	 */
4166b10c6c9SFengguang Wu 	if (hit_readahead_marker) {
4176b10c6c9SFengguang Wu 		pgoff_t start;
4186b10c6c9SFengguang Wu 
41930002ed2SNick Piggin 		rcu_read_lock();
4209491ae4aSJens Axboe 		start = page_cache_next_hole(mapping, offset + 1, max_pages);
42130002ed2SNick Piggin 		rcu_read_unlock();
4226b10c6c9SFengguang Wu 
4239491ae4aSJens Axboe 		if (!start || start - offset > max_pages)
4246b10c6c9SFengguang Wu 			return 0;
4256b10c6c9SFengguang Wu 
4266b10c6c9SFengguang Wu 		ra->start = start;
4276b10c6c9SFengguang Wu 		ra->size = start - offset;	/* old async_size */
428160334a0SWu Fengguang 		ra->size += req_size;
4299491ae4aSJens Axboe 		ra->size = get_next_ra_size(ra, max_pages);
4306b10c6c9SFengguang Wu 		ra->async_size = ra->size;
4316b10c6c9SFengguang Wu 		goto readit;
4326b10c6c9SFengguang Wu 	}
4336b10c6c9SFengguang Wu 
4346b10c6c9SFengguang Wu 	/*
435045a2529SWu Fengguang 	 * oversize read
436122a21d1SFengguang Wu 	 */
4379491ae4aSJens Axboe 	if (req_size > max_pages)
438045a2529SWu Fengguang 		goto initial_readahead;
439045a2529SWu Fengguang 
440045a2529SWu Fengguang 	/*
441045a2529SWu Fengguang 	 * sequential cache miss
442af248a0cSDamien Ramonda 	 * trivial case: (offset - prev_offset) == 1
443af248a0cSDamien Ramonda 	 * unaligned reads: (offset - prev_offset) == 0
444045a2529SWu Fengguang 	 */
44509cbfeafSKirill A. Shutemov 	prev_offset = (unsigned long long)ra->prev_pos >> PAGE_SHIFT;
446af248a0cSDamien Ramonda 	if (offset - prev_offset <= 1UL)
447045a2529SWu Fengguang 		goto initial_readahead;
448045a2529SWu Fengguang 
449045a2529SWu Fengguang 	/*
45010be0b37SWu Fengguang 	 * Query the page cache and look for the traces(cached history pages)
45110be0b37SWu Fengguang 	 * that a sequential stream would leave behind.
45210be0b37SWu Fengguang 	 */
4539491ae4aSJens Axboe 	if (try_context_readahead(mapping, ra, offset, req_size, max_pages))
45410be0b37SWu Fengguang 		goto readit;
45510be0b37SWu Fengguang 
45610be0b37SWu Fengguang 	/*
457045a2529SWu Fengguang 	 * standalone, small random read
458045a2529SWu Fengguang 	 * Read as is, and do not pollute the readahead state.
459045a2529SWu Fengguang 	 */
460045a2529SWu Fengguang 	return __do_page_cache_readahead(mapping, filp, offset, req_size, 0);
461045a2529SWu Fengguang 
462045a2529SWu Fengguang initial_readahead:
463f9acc8c7SFengguang Wu 	ra->start = offset;
4649491ae4aSJens Axboe 	ra->size = get_init_ra_size(req_size, max_pages);
465f9acc8c7SFengguang Wu 	ra->async_size = ra->size > req_size ? ra->size - req_size : ra->size;
466122a21d1SFengguang Wu 
467f9acc8c7SFengguang Wu readit:
46851daa88eSWu Fengguang 	/*
46951daa88eSWu Fengguang 	 * Will this read hit the readahead marker made by itself?
47051daa88eSWu Fengguang 	 * If so, trigger the readahead marker hit now, and merge
47151daa88eSWu Fengguang 	 * the resulted next readahead window into the current one.
47251daa88eSWu Fengguang 	 */
47351daa88eSWu Fengguang 	if (offset == ra->start && ra->size == ra->async_size) {
4749491ae4aSJens Axboe 		ra->async_size = get_next_ra_size(ra, max_pages);
47551daa88eSWu Fengguang 		ra->size += ra->async_size;
47651daa88eSWu Fengguang 	}
47751daa88eSWu Fengguang 
478122a21d1SFengguang Wu 	return ra_submit(ra, mapping, filp);
479122a21d1SFengguang Wu }
480122a21d1SFengguang Wu 
481122a21d1SFengguang Wu /**
482cf914a7dSRusty Russell  * page_cache_sync_readahead - generic file readahead
483122a21d1SFengguang Wu  * @mapping: address_space which holds the pagecache and I/O vectors
484122a21d1SFengguang Wu  * @ra: file_ra_state which holds the readahead state
485122a21d1SFengguang Wu  * @filp: passed on to ->readpage() and ->readpages()
486cf914a7dSRusty Russell  * @offset: start offset into @mapping, in pagecache page-sized units
487122a21d1SFengguang Wu  * @req_size: hint: total size of the read which the caller is performing in
488cf914a7dSRusty Russell  *            pagecache pages
489122a21d1SFengguang Wu  *
490cf914a7dSRusty Russell  * page_cache_sync_readahead() should be called when a cache miss happened:
491cf914a7dSRusty Russell  * it will submit the read.  The readahead logic may decide to piggyback more
492cf914a7dSRusty Russell  * pages onto the read request if access patterns suggest it will improve
493cf914a7dSRusty Russell  * performance.
494122a21d1SFengguang Wu  */
495cf914a7dSRusty Russell void page_cache_sync_readahead(struct address_space *mapping,
496cf914a7dSRusty Russell 			       struct file_ra_state *ra, struct file *filp,
497cf914a7dSRusty Russell 			       pgoff_t offset, unsigned long req_size)
498cf914a7dSRusty Russell {
499cf914a7dSRusty Russell 	/* no read-ahead */
500cf914a7dSRusty Russell 	if (!ra->ra_pages)
501cf914a7dSRusty Russell 		return;
502cf914a7dSRusty Russell 
5030141450fSWu Fengguang 	/* be dumb */
50470655c06SWu Fengguang 	if (filp && (filp->f_mode & FMODE_RANDOM)) {
5050141450fSWu Fengguang 		force_page_cache_readahead(mapping, filp, offset, req_size);
5060141450fSWu Fengguang 		return;
5070141450fSWu Fengguang 	}
5080141450fSWu Fengguang 
509cf914a7dSRusty Russell 	/* do read-ahead */
510cf914a7dSRusty Russell 	ondemand_readahead(mapping, ra, filp, false, offset, req_size);
511cf914a7dSRusty Russell }
512cf914a7dSRusty Russell EXPORT_SYMBOL_GPL(page_cache_sync_readahead);
513cf914a7dSRusty Russell 
514cf914a7dSRusty Russell /**
515cf914a7dSRusty Russell  * page_cache_async_readahead - file readahead for marked pages
516cf914a7dSRusty Russell  * @mapping: address_space which holds the pagecache and I/O vectors
517cf914a7dSRusty Russell  * @ra: file_ra_state which holds the readahead state
518cf914a7dSRusty Russell  * @filp: passed on to ->readpage() and ->readpages()
519cf914a7dSRusty Russell  * @page: the page at @offset which has the PG_readahead flag set
520cf914a7dSRusty Russell  * @offset: start offset into @mapping, in pagecache page-sized units
521cf914a7dSRusty Russell  * @req_size: hint: total size of the read which the caller is performing in
522cf914a7dSRusty Russell  *            pagecache pages
523cf914a7dSRusty Russell  *
524bf8abe8bSHuang Shijie  * page_cache_async_readahead() should be called when a page is used which
525f7850d93SRandy Dunlap  * has the PG_readahead flag; this is a marker to suggest that the application
526cf914a7dSRusty Russell  * has used up enough of the readahead window that we should start pulling in
527f7850d93SRandy Dunlap  * more pages.
528f7850d93SRandy Dunlap  */
529cf914a7dSRusty Russell void
530cf914a7dSRusty Russell page_cache_async_readahead(struct address_space *mapping,
531122a21d1SFengguang Wu 			   struct file_ra_state *ra, struct file *filp,
532122a21d1SFengguang Wu 			   struct page *page, pgoff_t offset,
533122a21d1SFengguang Wu 			   unsigned long req_size)
534122a21d1SFengguang Wu {
535122a21d1SFengguang Wu 	/* no read-ahead */
536122a21d1SFengguang Wu 	if (!ra->ra_pages)
537cf914a7dSRusty Russell 		return;
538122a21d1SFengguang Wu 
539fe3cba17SFengguang Wu 	/*
540cf914a7dSRusty Russell 	 * Same bit is used for PG_readahead and PG_reclaim.
541fe3cba17SFengguang Wu 	 */
542fe3cba17SFengguang Wu 	if (PageWriteback(page))
543cf914a7dSRusty Russell 		return;
544fe3cba17SFengguang Wu 
545122a21d1SFengguang Wu 	ClearPageReadahead(page);
546122a21d1SFengguang Wu 
547122a21d1SFengguang Wu 	/*
548122a21d1SFengguang Wu 	 * Defer asynchronous read-ahead on IO congestion.
549122a21d1SFengguang Wu 	 */
550703c2708STejun Heo 	if (inode_read_congested(mapping->host))
551cf914a7dSRusty Russell 		return;
552122a21d1SFengguang Wu 
553122a21d1SFengguang Wu 	/* do read-ahead */
554cf914a7dSRusty Russell 	ondemand_readahead(mapping, ra, filp, true, offset, req_size);
555122a21d1SFengguang Wu }
556cf914a7dSRusty Russell EXPORT_SYMBOL_GPL(page_cache_async_readahead);
557782182e5SCong Wang 
558782182e5SCong Wang static ssize_t
559782182e5SCong Wang do_readahead(struct address_space *mapping, struct file *filp,
560782182e5SCong Wang 	     pgoff_t index, unsigned long nr)
561782182e5SCong Wang {
56263d0f0a3SAndrew Morton 	if (!mapping || !mapping->a_ops)
563782182e5SCong Wang 		return -EINVAL;
564782182e5SCong Wang 
56511bd969fSRoss Zwisler 	/*
56611bd969fSRoss Zwisler 	 * Readahead doesn't make sense for DAX inodes, but we don't want it
56711bd969fSRoss Zwisler 	 * to report a failure either.  Instead, we just return success and
56811bd969fSRoss Zwisler 	 * don't do any work.
56911bd969fSRoss Zwisler 	 */
57011bd969fSRoss Zwisler 	if (dax_mapping(mapping))
57111bd969fSRoss Zwisler 		return 0;
57211bd969fSRoss Zwisler 
57358d5640eSMark Rutland 	return force_page_cache_readahead(mapping, filp, index, nr);
574782182e5SCong Wang }
575782182e5SCong Wang 
576*c7b95d51SDominik Brodowski ssize_t ksys_readahead(int fd, loff_t offset, size_t count)
577782182e5SCong Wang {
578782182e5SCong Wang 	ssize_t ret;
5792903ff01SAl Viro 	struct fd f;
580782182e5SCong Wang 
581782182e5SCong Wang 	ret = -EBADF;
5822903ff01SAl Viro 	f = fdget(fd);
5832903ff01SAl Viro 	if (f.file) {
5842903ff01SAl Viro 		if (f.file->f_mode & FMODE_READ) {
5852903ff01SAl Viro 			struct address_space *mapping = f.file->f_mapping;
58609cbfeafSKirill A. Shutemov 			pgoff_t start = offset >> PAGE_SHIFT;
58709cbfeafSKirill A. Shutemov 			pgoff_t end = (offset + count - 1) >> PAGE_SHIFT;
588782182e5SCong Wang 			unsigned long len = end - start + 1;
5892903ff01SAl Viro 			ret = do_readahead(mapping, f.file, start, len);
590782182e5SCong Wang 		}
5912903ff01SAl Viro 		fdput(f);
592782182e5SCong Wang 	}
593782182e5SCong Wang 	return ret;
594782182e5SCong Wang }
595*c7b95d51SDominik Brodowski 
596*c7b95d51SDominik Brodowski SYSCALL_DEFINE3(readahead, int, fd, loff_t, offset, size_t, count)
597*c7b95d51SDominik Brodowski {
598*c7b95d51SDominik Brodowski 	return ksys_readahead(fd, offset, count);
599*c7b95d51SDominik Brodowski }
600