EXPORT_SYMBOL(read_cache_pages);
 
 static void read_pages(struct readahead_control *rac, struct list_head *pages,
-               gfp_t gfp)
+               bool skip_page)
 {
        const struct address_space_operations *aops = rac->mapping->a_ops;
+       struct page *page;
        struct blk_plug plug;
-       unsigned page_idx;
 
        if (!readahead_count(rac))
-               return;
+               goto out;
 
        blk_start_plug(&plug);
 
                                readahead_count(rac));
                /* Clean up the remaining pages */
                put_pages_list(pages);
-               goto out;
-       }
-
-       for (page_idx = 0; page_idx < readahead_count(rac); page_idx++) {
-               struct page *page = lru_to_page(pages);
-               list_del(&page->lru);
-               if (!add_to_page_cache_lru(page, rac->mapping, page->index,
-                               gfp))
+               rac->_index += rac->_nr_pages;
+               rac->_nr_pages = 0;
+       } else {
+               while ((page = readahead_page(rac))) {
                        aops->readpage(rac->file, page);
-               put_page(page);
+                       put_page(page);
+               }
        }
 
-out:
        blk_finish_plug(&plug);
 
        BUG_ON(!list_empty(pages));
-       rac->_nr_pages = 0;
+       BUG_ON(readahead_count(rac));
+
+out:
+       if (skip_page)
+               rac->_index++;
 }
 
 /*
        struct readahead_control rac = {
                .mapping = mapping,
                .file = filp,
+               ._index = index,
        };
        unsigned long i;
 
                if (index + i > end_index)
                        break;
 
+               BUG_ON(index + i != rac._index + rac._nr_pages);
+
                page = xa_load(&mapping->i_pages, index + i);
                if (page && !xa_is_value(page)) {
                        /*
                         * contiguous pages before continuing with the next
                         * batch.
                         */
-                       read_pages(&rac, &page_pool, gfp_mask);
+                       read_pages(&rac, &page_pool, true);
                        continue;
                }
 
                page = __page_cache_alloc(gfp_mask);
                if (!page)
                        break;
-               page->index = index + i;
-               list_add(&page->lru, &page_pool);
+               if (mapping->a_ops->readpages) {
+                       page->index = index + i;
+                       list_add(&page->lru, &page_pool);
+               } else if (add_to_page_cache_lru(page, mapping, index + i,
+                                       gfp_mask) < 0) {
+                       put_page(page);
+                       read_pages(&rac, &page_pool, true);
+                       continue;
+               }
                if (i == nr_to_read - lookahead_size)
                        SetPageReadahead(page);
                rac._nr_pages++;
         * uptodate then the caller will launch readpage again, and
         * will then handle the error.
         */
-       read_pages(&rac, &page_pool, gfp_mask);
+       read_pages(&rac, &page_pool, false);
 }
 
 /*