Whamcloud - gitweb
LU-13293 llite: don't abort readahead too aggressively
[fs/lustre-release.git] / lustre / llite / rw.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/llite/rw.c
33  *
34  * Lustre Lite I/O page cache routines shared by different kernel revs
35  */
36
37 #include <linux/kernel.h>
38 #include <linux/mm.h>
39 #include <linux/string.h>
40 #include <linux/stat.h>
41 #include <linux/errno.h>
42 #include <linux/unistd.h>
43 #include <linux/writeback.h>
44 #include <asm/uaccess.h>
45
46 #include <linux/fs.h>
47 #include <linux/file.h>
48 #include <linux/stat.h>
49 #include <asm/uaccess.h>
50 #include <linux/mm.h>
51 #include <linux/pagemap.h>
52 /* current_is_kswapd() */
53 #include <linux/swap.h>
54 #include <linux/task_io_accounting_ops.h>
55
56 #define DEBUG_SUBSYSTEM S_LLITE
57
58 #include <obd_cksum.h>
59 #include "llite_internal.h"
60 #include <lustre_compat.h>
61
62 static void ll_ra_stats_inc_sbi(struct ll_sb_info *sbi, enum ra_stat which);
63
64 /**
65  * Get readahead pages from the filesystem readahead pool of the client for a
66  * thread.
67  *
68  * /param sbi superblock for filesystem readahead state ll_ra_info
69  * /param ria per-thread readahead state
70  * /param pages number of pages requested for readahead for the thread.
71  *
72  * WARNING: This algorithm is used to reduce contention on sbi->ll_lock.
73  * It should work well if the ra_max_pages is much greater than the single
74  * file's read-ahead window, and not too many threads contending for
75  * these readahead pages.
76  *
77  * TODO: There may be a 'global sync problem' if many threads are trying
78  * to get an ra budget that is larger than the remaining readahead pages
79  * and reach here at exactly the same time. They will compute /a ret to
80  * consume the remaining pages, but will fail at atomic_add_return() and
81  * get a zero ra window, although there is still ra space remaining. - Jay */
82
83 static unsigned long ll_ra_count_get(struct ll_sb_info *sbi,
84                                      struct ra_io_arg *ria,
85                                      unsigned long pages,
86                                      unsigned long pages_min)
87 {
88         struct ll_ra_info *ra = &sbi->ll_ra_info;
89         long ret;
90         ENTRY;
91
92         /* If read-ahead pages left are less than 1M, do not do read-ahead,
93          * otherwise it will form small read RPC(< 1M), which hurt server
94          * performance a lot. */
95         ret = min(ra->ra_max_pages - atomic_read(&ra->ra_cur_pages),
96                   pages);
97         if (ret < 0 || ret < min_t(long, PTLRPC_MAX_BRW_PAGES, pages))
98                 GOTO(out, ret = 0);
99
100         if (atomic_add_return(ret, &ra->ra_cur_pages) > ra->ra_max_pages) {
101                 atomic_sub(ret, &ra->ra_cur_pages);
102                 ret = 0;
103         }
104
105 out:
106         if (ret < pages_min) {
107                 /* override ra limit for maximum performance */
108                 atomic_add(pages_min - ret, &ra->ra_cur_pages);
109                 ret = pages_min;
110         }
111         RETURN(ret);
112 }
113
114 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long pages)
115 {
116         struct ll_ra_info *ra = &sbi->ll_ra_info;
117         atomic_sub(pages, &ra->ra_cur_pages);
118 }
119
120 static void ll_ra_stats_inc_sbi(struct ll_sb_info *sbi, enum ra_stat which)
121 {
122         LASSERTF(which < _NR_RA_STAT, "which: %u\n", which);
123         lprocfs_counter_incr(sbi->ll_ra_stats, which);
124 }
125
126 void ll_ra_stats_inc(struct inode *inode, enum ra_stat which)
127 {
128         struct ll_sb_info *sbi = ll_i2sbi(inode);
129         ll_ra_stats_inc_sbi(sbi, which);
130 }
131
132 #define RAS_CDEBUG(ras) \
133         CDEBUG(D_READA,                                                      \
134                "lre %llu cr %lu cb %llu wsi %lu wp %lu nra %lu rpc %lu "     \
135                "r %lu csr %lu so %llu sb %llu sl %llu lr %lu\n",             \
136                ras->ras_last_read_end_bytes, ras->ras_consecutive_requests,  \
137                ras->ras_consecutive_bytes, ras->ras_window_start_idx,        \
138                ras->ras_window_pages, ras->ras_next_readahead_idx,           \
139                ras->ras_rpc_pages, ras->ras_requests,                        \
140                ras->ras_consecutive_stride_requests, ras->ras_stride_offset, \
141                ras->ras_stride_bytes, ras->ras_stride_length,                \
142                ras->ras_async_last_readpage_idx)
143
144 static bool pos_in_window(loff_t pos, loff_t point,
145                           unsigned long before, unsigned long after)
146 {
147         loff_t start = point - before;
148         loff_t end = point + after;
149
150         if (start > point)
151                 start = 0;
152         if (end < point)
153                 end = ~0;
154
155         return start <= pos && pos <= end;
156 }
157
158 /**
159  * Initiates read-ahead of a page with given index.
160  *
161  * \retval +ve: page was already uptodate so it will be skipped
162  *              from being added;
163  * \retval -ve: page wasn't added to \a queue for error;
164  * \retval   0: page was added into \a queue for read ahead.
165  */
166 static int ll_read_ahead_page(const struct lu_env *env, struct cl_io *io,
167                               struct cl_page_list *queue, pgoff_t index)
168 {
169         struct cl_object *clob  = io->ci_obj;
170         struct inode     *inode = vvp_object_inode(clob);
171         struct page      *vmpage;
172         struct cl_page   *page;
173         struct vvp_page  *vpg;
174         enum ra_stat      which = _NR_RA_STAT; /* keep gcc happy */
175         int               rc    = 0;
176         const char       *msg   = NULL;
177         ENTRY;
178
179         vmpage = grab_cache_page_nowait(inode->i_mapping, index);
180         if (vmpage == NULL) {
181                 which = RA_STAT_FAILED_GRAB_PAGE;
182                 msg   = "g_c_p_n failed";
183                 GOTO(out, rc = -EBUSY);
184         }
185
186         /* Check if vmpage was truncated or reclaimed */
187         if (vmpage->mapping != inode->i_mapping) {
188                 which = RA_STAT_WRONG_GRAB_PAGE;
189                 msg   = "g_c_p_n returned invalid page";
190                 GOTO(out, rc = -EBUSY);
191         }
192
193         page = cl_page_find(env, clob, vmpage->index, vmpage, CPT_CACHEABLE);
194         if (IS_ERR(page)) {
195                 which = RA_STAT_FAILED_GRAB_PAGE;
196                 msg   = "cl_page_find failed";
197                 GOTO(out, rc = PTR_ERR(page));
198         }
199
200         lu_ref_add(&page->cp_reference, "ra", current);
201         cl_page_assume(env, io, page);
202         vpg = cl2vvp_page(cl_object_page_slice(clob, page));
203         if (!vpg->vpg_defer_uptodate && !PageUptodate(vmpage)) {
204                 vpg->vpg_defer_uptodate = 1;
205                 vpg->vpg_ra_used = 0;
206                 cl_page_list_add(queue, page);
207         } else {
208                 /* skip completed pages */
209                 cl_page_unassume(env, io, page);
210                 /* This page is already uptodate, returning a positive number
211                  * to tell the callers about this */
212                 rc = 1;
213         }
214
215         lu_ref_del(&page->cp_reference, "ra", current);
216         cl_page_put(env, page);
217
218 out:
219         if (vmpage != NULL) {
220                 if (rc != 0)
221                         unlock_page(vmpage);
222                 put_page(vmpage);
223         }
224         if (msg != NULL) {
225                 ll_ra_stats_inc(inode, which);
226                 CDEBUG(D_READA, "%s\n", msg);
227
228         }
229
230         RETURN(rc);
231 }
232
233 #define RIA_DEBUG(ria)                                                  \
234         CDEBUG(D_READA, "rs %lu re %lu ro %llu rl %llu rb %llu\n",      \
235                ria->ria_start_idx, ria->ria_end_idx, ria->ria_stoff,    \
236                ria->ria_length, ria->ria_bytes)
237
238 static inline int stride_io_mode(struct ll_readahead_state *ras)
239 {
240         return ras->ras_consecutive_stride_requests > 1;
241 }
242
243 /* The function calculates how many bytes will be read in
244  * [off, off + length], in such stride IO area,
245  * stride_offset = st_off, stride_lengh = st_len,
246  * stride_bytes = st_bytes
247  *
248  *   |------------------|*****|------------------|*****|------------|*****|....
249  * st_off
250  *   |--- st_bytes     ---|
251  *   |-----     st_len   -----|
252  *
253  *              How many bytes it should read in such pattern
254  *              |-------------------------------------------------------------|
255  *              off
256  *              |<------                  length                      ------->|
257  *
258  *          =   |<----->|  +  |-------------------------------------| +   |---|
259  *             start_left                 st_bytes * i                 end_left
260  */
261 static loff_t stride_byte_count(loff_t st_off, loff_t st_len, loff_t st_bytes,
262                                 loff_t off, loff_t length)
263 {
264         u64 start = off > st_off ? off - st_off : 0;
265         u64 end = off + length > st_off ? off + length - st_off : 0;
266         u64 start_left;
267         u64 end_left;
268         u64 bytes_count;
269
270         if (st_len == 0 || length == 0 || end == 0)
271                 return length;
272
273         start = div64_u64_rem(start, st_len, &start_left);
274         if (start_left < st_bytes)
275                 start_left = st_bytes - start_left;
276         else
277                 start_left = 0;
278
279         end = div64_u64_rem(end, st_len, &end_left);
280         if (end_left > st_bytes)
281                 end_left = st_bytes;
282
283         CDEBUG(D_READA, "start %llu, end %llu start_left %llu end_left %llu\n",
284                start, end, start_left, end_left);
285
286         if (start == end)
287                 bytes_count = end_left - (st_bytes - start_left);
288         else
289                 bytes_count = start_left +
290                         st_bytes * (end - start - 1) + end_left;
291
292         CDEBUG(D_READA,
293                "st_off %llu, st_len %llu st_bytes %llu off %llu length %llu bytescount %llu\n",
294                st_off, st_len, st_bytes, off, length, bytes_count);
295
296         return bytes_count;
297 }
298
299 static unsigned long ria_page_count(struct ra_io_arg *ria)
300 {
301         loff_t length_bytes = ria->ria_end_idx >= ria->ria_start_idx ?
302                 (loff_t)(ria->ria_end_idx -
303                          ria->ria_start_idx + 1) << PAGE_SHIFT : 0;
304         loff_t bytes_count;
305
306         if (ria->ria_length > ria->ria_bytes && ria->ria_bytes &&
307             (ria->ria_length & ~PAGE_MASK || ria->ria_bytes & ~PAGE_MASK ||
308              ria->ria_stoff & ~PAGE_MASK)) {
309                 /* Over-estimate un-aligned page stride read */
310                 unsigned long pg_count = ((ria->ria_bytes +
311                                            PAGE_SIZE - 1) >> PAGE_SHIFT) + 1;
312                 pg_count *= length_bytes / ria->ria_length + 1;
313
314                 return pg_count;
315         }
316         bytes_count = stride_byte_count(ria->ria_stoff, ria->ria_length,
317                                         ria->ria_bytes,
318                                         (loff_t)ria->ria_start_idx<<PAGE_SHIFT,
319                                         length_bytes);
320         return (bytes_count + PAGE_SIZE - 1) >> PAGE_SHIFT;
321 }
322
323 static pgoff_t ras_align(struct ll_readahead_state *ras, pgoff_t index)
324 {
325         return index - (index % ras->ras_rpc_pages);
326 }
327
328 /* Check whether the index is in the defined ra-window */
329 static bool ras_inside_ra_window(pgoff_t idx, struct ra_io_arg *ria)
330 {
331         loff_t pos = (loff_t)idx << PAGE_SHIFT;
332
333         /* If ria_length == ria_bytes, it means non-stride I/O mode,
334          * idx should always inside read-ahead window in this case
335          * For stride I/O mode, just check whether the idx is inside
336          * the ria_bytes.
337          */
338         if (ria->ria_length == 0 || ria->ria_length == ria->ria_bytes)
339                 return true;
340
341         if (pos >= ria->ria_stoff) {
342                 u64 offset;
343
344                 div64_u64_rem(pos - ria->ria_stoff, ria->ria_length, &offset);
345
346                 if (offset < ria->ria_bytes ||
347                     (ria->ria_length - offset) < PAGE_SIZE)
348                         return true;
349         } else if (pos + PAGE_SIZE > ria->ria_stoff) {
350                 return true;
351         }
352
353         return false;
354 }
355
356 static unsigned long
357 ll_read_ahead_pages(const struct lu_env *env, struct cl_io *io,
358                     struct cl_page_list *queue, struct ll_readahead_state *ras,
359                     struct ra_io_arg *ria, pgoff_t *ra_end)
360 {
361         struct cl_read_ahead ra = { 0 };
362         /* busy page count is per stride */
363         int rc = 0, count = 0, busy_page_count = 0;
364         pgoff_t page_idx;
365
366         LASSERT(ria != NULL);
367         RIA_DEBUG(ria);
368
369         for (page_idx = ria->ria_start_idx;
370              page_idx <= ria->ria_end_idx && ria->ria_reserved > 0;
371              page_idx++) {
372                 if (ras_inside_ra_window(page_idx, ria)) {
373                         if (ra.cra_end_idx == 0 || ra.cra_end_idx < page_idx) {
374                                 pgoff_t end_idx;
375
376                                 /*
377                                  * Do not shrink ria_end_idx at any case until
378                                  * the minimum end of current read is covered.
379                                  *
380                                  * Do not extend read lock accross stripe if
381                                  * lock contention detected.
382                                  */
383                                 if (ra.cra_contention &&
384                                     page_idx > ria->ria_end_idx_min) {
385                                         ria->ria_end_idx = *ra_end;
386                                         break;
387                                 }
388
389                                 cl_read_ahead_release(env, &ra);
390
391                                 rc = cl_io_read_ahead(env, io, page_idx, &ra);
392                                 if (rc < 0)
393                                         break;
394
395                                  /*
396                                   * Only shrink ria_end_idx if the matched
397                                   * LDLM lock doesn't cover more.
398                                   */
399                                 if (page_idx > ra.cra_end_idx) {
400                                         ria->ria_end_idx = ra.cra_end_idx;
401                                         break;
402                                 }
403
404                                 CDEBUG(D_READA, "idx: %lu, ra: %lu, rpc: %lu\n",
405                                        page_idx, ra.cra_end_idx,
406                                        ra.cra_rpc_pages);
407                                 LASSERTF(ra.cra_end_idx >= page_idx,
408                                          "object: %p, indcies %lu / %lu\n",
409                                          io->ci_obj, ra.cra_end_idx, page_idx);
410                                 /* update read ahead RPC size.
411                                  * NB: it's racy but doesn't matter */
412                                 if (ras->ras_rpc_pages != ra.cra_rpc_pages &&
413                                     ra.cra_rpc_pages > 0)
414                                         ras->ras_rpc_pages = ra.cra_rpc_pages;
415                                 /* trim it to align with optimal RPC size */
416                                 end_idx = ras_align(ras, ria->ria_end_idx + 1);
417                                 if (end_idx > 0 && !ria->ria_eof)
418                                         ria->ria_end_idx = end_idx - 1;
419                                 if (ria->ria_end_idx < ria->ria_end_idx_min)
420                                         ria->ria_end_idx = ria->ria_end_idx_min;
421                         }
422                         if (page_idx > ria->ria_end_idx)
423                                 break;
424
425                         /* If the page is inside the read-ahead window */
426                         rc = ll_read_ahead_page(env, io, queue, page_idx);
427                         if (rc < 0 && rc != -EBUSY)
428                                 break;
429                         if (rc == -EBUSY) {
430                                 busy_page_count++;
431                                 CDEBUG(D_READA,
432                                        "skip busy page: %lu\n", page_idx);
433                                 /* For page unaligned readahead the first
434                                  * last pages of each region can be read by
435                                  * another reader on the same node, and so
436                                  * may be busy. So only stop for > 2 busy
437                                  * pages. */
438                                 if (busy_page_count > 2)
439                                         break;
440                         }
441
442                         *ra_end = page_idx;
443                         /* Only subtract from reserve & count the page if we
444                          * really did readahead on that page. */
445                         if (rc == 0) {
446                                 ria->ria_reserved--;
447                                 count++;
448                         }
449                 } else if (stride_io_mode(ras)) {
450                         /* If it is not in the read-ahead window, and it is
451                          * read-ahead mode, then check whether it should skip
452                          * the stride gap.
453                          */
454                         loff_t pos = (loff_t)page_idx << PAGE_SHIFT;
455                         u64 offset;
456
457                         div64_u64_rem(pos - ria->ria_stoff, ria->ria_length,
458                                       &offset);
459                         if (offset >= ria->ria_bytes) {
460                                 pos += (ria->ria_length - offset);
461                                 if ((pos >> PAGE_SHIFT) >= page_idx + 1)
462                                         page_idx = (pos >> PAGE_SHIFT) - 1;
463                                 busy_page_count = 0;
464                                 CDEBUG(D_READA,
465                                        "Stride: jump %llu pages to %lu\n",
466                                        ria->ria_length - offset, page_idx);
467                                 continue;
468                         }
469                 }
470         }
471
472         cl_read_ahead_release(env, &ra);
473
474         return count;
475 }
476
477 static void ll_readahead_work_free(struct ll_readahead_work *work)
478 {
479         fput(work->lrw_file);
480         OBD_FREE_PTR(work);
481 }
482
483 static void ll_readahead_handle_work(struct work_struct *wq);
484 static void ll_readahead_work_add(struct inode *inode,
485                                   struct ll_readahead_work *work)
486 {
487         INIT_WORK(&work->lrw_readahead_work, ll_readahead_handle_work);
488         queue_work(ll_i2sbi(inode)->ll_ra_info.ll_readahead_wq,
489                    &work->lrw_readahead_work);
490 }
491
492 static int ll_readahead_file_kms(const struct lu_env *env,
493                                 struct cl_io *io, __u64 *kms)
494 {
495         struct cl_object *clob;
496         struct inode *inode;
497         struct cl_attr *attr = vvp_env_thread_attr(env);
498         int ret;
499
500         clob = io->ci_obj;
501         inode = vvp_object_inode(clob);
502
503         cl_object_attr_lock(clob);
504         ret = cl_object_attr_get(env, clob, attr);
505         cl_object_attr_unlock(clob);
506
507         if (ret != 0)
508                 RETURN(ret);
509
510         *kms = attr->cat_kms;
511         return 0;
512 }
513
514 static void ll_readahead_handle_work(struct work_struct *wq)
515 {
516         struct ll_readahead_work *work;
517         struct lu_env *env;
518         __u16 refcheck;
519         struct ra_io_arg *ria;
520         struct inode *inode;
521         struct ll_file_data *fd;
522         struct ll_readahead_state *ras;
523         struct cl_io *io;
524         struct cl_2queue *queue;
525         pgoff_t ra_end_idx = 0;
526         unsigned long pages, pages_min = 0;
527         struct file *file;
528         __u64 kms;
529         int rc;
530         pgoff_t eof_index;
531
532         work = container_of(wq, struct ll_readahead_work,
533                             lrw_readahead_work);
534         fd = work->lrw_file->private_data;
535         ras = &fd->fd_ras;
536         file = work->lrw_file;
537         inode = file_inode(file);
538
539         env = cl_env_alloc(&refcheck, LCT_NOREF);
540         if (IS_ERR(env))
541                 GOTO(out_free_work, rc = PTR_ERR(env));
542
543         io = vvp_env_thread_io(env);
544         ll_io_init(io, file, CIT_READ, NULL);
545
546         rc = ll_readahead_file_kms(env, io, &kms);
547         if (rc != 0)
548                 GOTO(out_put_env, rc);
549
550         if (kms == 0) {
551                 ll_ra_stats_inc(inode, RA_STAT_ZERO_LEN);
552                 GOTO(out_put_env, rc = 0);
553         }
554
555         ria = &ll_env_info(env)->lti_ria;
556         memset(ria, 0, sizeof(*ria));
557
558         ria->ria_start_idx = work->lrw_start_idx;
559         /* Truncate RA window to end of file */
560         eof_index = (pgoff_t)(kms - 1) >> PAGE_SHIFT;
561         if (eof_index <= work->lrw_end_idx) {
562                 work->lrw_end_idx = eof_index;
563                 ria->ria_eof = true;
564         }
565         if (work->lrw_end_idx <= work->lrw_start_idx)
566                 GOTO(out_put_env, rc = 0);
567
568         ria->ria_end_idx = work->lrw_end_idx;
569         pages = ria->ria_end_idx - ria->ria_start_idx + 1;
570         ria->ria_reserved = ll_ra_count_get(ll_i2sbi(inode), ria,
571                                             ria_page_count(ria), pages_min);
572
573         CDEBUG(D_READA,
574                "async reserved pages: %lu/%lu/%lu, ra_cur %d, ra_max %lu\n",
575                ria->ria_reserved, pages, pages_min,
576                atomic_read(&ll_i2sbi(inode)->ll_ra_info.ra_cur_pages),
577                ll_i2sbi(inode)->ll_ra_info.ra_max_pages);
578
579         if (ria->ria_reserved < pages) {
580                 ll_ra_stats_inc(inode, RA_STAT_MAX_IN_FLIGHT);
581                 if (PAGES_TO_MiB(ria->ria_reserved) < 1) {
582                         ll_ra_count_put(ll_i2sbi(inode), ria->ria_reserved);
583                         GOTO(out_put_env, rc = 0);
584                 }
585         }
586
587         rc = cl_io_rw_init(env, io, CIT_READ, ria->ria_start_idx, pages);
588         if (rc)
589                 GOTO(out_put_env, rc);
590
591         vvp_env_io(env)->vui_io_subtype = IO_NORMAL;
592         vvp_env_io(env)->vui_fd = fd;
593         io->ci_state = CIS_LOCKED;
594         io->ci_async_readahead = true;
595         rc = cl_io_start(env, io);
596         if (rc)
597                 GOTO(out_io_fini, rc);
598
599         queue = &io->ci_queue;
600         cl_2queue_init(queue);
601
602         rc = ll_read_ahead_pages(env, io, &queue->c2_qin, ras, ria,
603                                  &ra_end_idx);
604         if (ria->ria_reserved != 0)
605                 ll_ra_count_put(ll_i2sbi(inode), ria->ria_reserved);
606         if (queue->c2_qin.pl_nr > 0) {
607                 int count = queue->c2_qin.pl_nr;
608
609                 rc = cl_io_submit_rw(env, io, CRT_READ, queue);
610                 if (rc == 0)
611                         task_io_account_read(PAGE_SIZE * count);
612         }
613         if (ria->ria_end_idx == ra_end_idx && ra_end_idx == (kms >> PAGE_SHIFT))
614                 ll_ra_stats_inc(inode, RA_STAT_EOF);
615
616         if (ra_end_idx != ria->ria_end_idx)
617                 ll_ra_stats_inc(inode, RA_STAT_FAILED_REACH_END);
618
619         /* TODO: discard all pages until page reinit route is implemented */
620         cl_page_list_discard(env, io, &queue->c2_qin);
621
622         /* Unlock unsent read pages in case of error. */
623         cl_page_list_disown(env, io, &queue->c2_qin);
624
625         cl_2queue_fini(env, queue);
626 out_io_fini:
627         cl_io_end(env, io);
628         cl_io_fini(env, io);
629 out_put_env:
630         cl_env_put(env, &refcheck);
631 out_free_work:
632         if (ra_end_idx > 0)
633                 ll_ra_stats_inc_sbi(ll_i2sbi(inode), RA_STAT_ASYNC);
634         ll_readahead_work_free(work);
635 }
636
637 static int ll_readahead(const struct lu_env *env, struct cl_io *io,
638                         struct cl_page_list *queue,
639                         struct ll_readahead_state *ras, bool hit,
640                         struct file *file)
641 {
642         struct vvp_io *vio = vvp_env_io(env);
643         struct ll_thread_info *lti = ll_env_info(env);
644         unsigned long pages, pages_min = 0;
645         pgoff_t ra_end_idx = 0, start_idx = 0, end_idx = 0;
646         struct inode *inode;
647         struct ra_io_arg *ria = &lti->lti_ria;
648         struct cl_object *clob;
649         int ret = 0;
650         __u64 kms;
651         ENTRY;
652
653         clob = io->ci_obj;
654         inode = vvp_object_inode(clob);
655
656         memset(ria, 0, sizeof(*ria));
657         ret = ll_readahead_file_kms(env, io, &kms);
658         if (ret != 0)
659                 RETURN(ret);
660
661         if (kms == 0) {
662                 ll_ra_stats_inc(inode, RA_STAT_ZERO_LEN);
663                 RETURN(0);
664         }
665
666         spin_lock(&ras->ras_lock);
667
668         /**
669          * Note: other thread might rollback the ras_next_readahead_idx,
670          * if it can not get the full size of prepared pages, see the
671          * end of this function. For stride read ahead, it needs to
672          * make sure the offset is no less than ras_stride_offset,
673          * so that stride read ahead can work correctly.
674          */
675         if (stride_io_mode(ras))
676                 start_idx = max_t(pgoff_t, ras->ras_next_readahead_idx,
677                                   ras->ras_stride_offset >> PAGE_SHIFT);
678         else
679                 start_idx = ras->ras_next_readahead_idx;
680
681         if (ras->ras_window_pages > 0)
682                 end_idx = ras->ras_window_start_idx + ras->ras_window_pages - 1;
683
684         /* Enlarge the RA window to encompass the full read */
685         if (vio->vui_ra_valid &&
686             end_idx < vio->vui_ra_start_idx + vio->vui_ra_pages - 1)
687                 end_idx = vio->vui_ra_start_idx + vio->vui_ra_pages - 1;
688
689         if (end_idx != 0) {
690                 pgoff_t eof_index;
691
692                 /* Truncate RA window to end of file */
693                 eof_index = (pgoff_t)((kms - 1) >> PAGE_SHIFT);
694                 if (eof_index <= end_idx) {
695                         end_idx = eof_index;
696                         ria->ria_eof = true;
697                 }
698         }
699         ria->ria_start_idx = start_idx;
700         ria->ria_end_idx = end_idx;
701         /* If stride I/O mode is detected, get stride window*/
702         if (stride_io_mode(ras)) {
703                 ria->ria_stoff = ras->ras_stride_offset;
704                 ria->ria_length = ras->ras_stride_length;
705                 ria->ria_bytes = ras->ras_stride_bytes;
706         }
707         spin_unlock(&ras->ras_lock);
708
709         if (end_idx == 0) {
710                 ll_ra_stats_inc(inode, RA_STAT_ZERO_WINDOW);
711                 RETURN(0);
712         }
713         pages = ria_page_count(ria);
714         if (pages == 0) {
715                 ll_ra_stats_inc(inode, RA_STAT_ZERO_WINDOW);
716                 RETURN(0);
717         }
718
719         RAS_CDEBUG(ras);
720         CDEBUG(D_READA, DFID": ria: %lu/%lu, bead: %lu/%lu, hit: %d\n",
721                PFID(lu_object_fid(&clob->co_lu)),
722                ria->ria_start_idx, ria->ria_end_idx,
723                vio->vui_ra_valid ? vio->vui_ra_start_idx : 0,
724                vio->vui_ra_valid ? vio->vui_ra_pages : 0,
725                hit);
726
727         /* at least to extend the readahead window to cover current read */
728         if (!hit && vio->vui_ra_valid &&
729             vio->vui_ra_start_idx + vio->vui_ra_pages > ria->ria_start_idx)
730                 ria->ria_end_idx_min =
731                         vio->vui_ra_start_idx + vio->vui_ra_pages - 1;
732
733         ria->ria_reserved = ll_ra_count_get(ll_i2sbi(inode), ria, pages,
734                                             pages_min);
735         if (ria->ria_reserved < pages)
736                 ll_ra_stats_inc(inode, RA_STAT_MAX_IN_FLIGHT);
737
738         CDEBUG(D_READA, "reserved pages: %lu/%lu/%lu, ra_cur %d, ra_max %lu\n",
739                ria->ria_reserved, pages, pages_min,
740                atomic_read(&ll_i2sbi(inode)->ll_ra_info.ra_cur_pages),
741                ll_i2sbi(inode)->ll_ra_info.ra_max_pages);
742
743         ret = ll_read_ahead_pages(env, io, queue, ras, ria, &ra_end_idx);
744
745         if (ria->ria_reserved != 0)
746                 ll_ra_count_put(ll_i2sbi(inode), ria->ria_reserved);
747
748         if (ra_end_idx == end_idx && ra_end_idx == (kms >> PAGE_SHIFT))
749                 ll_ra_stats_inc(inode, RA_STAT_EOF);
750
751         CDEBUG(D_READA,
752                "ra_end_idx = %lu end_idx = %lu stride end = %lu pages = %d\n",
753                ra_end_idx, end_idx, ria->ria_end_idx, ret);
754
755         if (ra_end_idx != end_idx)
756                 ll_ra_stats_inc(inode, RA_STAT_FAILED_REACH_END);
757         if (ra_end_idx > 0) {
758                 /* update the ras so that the next read-ahead tries from
759                  * where we left off. */
760                 spin_lock(&ras->ras_lock);
761                 ras->ras_next_readahead_idx = ra_end_idx + 1;
762                 spin_unlock(&ras->ras_lock);
763                 RAS_CDEBUG(ras);
764         }
765
766         RETURN(ret);
767 }
768
769 static void ras_set_start(struct ll_readahead_state *ras, pgoff_t index)
770 {
771         ras->ras_window_start_idx = ras_align(ras, index);
772 }
773
774 /* called with the ras_lock held or from places where it doesn't matter */
775 static void ras_reset(struct ll_readahead_state *ras, pgoff_t index)
776 {
777         ras->ras_consecutive_requests = 0;
778         ras->ras_consecutive_bytes = 0;
779         ras->ras_window_pages = 0;
780         ras_set_start(ras, index);
781         ras->ras_next_readahead_idx = max(ras->ras_window_start_idx, index + 1);
782
783         RAS_CDEBUG(ras);
784 }
785
786 /* called with the ras_lock held or from places where it doesn't matter */
787 static void ras_stride_reset(struct ll_readahead_state *ras)
788 {
789         ras->ras_consecutive_stride_requests = 0;
790         ras->ras_stride_length = 0;
791         ras->ras_stride_bytes = 0;
792         RAS_CDEBUG(ras);
793 }
794
795 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras)
796 {
797         spin_lock_init(&ras->ras_lock);
798         ras->ras_rpc_pages = PTLRPC_MAX_BRW_PAGES;
799         ras_reset(ras, 0);
800         ras->ras_last_read_end_bytes = 0;
801         ras->ras_requests = 0;
802 }
803
804 /*
805  * Check whether the read request is in the stride window.
806  * If it is in the stride window, return true, otherwise return false.
807  */
808 static bool read_in_stride_window(struct ll_readahead_state *ras,
809                                   loff_t pos, loff_t count)
810 {
811         loff_t stride_gap;
812
813         if (ras->ras_stride_length == 0 || ras->ras_stride_bytes == 0 ||
814             ras->ras_stride_bytes == ras->ras_stride_length)
815                 return false;
816
817         stride_gap = pos - ras->ras_last_read_end_bytes - 1;
818
819         /* If it is contiguous read */
820         if (stride_gap == 0)
821                 return ras->ras_consecutive_bytes + count <=
822                         ras->ras_stride_bytes;
823
824         /* Otherwise check the stride by itself */
825         return (ras->ras_stride_length - ras->ras_stride_bytes) == stride_gap &&
826                 ras->ras_consecutive_bytes == ras->ras_stride_bytes &&
827                 count <= ras->ras_stride_bytes;
828 }
829
830 static void ras_init_stride_detector(struct ll_readahead_state *ras,
831                                      loff_t pos, loff_t count)
832 {
833         loff_t stride_gap = pos - ras->ras_last_read_end_bytes - 1;
834
835         LASSERT(ras->ras_consecutive_stride_requests == 0);
836
837         if (pos <= ras->ras_last_read_end_bytes) {
838                 /*Reset stride window for forward read*/
839                 ras_stride_reset(ras);
840                 return;
841         }
842
843         ras->ras_stride_bytes = ras->ras_consecutive_bytes;
844         ras->ras_stride_length = stride_gap + ras->ras_consecutive_bytes;
845         ras->ras_consecutive_stride_requests++;
846         ras->ras_stride_offset = pos;
847
848         RAS_CDEBUG(ras);
849 }
850
851 static unsigned long
852 stride_page_count(struct ll_readahead_state *ras, loff_t len)
853 {
854         loff_t bytes_count =
855                 stride_byte_count(ras->ras_stride_offset,
856                                   ras->ras_stride_length, ras->ras_stride_bytes,
857                                   ras->ras_window_start_idx << PAGE_SHIFT, len);
858
859         return (bytes_count + PAGE_SIZE - 1) >> PAGE_SHIFT;
860 }
861
862 /* Stride Read-ahead window will be increased inc_len according to
863  * stride I/O pattern */
864 static void ras_stride_increase_window(struct ll_readahead_state *ras,
865                                        struct ll_ra_info *ra, loff_t inc_bytes)
866 {
867         loff_t window_bytes, stride_bytes;
868         u64 left_bytes;
869         u64 step;
870         loff_t end;
871
872         /* temporarily store in page units to reduce LASSERT() cost below */
873         end = ras->ras_window_start_idx + ras->ras_window_pages;
874
875         LASSERT(ras->ras_stride_length > 0);
876         LASSERTF(end >= (ras->ras_stride_offset >> PAGE_SHIFT),
877                  "window_start_idx %lu, window_pages %lu stride_offset %llu\n",
878                  ras->ras_window_start_idx, ras->ras_window_pages,
879                  ras->ras_stride_offset);
880
881         end <<= PAGE_SHIFT;
882         if (end <= ras->ras_stride_offset)
883                 stride_bytes = 0;
884         else
885                 stride_bytes = end - ras->ras_stride_offset;
886
887         div64_u64_rem(stride_bytes, ras->ras_stride_length, &left_bytes);
888         window_bytes = (ras->ras_window_pages << PAGE_SHIFT);
889         if (left_bytes < ras->ras_stride_bytes) {
890                 if (ras->ras_stride_bytes - left_bytes >= inc_bytes) {
891                         window_bytes += inc_bytes;
892                         goto out;
893                 } else {
894                         window_bytes += (ras->ras_stride_bytes - left_bytes);
895                         inc_bytes -= (ras->ras_stride_bytes - left_bytes);
896                 }
897         } else {
898                 window_bytes += (ras->ras_stride_length - left_bytes);
899         }
900
901         LASSERT(ras->ras_stride_bytes != 0);
902
903         step = div64_u64_rem(inc_bytes, ras->ras_stride_bytes, &left_bytes);
904
905         window_bytes += step * ras->ras_stride_length + left_bytes;
906         LASSERT(window_bytes > 0);
907
908 out:
909         if (stride_page_count(ras, window_bytes) <=
910             ra->ra_max_pages_per_file || ras->ras_window_pages == 0)
911                 ras->ras_window_pages = (window_bytes >> PAGE_SHIFT);
912
913         LASSERT(ras->ras_window_pages > 0);
914
915         RAS_CDEBUG(ras);
916 }
917
918 static void ras_increase_window(struct inode *inode,
919                                 struct ll_readahead_state *ras,
920                                 struct ll_ra_info *ra)
921 {
922         /* The stretch of ra-window should be aligned with max rpc_size
923          * but current clio architecture does not support retrieve such
924          * information from lower layer. FIXME later
925          */
926         if (stride_io_mode(ras)) {
927                 ras_stride_increase_window(ras, ra,
928                                       (loff_t)ras->ras_rpc_pages << PAGE_SHIFT);
929         } else {
930                 pgoff_t window_pages;
931
932                 window_pages = min(ras->ras_window_pages + ras->ras_rpc_pages,
933                                    ra->ra_max_pages_per_file);
934                 if (window_pages < ras->ras_rpc_pages)
935                         ras->ras_window_pages = window_pages;
936                 else
937                         ras->ras_window_pages = ras_align(ras, window_pages);
938         }
939 }
940
941 /**
942  * Seek within 8 pages are considered as sequential read for now.
943  */
944 static inline bool is_loose_seq_read(struct ll_readahead_state *ras, loff_t pos)
945 {
946         return pos_in_window(pos, ras->ras_last_read_end_bytes,
947                              8UL << PAGE_SHIFT, 8UL << PAGE_SHIFT);
948 }
949
950 static void ras_detect_read_pattern(struct ll_readahead_state *ras,
951                                     struct ll_sb_info *sbi,
952                                     loff_t pos, size_t count, bool mmap)
953 {
954         bool stride_detect = false;
955         pgoff_t index = pos >> PAGE_SHIFT;
956
957         /*
958          * Reset the read-ahead window in two cases. First when the app seeks
959          * or reads to some other part of the file. Secondly if we get a
960          * read-ahead miss that we think we've previously issued. This can
961          * be a symptom of there being so many read-ahead pages that the VM
962          * is reclaiming it before we get to it.
963          */
964         if (!is_loose_seq_read(ras, pos)) {
965                 /* Check whether it is in stride I/O mode */
966                 if (!read_in_stride_window(ras, pos, count)) {
967                         if (ras->ras_consecutive_stride_requests == 0)
968                                 ras_init_stride_detector(ras, pos, count);
969                         else
970                                 ras_stride_reset(ras);
971                         ras->ras_consecutive_bytes = 0;
972                         ras_reset(ras, index);
973                 } else {
974                         ras->ras_consecutive_bytes = 0;
975                         ras->ras_consecutive_requests = 0;
976                         if (++ras->ras_consecutive_stride_requests > 1)
977                                 stride_detect = true;
978                         RAS_CDEBUG(ras);
979                 }
980                 ll_ra_stats_inc_sbi(sbi, RA_STAT_DISTANT_READPAGE);
981         } else if (stride_io_mode(ras)) {
982                 /*
983                  * If this is contiguous read but in stride I/O mode
984                  * currently, check whether stride step still is valid,
985                  * if invalid, it will reset the stride ra window to
986                  * be zero.
987                  */
988                 if (!read_in_stride_window(ras, pos, count)) {
989                         ras_stride_reset(ras);
990                         ras->ras_window_pages = 0;
991                         ras->ras_next_readahead_idx = index;
992                 }
993         }
994
995         ras->ras_consecutive_bytes += count;
996         if (mmap) {
997                 pgoff_t idx = ras->ras_consecutive_bytes >> PAGE_SHIFT;
998
999                 if ((idx >= 4 && (idx & 3UL) == 0) || stride_detect)
1000                         ras->ras_need_increase_window = true;
1001         } else if ((ras->ras_consecutive_requests > 1 || stride_detect)) {
1002                 ras->ras_need_increase_window = true;
1003         }
1004
1005         ras->ras_last_read_end_bytes = pos + count - 1;
1006 }
1007
1008 void ll_ras_enter(struct file *f, loff_t pos, size_t count)
1009 {
1010         struct ll_file_data *fd = f->private_data;
1011         struct ll_readahead_state *ras = &fd->fd_ras;
1012         struct inode *inode = file_inode(f);
1013         unsigned long index = pos >> PAGE_SHIFT;
1014         struct ll_sb_info *sbi = ll_i2sbi(inode);
1015
1016         spin_lock(&ras->ras_lock);
1017         ras->ras_requests++;
1018         ras->ras_consecutive_requests++;
1019         ras->ras_need_increase_window = false;
1020         ras->ras_no_miss_check = false;
1021         /*
1022          * On the second access to a file smaller than the tunable
1023          * ra_max_read_ahead_whole_pages trigger RA on all pages in the
1024          * file up to ra_max_pages_per_file.  This is simply a best effort
1025          * and only occurs once per open file. Normal RA behavior is reverted
1026          * to for subsequent IO.
1027          */
1028         if (ras->ras_requests >= 2) {
1029                 __u64 kms_pages;
1030                 struct ll_ra_info *ra = &sbi->ll_ra_info;
1031
1032                 kms_pages = (i_size_read(inode) + PAGE_SIZE - 1) >>
1033                             PAGE_SHIFT;
1034
1035                 CDEBUG(D_READA, "kmsp %llu mwp %lu mp %lu\n", kms_pages,
1036                        ra->ra_max_read_ahead_whole_pages,
1037                        ra->ra_max_pages_per_file);
1038
1039                 if (kms_pages &&
1040                     kms_pages <= ra->ra_max_read_ahead_whole_pages) {
1041                         ras->ras_window_start_idx = 0;
1042                         ras->ras_next_readahead_idx = index + 1;
1043                         ras->ras_window_pages = min(ra->ra_max_pages_per_file,
1044                                             ra->ra_max_read_ahead_whole_pages);
1045                         ras->ras_no_miss_check = true;
1046                         GOTO(out_unlock, 0);
1047                 }
1048         }
1049         ras_detect_read_pattern(ras, sbi, pos, count, false);
1050 out_unlock:
1051         spin_unlock(&ras->ras_lock);
1052 }
1053
1054 static bool index_in_stride_window(struct ll_readahead_state *ras,
1055                                    pgoff_t index)
1056 {
1057         loff_t pos = (loff_t)index << PAGE_SHIFT;
1058
1059         if (ras->ras_stride_length == 0 || ras->ras_stride_bytes == 0 ||
1060             ras->ras_stride_bytes == ras->ras_stride_length)
1061                 return false;
1062
1063         if (pos >= ras->ras_stride_offset) {
1064                 u64 offset;
1065
1066                 div64_u64_rem(pos - ras->ras_stride_offset,
1067                               ras->ras_stride_length, &offset);
1068                 if (offset < ras->ras_stride_bytes ||
1069                     ras->ras_stride_length - offset < PAGE_SIZE)
1070                         return true;
1071         } else if (ras->ras_stride_offset - pos < PAGE_SIZE) {
1072                 return true;
1073         }
1074
1075         return false;
1076 }
1077
1078 /*
1079  * ll_ras_enter() is used to detect read pattern according to pos and count.
1080  *
1081  * ras_update() is used to detect cache miss and
1082  * reset window or increase window accordingly
1083  */
1084 static void ras_update(struct ll_sb_info *sbi, struct inode *inode,
1085                        struct ll_readahead_state *ras, pgoff_t index,
1086                        enum ras_update_flags flags)
1087 {
1088         struct ll_ra_info *ra = &sbi->ll_ra_info;
1089         bool hit = flags & LL_RAS_HIT;
1090
1091         ENTRY;
1092         spin_lock(&ras->ras_lock);
1093
1094         if (!hit)
1095                 CDEBUG(D_READA, DFID " pages at %lu miss.\n",
1096                        PFID(ll_inode2fid(inode)), index);
1097         ll_ra_stats_inc_sbi(sbi, hit ? RA_STAT_HIT : RA_STAT_MISS);
1098
1099         /*
1100          * The readahead window has been expanded to cover whole
1101          * file size, we don't care whether ra miss happen or not.
1102          * Because we will read whole file to page cache even if
1103          * some pages missed.
1104          */
1105         if (ras->ras_no_miss_check)
1106                 GOTO(out_unlock, 0);
1107
1108         if (flags & LL_RAS_MMAP)
1109                 ras_detect_read_pattern(ras, sbi, (loff_t)index << PAGE_SHIFT,
1110                                         PAGE_SIZE, true);
1111
1112         if (!hit && ras->ras_window_pages &&
1113             index < ras->ras_next_readahead_idx &&
1114             pos_in_window(index, ras->ras_window_start_idx, 0,
1115                           ras->ras_window_pages)) {
1116                 ll_ra_stats_inc_sbi(sbi, RA_STAT_MISS_IN_WINDOW);
1117                 ras->ras_need_increase_window = false;
1118
1119                 if (index_in_stride_window(ras, index) &&
1120                     stride_io_mode(ras)) {
1121                         /*
1122                          * if (index != ras->ras_last_readpage + 1)
1123                          *      ras->ras_consecutive_pages = 0;
1124                          */
1125                         ras_reset(ras, index);
1126
1127                         /*
1128                          * If stride-RA hit cache miss, the stride
1129                          * detector will not be reset to avoid the
1130                          * overhead of redetecting read-ahead mode,
1131                          * but on the condition that the stride window
1132                          * is still intersect with normal sequential
1133                          * read-ahead window.
1134                          */
1135                         if (ras->ras_window_start_idx < ras->ras_stride_offset)
1136                                 ras_stride_reset(ras);
1137                         RAS_CDEBUG(ras);
1138                 } else {
1139                         /*
1140                          * Reset both stride window and normal RA
1141                          * window.
1142                          */
1143                         ras_reset(ras, index);
1144                         /* ras->ras_consecutive_pages++; */
1145                         ras->ras_consecutive_bytes = 0;
1146                         ras_stride_reset(ras);
1147                         GOTO(out_unlock, 0);
1148                 }
1149         }
1150         ras_set_start(ras, index);
1151
1152         if (stride_io_mode(ras)) {
1153                 /* Since stride readahead is sentivite to the offset
1154                  * of read-ahead, so we use original offset here,
1155                  * instead of ras_window_start_idx, which is RPC aligned.
1156                  */
1157                 ras->ras_next_readahead_idx = max(index + 1,
1158                                                   ras->ras_next_readahead_idx);
1159                 ras->ras_window_start_idx =
1160                                 max_t(pgoff_t, ras->ras_window_start_idx,
1161                                       ras->ras_stride_offset >> PAGE_SHIFT);
1162         } else {
1163                 if (ras->ras_next_readahead_idx < ras->ras_window_start_idx)
1164                         ras->ras_next_readahead_idx = ras->ras_window_start_idx;
1165                 if (!hit)
1166                         ras->ras_next_readahead_idx = index + 1;
1167         }
1168
1169         if (ras->ras_need_increase_window) {
1170                 ras_increase_window(inode, ras, ra);
1171                 ras->ras_need_increase_window = false;
1172         }
1173
1174         EXIT;
1175 out_unlock:
1176         spin_unlock(&ras->ras_lock);
1177 }
1178
1179 int ll_writepage(struct page *vmpage, struct writeback_control *wbc)
1180 {
1181         struct inode           *inode = vmpage->mapping->host;
1182         struct ll_inode_info   *lli   = ll_i2info(inode);
1183         struct lu_env          *env;
1184         struct cl_io           *io;
1185         struct cl_page         *page;
1186         struct cl_object       *clob;
1187         bool redirtied = false;
1188         bool unlocked = false;
1189         int result;
1190         __u16 refcheck;
1191         ENTRY;
1192
1193         LASSERT(PageLocked(vmpage));
1194         LASSERT(!PageWriteback(vmpage));
1195
1196         LASSERT(ll_i2dtexp(inode) != NULL);
1197
1198         env = cl_env_get(&refcheck);
1199         if (IS_ERR(env))
1200                 GOTO(out, result = PTR_ERR(env));
1201
1202         clob  = ll_i2info(inode)->lli_clob;
1203         LASSERT(clob != NULL);
1204
1205         io = vvp_env_thread_io(env);
1206         io->ci_obj = clob;
1207         io->ci_ignore_layout = 1;
1208         result = cl_io_init(env, io, CIT_MISC, clob);
1209         if (result == 0) {
1210                 page = cl_page_find(env, clob, vmpage->index,
1211                                     vmpage, CPT_CACHEABLE);
1212                 if (!IS_ERR(page)) {
1213                         lu_ref_add(&page->cp_reference, "writepage",
1214                                    current);
1215                         cl_page_assume(env, io, page);
1216                         result = cl_page_flush(env, io, page);
1217                         if (result != 0) {
1218                                 /*
1219                                  * Re-dirty page on error so it retries write,
1220                                  * but not in case when IO has actually
1221                                  * occurred and completed with an error.
1222                                  */
1223                                 if (!PageError(vmpage)) {
1224                                         redirty_page_for_writepage(wbc, vmpage);
1225                                         result = 0;
1226                                         redirtied = true;
1227                                 }
1228                         }
1229                         cl_page_disown(env, io, page);
1230                         unlocked = true;
1231                         lu_ref_del(&page->cp_reference,
1232                                    "writepage", current);
1233                         cl_page_put(env, page);
1234                 } else {
1235                         result = PTR_ERR(page);
1236                 }
1237         }
1238         cl_io_fini(env, io);
1239
1240         if (redirtied && wbc->sync_mode == WB_SYNC_ALL) {
1241                 loff_t offset = cl_offset(clob, vmpage->index);
1242
1243                 /* Flush page failed because the extent is being written out.
1244                  * Wait for the write of extent to be finished to avoid
1245                  * breaking kernel which assumes ->writepage should mark
1246                  * PageWriteback or clean the page. */
1247                 result = cl_sync_file_range(inode, offset,
1248                                             offset + PAGE_SIZE - 1,
1249                                             CL_FSYNC_LOCAL, 1);
1250                 if (result > 0) {
1251                         /* actually we may have written more than one page.
1252                          * decreasing this page because the caller will count
1253                          * it. */
1254                         wbc->nr_to_write -= result - 1;
1255                         result = 0;
1256                 }
1257         }
1258
1259         cl_env_put(env, &refcheck);
1260         GOTO(out, result);
1261
1262 out:
1263         if (result < 0) {
1264                 if (!lli->lli_async_rc)
1265                         lli->lli_async_rc = result;
1266                 SetPageError(vmpage);
1267                 if (!unlocked)
1268                         unlock_page(vmpage);
1269         }
1270         return result;
1271 }
1272
1273 int ll_writepages(struct address_space *mapping, struct writeback_control *wbc)
1274 {
1275         struct inode *inode = mapping->host;
1276         loff_t start;
1277         loff_t end;
1278         enum cl_fsync_mode mode;
1279         int range_whole = 0;
1280         int result;
1281         ENTRY;
1282
1283         if (wbc->range_cyclic) {
1284                 start = (loff_t)mapping->writeback_index << PAGE_SHIFT;
1285                 end = OBD_OBJECT_EOF;
1286         } else {
1287                 start = wbc->range_start;
1288                 end = wbc->range_end;
1289                 if (end == LLONG_MAX) {
1290                         end = OBD_OBJECT_EOF;
1291                         range_whole = start == 0;
1292                 }
1293         }
1294
1295         mode = CL_FSYNC_NONE;
1296         if (wbc->sync_mode == WB_SYNC_ALL)
1297                 mode = CL_FSYNC_LOCAL;
1298
1299         if (ll_i2info(inode)->lli_clob == NULL)
1300                 RETURN(0);
1301
1302         /* for directio, it would call writepages() to evict cached pages
1303          * inside the IO context of write, which will cause deadlock at
1304          * layout_conf since it waits for active IOs to complete. */
1305         result = cl_sync_file_range(inode, start, end, mode, 1);
1306         if (result > 0) {
1307                 wbc->nr_to_write -= result;
1308                 result = 0;
1309          }
1310
1311         if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) {
1312                 if (end == OBD_OBJECT_EOF)
1313                         mapping->writeback_index = 0;
1314                 else
1315                         mapping->writeback_index = (end >> PAGE_SHIFT) + 1;
1316         }
1317         RETURN(result);
1318 }
1319
1320 struct ll_cl_context *ll_cl_find(struct file *file)
1321 {
1322         struct ll_file_data *fd = file->private_data;
1323         struct ll_cl_context *lcc;
1324         struct ll_cl_context *found = NULL;
1325
1326         read_lock(&fd->fd_lock);
1327         list_for_each_entry(lcc, &fd->fd_lccs, lcc_list) {
1328                 if (lcc->lcc_cookie == current) {
1329                         found = lcc;
1330                         break;
1331                 }
1332         }
1333         read_unlock(&fd->fd_lock);
1334
1335         return found;
1336 }
1337
1338 void ll_cl_add(struct file *file, const struct lu_env *env, struct cl_io *io,
1339                enum lcc_type type)
1340 {
1341         struct ll_file_data *fd = file->private_data;
1342         struct ll_cl_context *lcc = &ll_env_info(env)->lti_io_ctx;
1343
1344         memset(lcc, 0, sizeof(*lcc));
1345         INIT_LIST_HEAD(&lcc->lcc_list);
1346         lcc->lcc_cookie = current;
1347         lcc->lcc_env = env;
1348         lcc->lcc_io = io;
1349         lcc->lcc_type = type;
1350
1351         write_lock(&fd->fd_lock);
1352         list_add(&lcc->lcc_list, &fd->fd_lccs);
1353         write_unlock(&fd->fd_lock);
1354 }
1355
1356 void ll_cl_remove(struct file *file, const struct lu_env *env)
1357 {
1358         struct ll_file_data *fd = file->private_data;
1359         struct ll_cl_context *lcc = &ll_env_info(env)->lti_io_ctx;
1360
1361         write_lock(&fd->fd_lock);
1362         list_del_init(&lcc->lcc_list);
1363         write_unlock(&fd->fd_lock);
1364 }
1365
1366 int ll_io_read_page(const struct lu_env *env, struct cl_io *io,
1367                            struct cl_page *page, struct file *file)
1368 {
1369         struct inode              *inode  = vvp_object_inode(page->cp_obj);
1370         struct ll_sb_info         *sbi    = ll_i2sbi(inode);
1371         struct ll_file_data       *fd     = file->private_data;
1372         struct ll_readahead_state *ras    = &fd->fd_ras;
1373         struct cl_2queue          *queue  = &io->ci_queue;
1374         struct cl_sync_io         *anchor = NULL;
1375         struct vvp_page           *vpg;
1376         int                        rc = 0;
1377         bool                       uptodate;
1378         ENTRY;
1379
1380         vpg = cl2vvp_page(cl_object_page_slice(page->cp_obj, page));
1381         uptodate = vpg->vpg_defer_uptodate;
1382
1383         if (sbi->ll_ra_info.ra_max_pages_per_file > 0 &&
1384             sbi->ll_ra_info.ra_max_pages > 0 &&
1385             !vpg->vpg_ra_updated) {
1386                 struct vvp_io *vio = vvp_env_io(env);
1387                 enum ras_update_flags flags = 0;
1388
1389                 if (uptodate)
1390                         flags |= LL_RAS_HIT;
1391                 if (!vio->vui_ra_valid)
1392                         flags |= LL_RAS_MMAP;
1393                 ras_update(sbi, inode, ras, vvp_index(vpg), flags);
1394         }
1395
1396         cl_2queue_init(queue);
1397         if (uptodate) {
1398                 vpg->vpg_ra_used = 1;
1399                 cl_page_export(env, page, 1);
1400                 cl_page_disown(env, io, page);
1401         } else {
1402                 anchor = &vvp_env_info(env)->vti_anchor;
1403                 cl_sync_io_init(anchor, 1);
1404                 page->cp_sync_io = anchor;
1405
1406                 cl_2queue_add(queue, page);
1407         }
1408
1409         if (sbi->ll_ra_info.ra_max_pages_per_file > 0 &&
1410             sbi->ll_ra_info.ra_max_pages > 0) {
1411                 int rc2;
1412
1413                 rc2 = ll_readahead(env, io, &queue->c2_qin, ras,
1414                                    uptodate, file);
1415                 CDEBUG(D_READA, DFID "%d pages read ahead at %lu\n",
1416                        PFID(ll_inode2fid(inode)), rc2, vvp_index(vpg));
1417         }
1418
1419         if (queue->c2_qin.pl_nr > 0) {
1420                 int count = queue->c2_qin.pl_nr;
1421                 rc = cl_io_submit_rw(env, io, CRT_READ, queue);
1422                 if (rc == 0)
1423                         task_io_account_read(PAGE_SIZE * count);
1424         }
1425
1426
1427         if (anchor != NULL && !cl_page_is_owned(page, io)) { /* have sent */
1428                 rc = cl_sync_io_wait(env, anchor, 0);
1429
1430                 cl_page_assume(env, io, page);
1431                 cl_page_list_del(env, &queue->c2_qout, page);
1432
1433                 if (!PageUptodate(cl_page_vmpage(page))) {
1434                         /* Failed to read a mirror, discard this page so that
1435                          * new page can be created with new mirror.
1436                          *
1437                          * TODO: this is not needed after page reinit
1438                          * route is implemented */
1439                         cl_page_discard(env, io, page);
1440                 }
1441                 cl_page_disown(env, io, page);
1442         }
1443
1444         /* TODO: discard all pages until page reinit route is implemented */
1445         cl_page_list_discard(env, io, &queue->c2_qin);
1446
1447         /* Unlock unsent read pages in case of error. */
1448         cl_page_list_disown(env, io, &queue->c2_qin);
1449
1450         cl_2queue_fini(env, queue);
1451
1452         RETURN(rc);
1453 }
1454
1455 /*
1456  * Possible return value:
1457  * 0 no async readahead triggered and fast read could not be used.
1458  * 1 no async readahead, but fast read could be used.
1459  * 2 async readahead triggered and fast read could be used too.
1460  * < 0 on error.
1461  */
1462 static int kickoff_async_readahead(struct file *file, unsigned long pages)
1463 {
1464         struct ll_readahead_work *lrw;
1465         struct inode *inode = file_inode(file);
1466         struct ll_sb_info *sbi = ll_i2sbi(inode);
1467         struct ll_file_data *fd = file->private_data;
1468         struct ll_readahead_state *ras = &fd->fd_ras;
1469         struct ll_ra_info *ra = &sbi->ll_ra_info;
1470         unsigned long throttle;
1471         pgoff_t start_idx = ras_align(ras, ras->ras_next_readahead_idx);
1472         pgoff_t end_idx = start_idx + pages - 1;
1473
1474         throttle = min(ra->ra_async_pages_per_file_threshold,
1475                        ra->ra_max_pages_per_file);
1476         /*
1477          * If this is strided i/o or the window is smaller than the
1478          * throttle limit, we do not do async readahead. Otherwise,
1479          * we do async readahead, allowing the user thread to do fast i/o.
1480          */
1481         if (stride_io_mode(ras) || !throttle ||
1482             ras->ras_window_pages < throttle)
1483                 return 0;
1484
1485         if ((atomic_read(&ra->ra_cur_pages) + pages) > ra->ra_max_pages)
1486                 return 0;
1487
1488         if (ras->ras_async_last_readpage_idx == start_idx)
1489                 return 1;
1490
1491         /* ll_readahead_work_free() free it */
1492         OBD_ALLOC_PTR(lrw);
1493         if (lrw) {
1494                 lrw->lrw_file = get_file(file);
1495                 lrw->lrw_start_idx = start_idx;
1496                 lrw->lrw_end_idx = end_idx;
1497                 spin_lock(&ras->ras_lock);
1498                 ras->ras_next_readahead_idx = end_idx + 1;
1499                 ras->ras_async_last_readpage_idx = start_idx;
1500                 spin_unlock(&ras->ras_lock);
1501                 ll_readahead_work_add(inode, lrw);
1502         } else {
1503                 return -ENOMEM;
1504         }
1505
1506         return 2;
1507 }
1508
1509 /*
1510  * Check if we can issue a readahead RPC, if that is
1511  * the case, we can't do fast IO because we will need
1512  * a cl_io to issue the RPC.
1513  */
1514 static bool ll_use_fast_io(struct file *file,
1515                            struct ll_readahead_state *ras, pgoff_t index)
1516 {
1517         unsigned long fast_read_pages =
1518                 max(RA_REMAIN_WINDOW_MIN, ras->ras_rpc_pages);
1519         loff_t skip_pages;
1520
1521         if (stride_io_mode(ras)) {
1522                 skip_pages = (ras->ras_stride_length +
1523                         ras->ras_stride_bytes - 1) / ras->ras_stride_bytes;
1524                 skip_pages *= fast_read_pages;
1525         } else {
1526                 skip_pages = fast_read_pages;
1527         }
1528
1529         if (ras->ras_window_start_idx + ras->ras_window_pages <
1530             ras->ras_next_readahead_idx + skip_pages ||
1531             kickoff_async_readahead(file, fast_read_pages) > 0)
1532                 return true;
1533
1534         return false;
1535 }
1536
1537 int ll_readpage(struct file *file, struct page *vmpage)
1538 {
1539         struct inode *inode = file_inode(file);
1540         struct cl_object *clob = ll_i2info(inode)->lli_clob;
1541         struct ll_cl_context *lcc;
1542         const struct lu_env  *env = NULL;
1543         struct cl_io   *io = NULL;
1544         struct cl_page *page;
1545         struct ll_sb_info *sbi = ll_i2sbi(inode);
1546         int result;
1547         ENTRY;
1548
1549         lcc = ll_cl_find(file);
1550         if (lcc != NULL) {
1551                 env = lcc->lcc_env;
1552                 io  = lcc->lcc_io;
1553         }
1554
1555         if (io == NULL) { /* fast read */
1556                 struct inode *inode = file_inode(file);
1557                 struct ll_file_data *fd = file->private_data;
1558                 struct ll_readahead_state *ras = &fd->fd_ras;
1559                 struct lu_env  *local_env = NULL;
1560                 struct vvp_page *vpg;
1561
1562                 result = -ENODATA;
1563
1564                 /* TODO: need to verify the layout version to make sure
1565                  * the page is not invalid due to layout change. */
1566                 page = cl_vmpage_page(vmpage, clob);
1567                 if (page == NULL) {
1568                         unlock_page(vmpage);
1569                         ll_ra_stats_inc_sbi(sbi, RA_STAT_FAILED_FAST_READ);
1570                         RETURN(result);
1571                 }
1572
1573                 vpg = cl2vvp_page(cl_object_page_slice(page->cp_obj, page));
1574                 if (vpg->vpg_defer_uptodate) {
1575                         enum ras_update_flags flags = LL_RAS_HIT;
1576
1577                         if (lcc && lcc->lcc_type == LCC_MMAP)
1578                                 flags |= LL_RAS_MMAP;
1579
1580                         /* For fast read, it updates read ahead state only
1581                          * if the page is hit in cache because non cache page
1582                          * case will be handled by slow read later. */
1583                         ras_update(sbi, inode, ras, vvp_index(vpg), flags);
1584                         /* avoid duplicate ras_update() call */
1585                         vpg->vpg_ra_updated = 1;
1586
1587                         if (ll_use_fast_io(file, ras, vvp_index(vpg)))
1588                                 result = 0;
1589                 }
1590
1591                 if (!env) {
1592                         local_env = cl_env_percpu_get();
1593                         env = local_env;
1594                 }
1595
1596                 /* export the page and skip io stack */
1597                 if (result == 0) {
1598                         vpg->vpg_ra_used = 1;
1599                         cl_page_export(env, page, 1);
1600                 } else {
1601                         ll_ra_stats_inc_sbi(sbi, RA_STAT_FAILED_FAST_READ);
1602                 }
1603                 /* release page refcount before unlocking the page to ensure
1604                  * the object won't be destroyed in the calling path of
1605                  * cl_page_put(). Please see comment in ll_releasepage(). */
1606                 cl_page_put(env, page);
1607                 unlock_page(vmpage);
1608                 if (local_env)
1609                         cl_env_percpu_put(local_env);
1610
1611                 RETURN(result);
1612         }
1613
1614         /**
1615          * Direct read can fall back to buffered read, but DIO is done
1616          * with lockless i/o, and buffered requires LDLM locking, so in
1617          * this case we must restart without lockless.
1618          */
1619         if (file->f_flags & O_DIRECT &&
1620             lcc && lcc->lcc_type == LCC_RW &&
1621             !io->ci_ignore_lockless) {
1622                 unlock_page(vmpage);
1623                 io->ci_ignore_lockless = 1;
1624                 io->ci_need_restart = 1;
1625                 RETURN(-ENOLCK);
1626         }
1627
1628         LASSERT(io->ci_state == CIS_IO_GOING);
1629         page = cl_page_find(env, clob, vmpage->index, vmpage, CPT_CACHEABLE);
1630         if (!IS_ERR(page)) {
1631                 LASSERT(page->cp_type == CPT_CACHEABLE);
1632                 if (likely(!PageUptodate(vmpage))) {
1633                         cl_page_assume(env, io, page);
1634
1635                         result = ll_io_read_page(env, io, page, file);
1636                 } else {
1637                         /* Page from a non-object file. */
1638                         unlock_page(vmpage);
1639                         result = 0;
1640                 }
1641                 cl_page_put(env, page);
1642         } else {
1643                 unlock_page(vmpage);
1644                 result = PTR_ERR(page);
1645         }
1646         RETURN(result);
1647 }