aboutsummaryrefslogtreecommitdiffstats
path: root/fs/splice.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/splice.c')
-rw-r--r--fs/splice.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/splice.c b/fs/splice.c
index 6ddd0329f866..22496d2a73fa 100644
--- a/fs/splice.c
+++ b/fs/splice.c
@@ -295,8 +295,8 @@ __generic_file_splice_read(struct file *in, loff_t *ppos,
295 * readahead/allocate the rest and fill in the holes. 295 * readahead/allocate the rest and fill in the holes.
296 */ 296 */
297 if (spd.nr_pages < nr_pages) 297 if (spd.nr_pages < nr_pages)
298 page_cache_readahead_ondemand(mapping, &in->f_ra, in, 298 page_cache_sync_readahead(mapping, &in->f_ra, in,
299 NULL, index, req_pages - spd.nr_pages); 299 index, req_pages - spd.nr_pages);
300 300
301 error = 0; 301 error = 0;
302 while (spd.nr_pages < nr_pages) { 302 while (spd.nr_pages < nr_pages) {
@@ -352,7 +352,7 @@ __generic_file_splice_read(struct file *in, loff_t *ppos,
352 page = pages[page_nr]; 352 page = pages[page_nr];
353 353
354 if (PageReadahead(page)) 354 if (PageReadahead(page))
355 page_cache_readahead_ondemand(mapping, &in->f_ra, in, 355 page_cache_async_readahead(mapping, &in->f_ra, in,
356 page, index, req_pages - page_nr); 356 page, index, req_pages - page_nr);
357 357
358 /* 358 /*