Whamcloud - gitweb
761dd04dfff39ad1bbc6a19161b30d52aed9bb77
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/llite/rw.c
37  *
38  * Lustre Lite I/O page cache routines shared by different kernel revs
39  */
40
41 #include <linux/kernel.h>
42 #include <linux/mm.h>
43 #include <linux/string.h>
44 #include <linux/stat.h>
45 #include <linux/errno.h>
46 #include <linux/unistd.h>
47 #include <linux/writeback.h>
48 #include <asm/uaccess.h>
49
50 #include <linux/fs.h>
51 #include <linux/stat.h>
52 #include <asm/uaccess.h>
53 #include <linux/mm.h>
54 #include <linux/pagemap.h>
55 /* current_is_kswapd() */
56 #include <linux/swap.h>
57
58 #define DEBUG_SUBSYSTEM S_LLITE
59
60 #include <obd_cksum.h>
61 #include "llite_internal.h"
62 #include <lustre_compat.h>
63
64 static void ll_ra_stats_inc_sbi(struct ll_sb_info *sbi, enum ra_stat which);
65
66 /**
67  * Get readahead pages from the filesystem readahead pool of the client for a
68  * thread.
69  *
70  * /param sbi superblock for filesystem readahead state ll_ra_info
71  * /param ria per-thread readahead state
72  * /param pages number of pages requested for readahead for the thread.
73  *
74  * WARNING: This algorithm is used to reduce contention on sbi->ll_lock.
75  * It should work well if the ra_max_pages is much greater than the single
76  * file's read-ahead window, and not too many threads contending for
77  * these readahead pages.
78  *
79  * TODO: There may be a 'global sync problem' if many threads are trying
80  * to get an ra budget that is larger than the remaining readahead pages
81  * and reach here at exactly the same time. They will compute /a ret to
82  * consume the remaining pages, but will fail at atomic_add_return() and
83  * get a zero ra window, although there is still ra space remaining. - Jay */
84
85 static unsigned long ll_ra_count_get(struct ll_sb_info *sbi,
86                                      struct ra_io_arg *ria,
87                                      unsigned long pages, unsigned long min)
88 {
89         struct ll_ra_info *ra = &sbi->ll_ra_info;
90         long ret;
91         ENTRY;
92
93         /* If read-ahead pages left are less than 1M, do not do read-ahead,
94          * otherwise it will form small read RPC(< 1M), which hurt server
95          * performance a lot. */
96         ret = min(ra->ra_max_pages - atomic_read(&ra->ra_cur_pages),
97                   pages);
98         if (ret < 0 || ret < min_t(long, PTLRPC_MAX_BRW_PAGES, pages))
99                 GOTO(out, ret = 0);
100
101         if (atomic_add_return(ret, &ra->ra_cur_pages) > ra->ra_max_pages) {
102                 atomic_sub(ret, &ra->ra_cur_pages);
103                 ret = 0;
104         }
105
106 out:
107         if (ret < min) {
108                 /* override ra limit for maximum performance */
109                 atomic_add(min - ret, &ra->ra_cur_pages);
110                 ret = min;
111         }
112         RETURN(ret);
113 }
114
115 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len)
116 {
117         struct ll_ra_info *ra = &sbi->ll_ra_info;
118         atomic_sub(len, &ra->ra_cur_pages);
119 }
120
121 static void ll_ra_stats_inc_sbi(struct ll_sb_info *sbi, enum ra_stat which)
122 {
123         LASSERTF(which >= 0 && which < _NR_RA_STAT, "which: %u\n", which);
124         lprocfs_counter_incr(sbi->ll_ra_stats, which);
125 }
126
127 void ll_ra_stats_inc(struct inode *inode, enum ra_stat which)
128 {
129         struct ll_sb_info *sbi = ll_i2sbi(inode);
130         ll_ra_stats_inc_sbi(sbi, which);
131 }
132
133 #define RAS_CDEBUG(ras) \
134         CDEBUG(D_READA,                                                      \
135                "lrp %lu cr %lu cp %lu ws %lu wl %lu nra %lu rpc %lu "        \
136                "r %lu ri %lu csr %lu sf %lu sp %lu sl %lu\n",                \
137                ras->ras_last_readpage, ras->ras_consecutive_requests,        \
138                ras->ras_consecutive_pages, ras->ras_window_start,            \
139                ras->ras_window_len, ras->ras_next_readahead,                 \
140                ras->ras_rpc_size,                                            \
141                ras->ras_requests, ras->ras_request_index,                    \
142                ras->ras_consecutive_stride_requests, ras->ras_stride_offset, \
143                ras->ras_stride_pages, ras->ras_stride_length)
144
145 static int index_in_window(unsigned long index, unsigned long point,
146                            unsigned long before, unsigned long after)
147 {
148         unsigned long start = point - before, end = point + after;
149
150         if (start > point)
151                start = 0;
152         if (end < point)
153                end = ~0;
154
155         return start <= index && index <= end;
156 }
157
158 void ll_ras_enter(struct file *f)
159 {
160         struct ll_file_data *fd = LUSTRE_FPRIVATE(f);
161         struct ll_readahead_state *ras = &fd->fd_ras;
162
163         spin_lock(&ras->ras_lock);
164         ras->ras_requests++;
165         ras->ras_request_index = 0;
166         ras->ras_consecutive_requests++;
167         spin_unlock(&ras->ras_lock);
168 }
169
170 /**
171  * Initiates read-ahead of a page with given index.
172  *
173  * \retval +ve: page was already uptodate so it will be skipped
174  *              from being added;
175  * \retval -ve: page wasn't added to \a queue for error;
176  * \retval   0: page was added into \a queue for read ahead.
177  */
178 static int ll_read_ahead_page(const struct lu_env *env, struct cl_io *io,
179                               struct cl_page_list *queue, pgoff_t index)
180 {
181         struct cl_object *clob  = io->ci_obj;
182         struct inode     *inode = vvp_object_inode(clob);
183         struct page      *vmpage;
184         struct cl_page   *page;
185         struct vvp_page  *vpg;
186         enum ra_stat      which = _NR_RA_STAT; /* keep gcc happy */
187         int               rc    = 0;
188         const char       *msg   = NULL;
189         ENTRY;
190
191         vmpage = grab_cache_page_nowait(inode->i_mapping, index);
192         if (vmpage == NULL) {
193                 which = RA_STAT_FAILED_GRAB_PAGE;
194                 msg   = "g_c_p_n failed";
195                 GOTO(out, rc = -EBUSY);
196         }
197
198         /* Check if vmpage was truncated or reclaimed */
199         if (vmpage->mapping != inode->i_mapping) {
200                 which = RA_STAT_WRONG_GRAB_PAGE;
201                 msg   = "g_c_p_n returned invalid page";
202                 GOTO(out, rc = -EBUSY);
203         }
204
205         page = cl_page_find(env, clob, vmpage->index, vmpage, CPT_CACHEABLE);
206         if (IS_ERR(page)) {
207                 which = RA_STAT_FAILED_GRAB_PAGE;
208                 msg   = "cl_page_find failed";
209                 GOTO(out, rc = PTR_ERR(page));
210         }
211
212         lu_ref_add(&page->cp_reference, "ra", current);
213         cl_page_assume(env, io, page);
214         vpg = cl2vvp_page(cl_object_page_slice(clob, page));
215         if (!vpg->vpg_defer_uptodate && !PageUptodate(vmpage)) {
216                 vpg->vpg_defer_uptodate = 1;
217                 vpg->vpg_ra_used = 0;
218                 cl_page_list_add(queue, page);
219         } else {
220                 /* skip completed pages */
221                 cl_page_unassume(env, io, page);
222                 /* This page is already uptodate, returning a positive number
223                  * to tell the callers about this */
224                 rc = 1;
225         }
226
227         lu_ref_del(&page->cp_reference, "ra", current);
228         cl_page_put(env, page);
229
230 out:
231         if (vmpage != NULL) {
232                 if (rc != 0)
233                         unlock_page(vmpage);
234                 put_page(vmpage);
235         }
236         if (msg != NULL) {
237                 ll_ra_stats_inc(inode, which);
238                 CDEBUG(D_READA, "%s\n", msg);
239
240         }
241
242         RETURN(rc);
243 }
244
245 #define RIA_DEBUG(ria)                                                       \
246         CDEBUG(D_READA, "rs %lu re %lu ro %lu rl %lu rp %lu\n",       \
247         ria->ria_start, ria->ria_end, ria->ria_stoff, ria->ria_length,\
248         ria->ria_pages)
249
250 static inline int stride_io_mode(struct ll_readahead_state *ras)
251 {
252         return ras->ras_consecutive_stride_requests > 1;
253 }
254
255 /* The function calculates how much pages will be read in
256  * [off, off + length], in such stride IO area,
257  * stride_offset = st_off, stride_lengh = st_len,
258  * stride_pages = st_pgs
259  *
260  *   |------------------|*****|------------------|*****|------------|*****|....
261  * st_off
262  *   |--- st_pgs     ---|
263  *   |-----     st_len   -----|
264  *
265  *              How many pages it should read in such pattern
266  *              |-------------------------------------------------------------|
267  *              off
268  *              |<------                  length                      ------->|
269  *
270  *          =   |<----->|  +  |-------------------------------------| +   |---|
271  *             start_left                 st_pgs * i                    end_left
272  */
273 static unsigned long
274 stride_pg_count(pgoff_t st_off, unsigned long st_len, unsigned long st_pgs,
275                 unsigned long off, unsigned long length)
276 {
277         __u64 start = off > st_off ? off - st_off : 0;
278         __u64 end = off + length > st_off ? off + length - st_off : 0;
279         unsigned long start_left = 0;
280         unsigned long end_left = 0;
281         unsigned long pg_count;
282
283         if (st_len == 0 || length == 0 || end == 0)
284                 return length;
285
286         start_left = do_div(start, st_len);
287         if (start_left < st_pgs)
288                 start_left = st_pgs - start_left;
289         else
290                 start_left = 0;
291
292         end_left = do_div(end, st_len);
293         if (end_left > st_pgs)
294                 end_left = st_pgs;
295
296         CDEBUG(D_READA, "start %llu, end %llu start_left %lu end_left %lu\n",
297                start, end, start_left, end_left);
298
299         if (start == end)
300                 pg_count = end_left - (st_pgs - start_left);
301         else
302                 pg_count = start_left + st_pgs * (end - start - 1) + end_left;
303
304         CDEBUG(D_READA, "st_off %lu, st_len %lu st_pgs %lu off %lu length %lu"
305                "pgcount %lu\n", st_off, st_len, st_pgs, off, length, pg_count);
306
307         return pg_count;
308 }
309
310 static int ria_page_count(struct ra_io_arg *ria)
311 {
312         __u64 length = ria->ria_end >= ria->ria_start ?
313                        ria->ria_end - ria->ria_start + 1 : 0;
314
315         return stride_pg_count(ria->ria_stoff, ria->ria_length,
316                                ria->ria_pages, ria->ria_start,
317                                length);
318 }
319
320 static unsigned long ras_align(struct ll_readahead_state *ras,
321                                unsigned long index,
322                                unsigned long *remainder)
323 {
324         unsigned long rem = index % ras->ras_rpc_size;
325         if (remainder != NULL)
326                 *remainder = rem;
327         return index - rem;
328 }
329
330 /*Check whether the index is in the defined ra-window */
331 static int ras_inside_ra_window(unsigned long idx, struct ra_io_arg *ria)
332 {
333         /* If ria_length == ria_pages, 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_pages. */
337         return ria->ria_length == 0 || ria->ria_length == ria->ria_pages ||
338                (idx >= ria->ria_stoff && (idx - ria->ria_stoff) %
339                 ria->ria_length < ria->ria_pages);
340 }
341
342 static unsigned long
343 ll_read_ahead_pages(const struct lu_env *env, struct cl_io *io,
344                     struct cl_page_list *queue, struct ll_readahead_state *ras,
345                     struct ra_io_arg *ria)
346 {
347         struct cl_read_ahead ra = { 0 };
348         int rc = 0;
349         bool stride_ria;
350         unsigned long ra_end = 0;
351         pgoff_t page_idx;
352
353         LASSERT(ria != NULL);
354         RIA_DEBUG(ria);
355
356         stride_ria = ria->ria_length > ria->ria_pages && ria->ria_pages > 0;
357         for (page_idx = ria->ria_start;
358              page_idx <= ria->ria_end && ria->ria_reserved > 0; page_idx++) {
359                 if (ras_inside_ra_window(page_idx, ria)) {
360                         if (ra.cra_end == 0 || ra.cra_end < page_idx) {
361                                 unsigned long end;
362
363                                 cl_read_ahead_release(env, &ra);
364
365                                 rc = cl_io_read_ahead(env, io, page_idx, &ra);
366                                 if (rc < 0)
367                                         break;
368
369                                 CDEBUG(D_READA, "idx: %lu, ra: %lu, rpc: %lu\n",
370                                        page_idx, ra.cra_end, ra.cra_rpc_size);
371                                 LASSERTF(ra.cra_end >= page_idx,
372                                          "object: %p, indcies %lu / %lu\n",
373                                          io->ci_obj, ra.cra_end, page_idx);
374                                 /* update read ahead RPC size.
375                                  * NB: it's racy but doesn't matter */
376                                 if (ras->ras_rpc_size > ra.cra_rpc_size &&
377                                     ra.cra_rpc_size > 0)
378                                         ras->ras_rpc_size = ra.cra_rpc_size;
379                                 /* trim it to align with optimal RPC size */
380                                 end = ras_align(ras, ria->ria_end + 1, NULL);
381                                 if (end > 0 && !ria->ria_eof)
382                                         ria->ria_end = end - 1;
383                                 if (ria->ria_end < ria->ria_end_min)
384                                         ria->ria_end = ria->ria_end_min;
385                                 if (ria->ria_end > ra.cra_end)
386                                         ria->ria_end = ra.cra_end;
387                         }
388                         if (page_idx > ria->ria_end)
389                                 break;
390
391                         /* If the page is inside the read-ahead window */
392                         rc = ll_read_ahead_page(env, io, queue, page_idx);
393                         if (rc < 0)
394                                 break;
395
396                         ra_end = page_idx;
397                         if (rc == 0)
398                                 ria->ria_reserved--;
399                 } else if (stride_ria) {
400                         /* If it is not in the read-ahead window, and it is
401                          * read-ahead mode, then check whether it should skip
402                          * the stride gap */
403                         pgoff_t offset;
404                         /* FIXME: This assertion only is valid when it is for
405                          * forward read-ahead, it will be fixed when backward
406                          * read-ahead is implemented */
407                         LASSERTF(page_idx >= ria->ria_stoff,
408                                 "Invalid page_idx %lu rs %lu re %lu ro %lu "
409                                 "rl %lu rp %lu\n", page_idx,
410                                 ria->ria_start, ria->ria_end, ria->ria_stoff,
411                                 ria->ria_length, ria->ria_pages);
412                         offset = page_idx - ria->ria_stoff;
413                         offset = offset % (ria->ria_length);
414                         if (offset > ria->ria_pages) {
415                                 page_idx += ria->ria_length - offset;
416                                 CDEBUG(D_READA, "i %lu skip %lu \n", page_idx,
417                                        ria->ria_length - offset);
418                                 continue;
419                         }
420                 }
421         }
422
423         cl_read_ahead_release(env, &ra);
424
425         return ra_end;
426 }
427
428 static int ll_readahead(const struct lu_env *env, struct cl_io *io,
429                         struct cl_page_list *queue,
430                         struct ll_readahead_state *ras, bool hit)
431 {
432         struct vvp_io *vio = vvp_env_io(env);
433         struct ll_thread_info *lti = ll_env_info(env);
434         struct cl_attr *attr = vvp_env_thread_attr(env);
435         unsigned long len, mlen = 0;
436         pgoff_t ra_end, start = 0, end = 0;
437         struct inode *inode;
438         struct ra_io_arg *ria = &lti->lti_ria;
439         struct cl_object *clob;
440         int ret = 0;
441         __u64 kms;
442         ENTRY;
443
444         clob = io->ci_obj;
445         inode = vvp_object_inode(clob);
446
447         memset(ria, 0, sizeof *ria);
448
449         cl_object_attr_lock(clob);
450         ret = cl_object_attr_get(env, clob, attr);
451         cl_object_attr_unlock(clob);
452
453         if (ret != 0)
454                 RETURN(ret);
455         kms = attr->cat_kms;
456         if (kms == 0) {
457                 ll_ra_stats_inc(inode, RA_STAT_ZERO_LEN);
458                 RETURN(0);
459         }
460
461         spin_lock(&ras->ras_lock);
462
463         /**
464          * Note: other thread might rollback the ras_next_readahead,
465          * if it can not get the full size of prepared pages, see the
466          * end of this function. For stride read ahead, it needs to
467          * make sure the offset is no less than ras_stride_offset,
468          * so that stride read ahead can work correctly.
469          */
470         if (stride_io_mode(ras))
471                 start = max(ras->ras_next_readahead, ras->ras_stride_offset);
472         else
473                 start = ras->ras_next_readahead;
474
475         if (ras->ras_window_len > 0)
476                 end = ras->ras_window_start + ras->ras_window_len - 1;
477
478         /* Enlarge the RA window to encompass the full read */
479         if (vio->vui_ra_valid &&
480             end < vio->vui_ra_start + vio->vui_ra_count - 1)
481                 end = vio->vui_ra_start + vio->vui_ra_count - 1;
482
483         if (end != 0) {
484                 unsigned long end_index;
485
486                 /* Truncate RA window to end of file */
487                 end_index = (unsigned long)((kms - 1) >> PAGE_SHIFT);
488                 if (end_index <= end) {
489                         end = end_index;
490                         ria->ria_eof = true;
491                 }
492
493                 ras->ras_next_readahead = max(end, end + 1);
494                 RAS_CDEBUG(ras);
495         }
496         ria->ria_start = start;
497         ria->ria_end = end;
498         /* If stride I/O mode is detected, get stride window*/
499         if (stride_io_mode(ras)) {
500                 ria->ria_stoff = ras->ras_stride_offset;
501                 ria->ria_length = ras->ras_stride_length;
502                 ria->ria_pages = ras->ras_stride_pages;
503         }
504         spin_unlock(&ras->ras_lock);
505
506         if (end == 0) {
507                 ll_ra_stats_inc(inode, RA_STAT_ZERO_WINDOW);
508                 RETURN(0);
509         }
510         len = ria_page_count(ria);
511         if (len == 0) {
512                 ll_ra_stats_inc(inode, RA_STAT_ZERO_WINDOW);
513                 RETURN(0);
514         }
515
516         CDEBUG(D_READA, DFID": ria: %lu/%lu, bead: %lu/%lu, hit: %d\n",
517                PFID(lu_object_fid(&clob->co_lu)),
518                ria->ria_start, ria->ria_end,
519                vio->vui_ra_valid ? vio->vui_ra_start : 0,
520                vio->vui_ra_valid ? vio->vui_ra_count : 0,
521                hit);
522
523         /* at least to extend the readahead window to cover current read */
524         if (!hit && vio->vui_ra_valid &&
525             vio->vui_ra_start + vio->vui_ra_count > ria->ria_start) {
526                 unsigned long remainder;
527
528                 /* to the end of current read window. */
529                 mlen = vio->vui_ra_start + vio->vui_ra_count - ria->ria_start;
530                 /* trim to RPC boundary */
531                 ras_align(ras, ria->ria_start, &remainder);
532                 mlen = min(mlen, ras->ras_rpc_size - remainder);
533                 ria->ria_end_min = ria->ria_start + mlen;
534         }
535
536         ria->ria_reserved = ll_ra_count_get(ll_i2sbi(inode), ria, len, mlen);
537         if (ria->ria_reserved < len)
538                 ll_ra_stats_inc(inode, RA_STAT_MAX_IN_FLIGHT);
539
540         CDEBUG(D_READA, "reserved pages: %lu/%lu/%lu, ra_cur %d, ra_max %lu\n",
541                ria->ria_reserved, len, mlen,
542                atomic_read(&ll_i2sbi(inode)->ll_ra_info.ra_cur_pages),
543                ll_i2sbi(inode)->ll_ra_info.ra_max_pages);
544
545         ra_end = ll_read_ahead_pages(env, io, queue, ras, ria);
546
547         if (ria->ria_reserved != 0)
548                 ll_ra_count_put(ll_i2sbi(inode), ria->ria_reserved);
549
550         if (ra_end == end && ra_end == (kms >> PAGE_SHIFT))
551                 ll_ra_stats_inc(inode, RA_STAT_EOF);
552
553         /* if we didn't get to the end of the region we reserved from
554          * the ras we need to go back and update the ras so that the
555          * next read-ahead tries from where we left off.  we only do so
556          * if the region we failed to issue read-ahead on is still ahead
557          * of the app and behind the next index to start read-ahead from */
558         CDEBUG(D_READA, "ra_end = %lu end = %lu stride end = %lu pages = %d\n",
559                ra_end, end, ria->ria_end, ret);
560
561         if (ra_end > 0 && ra_end != end) {
562                 ll_ra_stats_inc(inode, RA_STAT_FAILED_REACH_END);
563                 spin_lock(&ras->ras_lock);
564                 if (ra_end <= ras->ras_next_readahead &&
565                     index_in_window(ra_end, ras->ras_window_start, 0,
566                                     ras->ras_window_len)) {
567                         ras->ras_next_readahead = ra_end + 1;
568                         RAS_CDEBUG(ras);
569                 }
570                 spin_unlock(&ras->ras_lock);
571         }
572
573         RETURN(ret);
574 }
575
576 static void ras_set_start(struct inode *inode, struct ll_readahead_state *ras,
577                           unsigned long index)
578 {
579         ras->ras_window_start = ras_align(ras, index, NULL);
580 }
581
582 /* called with the ras_lock held or from places where it doesn't matter */
583 static void ras_reset(struct inode *inode, struct ll_readahead_state *ras,
584                       unsigned long index)
585 {
586         ras->ras_last_readpage = index;
587         ras->ras_consecutive_requests = 0;
588         ras->ras_consecutive_pages = 0;
589         ras->ras_window_len = 0;
590         ras_set_start(inode, ras, index);
591         ras->ras_next_readahead = max(ras->ras_window_start, index + 1);
592
593         RAS_CDEBUG(ras);
594 }
595
596 /* called with the ras_lock held or from places where it doesn't matter */
597 static void ras_stride_reset(struct ll_readahead_state *ras)
598 {
599         ras->ras_consecutive_stride_requests = 0;
600         ras->ras_stride_length = 0;
601         ras->ras_stride_pages = 0;
602         RAS_CDEBUG(ras);
603 }
604
605 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras)
606 {
607         spin_lock_init(&ras->ras_lock);
608         ras->ras_rpc_size = PTLRPC_MAX_BRW_PAGES;
609         ras_reset(inode, ras, 0);
610         ras->ras_requests = 0;
611 }
612
613 /*
614  * Check whether the read request is in the stride window.
615  * If it is in the stride window, return 1, otherwise return 0.
616  */
617 static int index_in_stride_window(struct ll_readahead_state *ras,
618                                   unsigned long index)
619 {
620         unsigned long stride_gap;
621
622         if (ras->ras_stride_length == 0 || ras->ras_stride_pages == 0 ||
623             ras->ras_stride_pages == ras->ras_stride_length)
624                 return 0;
625
626         stride_gap = index - ras->ras_last_readpage - 1;
627
628         /* If it is contiguous read */
629         if (stride_gap == 0)
630                 return ras->ras_consecutive_pages + 1 <= ras->ras_stride_pages;
631
632         /* Otherwise check the stride by itself */
633         return (ras->ras_stride_length - ras->ras_stride_pages) == stride_gap &&
634                 ras->ras_consecutive_pages == ras->ras_stride_pages;
635 }
636
637 static void ras_update_stride_detector(struct ll_readahead_state *ras,
638                                        unsigned long index)
639 {
640         unsigned long stride_gap = index - ras->ras_last_readpage - 1;
641
642         if (!stride_io_mode(ras) && (stride_gap != 0 ||
643              ras->ras_consecutive_stride_requests == 0)) {
644                 ras->ras_stride_pages = ras->ras_consecutive_pages;
645                 ras->ras_stride_length = stride_gap +ras->ras_consecutive_pages;
646         }
647         LASSERT(ras->ras_request_index == 0);
648         LASSERT(ras->ras_consecutive_stride_requests == 0);
649
650         if (index <= ras->ras_last_readpage) {
651                 /*Reset stride window for forward read*/
652                 ras_stride_reset(ras);
653                 return;
654         }
655
656         ras->ras_stride_pages = ras->ras_consecutive_pages;
657         ras->ras_stride_length = stride_gap +ras->ras_consecutive_pages;
658
659         RAS_CDEBUG(ras);
660         return;
661 }
662
663 static unsigned long
664 stride_page_count(struct ll_readahead_state *ras, unsigned long len)
665 {
666         return stride_pg_count(ras->ras_stride_offset, ras->ras_stride_length,
667                                ras->ras_stride_pages, ras->ras_stride_offset,
668                                len);
669 }
670
671 /* Stride Read-ahead window will be increased inc_len according to
672  * stride I/O pattern */
673 static void ras_stride_increase_window(struct ll_readahead_state *ras,
674                                        struct ll_ra_info *ra,
675                                        unsigned long inc_len)
676 {
677         unsigned long left, step, window_len;
678         unsigned long stride_len;
679
680         LASSERT(ras->ras_stride_length > 0);
681         LASSERTF(ras->ras_window_start + ras->ras_window_len
682                  >= ras->ras_stride_offset, "window_start %lu, window_len %lu"
683                  " stride_offset %lu\n", ras->ras_window_start,
684                  ras->ras_window_len, ras->ras_stride_offset);
685
686         stride_len = ras->ras_window_start + ras->ras_window_len -
687                      ras->ras_stride_offset;
688
689         left = stride_len % ras->ras_stride_length;
690         window_len = ras->ras_window_len - left;
691
692         if (left < ras->ras_stride_pages)
693                 left += inc_len;
694         else
695                 left = ras->ras_stride_pages + inc_len;
696
697         LASSERT(ras->ras_stride_pages != 0);
698
699         step = left / ras->ras_stride_pages;
700         left %= ras->ras_stride_pages;
701
702         window_len += step * ras->ras_stride_length + left;
703
704         if (stride_page_count(ras, window_len) <= ra->ra_max_pages_per_file)
705                 ras->ras_window_len = window_len;
706
707         RAS_CDEBUG(ras);
708 }
709
710 static void ras_increase_window(struct inode *inode,
711                                 struct ll_readahead_state *ras,
712                                 struct ll_ra_info *ra)
713 {
714         /* The stretch of ra-window should be aligned with max rpc_size
715          * but current clio architecture does not support retrieve such
716          * information from lower layer. FIXME later
717          */
718         if (stride_io_mode(ras)) {
719                 ras_stride_increase_window(ras, ra, ras->ras_rpc_size);
720         } else {
721                 unsigned long wlen;
722
723                 wlen = min(ras->ras_window_len + ras->ras_rpc_size,
724                            ra->ra_max_pages_per_file);
725                 ras->ras_window_len = ras_align(ras, wlen, NULL);
726         }
727 }
728
729 static void ras_update(struct ll_sb_info *sbi, struct inode *inode,
730                        struct ll_readahead_state *ras, unsigned long index,
731                        enum ras_update_flags flags)
732 {
733         struct ll_ra_info *ra = &sbi->ll_ra_info;
734         bool hit = flags & LL_RAS_HIT;
735         int zero = 0, stride_detect = 0, ra_miss = 0;
736         ENTRY;
737
738         spin_lock(&ras->ras_lock);
739
740         if (!hit)
741                 CDEBUG(D_READA, DFID " pages at %lu miss.\n",
742                        PFID(ll_inode2fid(inode)), index);
743         ll_ra_stats_inc_sbi(sbi, hit ? RA_STAT_HIT : RA_STAT_MISS);
744
745         /* reset the read-ahead window in two cases.  First when the app seeks
746          * or reads to some other part of the file.  Secondly if we get a
747          * read-ahead miss that we think we've previously issued.  This can
748          * be a symptom of there being so many read-ahead pages that the VM is
749          * reclaiming it before we get to it. */
750         if (!index_in_window(index, ras->ras_last_readpage, 8, 8)) {
751                 zero = 1;
752                 ll_ra_stats_inc_sbi(sbi, RA_STAT_DISTANT_READPAGE);
753         } else if (!hit && ras->ras_window_len &&
754                    index < ras->ras_next_readahead &&
755                    index_in_window(index, ras->ras_window_start, 0,
756                                    ras->ras_window_len)) {
757                 ra_miss = 1;
758                 ll_ra_stats_inc_sbi(sbi, RA_STAT_MISS_IN_WINDOW);
759         }
760
761         /* On the second access to a file smaller than the tunable
762          * ra_max_read_ahead_whole_pages trigger RA on all pages in the
763          * file up to ra_max_pages_per_file.  This is simply a best effort
764          * and only occurs once per open file.  Normal RA behavior is reverted
765          * to for subsequent IO.  The mmap case does not increment
766          * ras_requests and thus can never trigger this behavior. */
767         if (ras->ras_requests >= 2 && !ras->ras_request_index) {
768                 __u64 kms_pages;
769
770                 kms_pages = (i_size_read(inode) + PAGE_SIZE - 1) >>
771                             PAGE_SHIFT;
772
773                 CDEBUG(D_READA, "kmsp %llu mwp %lu mp %lu\n", kms_pages,
774                        ra->ra_max_read_ahead_whole_pages, ra->ra_max_pages_per_file);
775
776                 if (kms_pages &&
777                     kms_pages <= ra->ra_max_read_ahead_whole_pages) {
778                         ras->ras_window_start = 0;
779                         ras->ras_next_readahead = index + 1;
780                         ras->ras_window_len = min(ra->ra_max_pages_per_file,
781                                 ra->ra_max_read_ahead_whole_pages);
782                         GOTO(out_unlock, 0);
783                 }
784         }
785         if (zero) {
786                 /* check whether it is in stride I/O mode*/
787                 if (!index_in_stride_window(ras, index)) {
788                         if (ras->ras_consecutive_stride_requests == 0 &&
789                             ras->ras_request_index == 0) {
790                                 ras_update_stride_detector(ras, index);
791                                 ras->ras_consecutive_stride_requests++;
792                         } else {
793                                 ras_stride_reset(ras);
794                         }
795                         ras_reset(inode, ras, index);
796                         ras->ras_consecutive_pages++;
797                         GOTO(out_unlock, 0);
798                 } else {
799                         ras->ras_consecutive_pages = 0;
800                         ras->ras_consecutive_requests = 0;
801                         if (++ras->ras_consecutive_stride_requests > 1)
802                                 stride_detect = 1;
803                         RAS_CDEBUG(ras);
804                 }
805         } else {
806                 if (ra_miss) {
807                         if (index_in_stride_window(ras, index) &&
808                             stride_io_mode(ras)) {
809                                 /*If stride-RA hit cache miss, the stride dector
810                                  *will not be reset to avoid the overhead of
811                                  *redetecting read-ahead mode */
812                                 if (index != ras->ras_last_readpage + 1)
813                                         ras->ras_consecutive_pages = 0;
814                                 ras_reset(inode, ras, index);
815                                 RAS_CDEBUG(ras);
816                         } else {
817                                 /* Reset both stride window and normal RA
818                                  * window */
819                                 ras_reset(inode, ras, index);
820                                 ras->ras_consecutive_pages++;
821                                 ras_stride_reset(ras);
822                                 GOTO(out_unlock, 0);
823                         }
824                 } else if (stride_io_mode(ras)) {
825                         /* If this is contiguous read but in stride I/O mode
826                          * currently, check whether stride step still is valid,
827                          * if invalid, it will reset the stride ra window*/
828                         if (!index_in_stride_window(ras, index)) {
829                                 /* Shrink stride read-ahead window to be zero */
830                                 ras_stride_reset(ras);
831                                 ras->ras_window_len = 0;
832                                 ras->ras_next_readahead = index;
833                         }
834                 }
835         }
836         ras->ras_consecutive_pages++;
837         ras->ras_last_readpage = index;
838         ras_set_start(inode, ras, index);
839
840         if (stride_io_mode(ras)) {
841                 /* Since stride readahead is sentivite to the offset
842                  * of read-ahead, so we use original offset here,
843                  * instead of ras_window_start, which is RPC aligned */
844                 ras->ras_next_readahead = max(index, ras->ras_next_readahead);
845                 ras->ras_window_start = max(ras->ras_stride_offset,
846                                             ras->ras_window_start);
847         } else {
848                 if (ras->ras_next_readahead < ras->ras_window_start)
849                         ras->ras_next_readahead = ras->ras_window_start;
850                 if (!hit)
851                         ras->ras_next_readahead = index + 1;
852         }
853         RAS_CDEBUG(ras);
854
855         /* Trigger RA in the mmap case where ras_consecutive_requests
856          * is not incremented and thus can't be used to trigger RA */
857         if (ras->ras_consecutive_pages >= 4 && flags & LL_RAS_MMAP) {
858                 ras_increase_window(inode, ras, ra);
859                 /* reset consecutive pages so that the readahead window can
860                  * grow gradually. */
861                 ras->ras_consecutive_pages = 0;
862                 GOTO(out_unlock, 0);
863         }
864
865         /* Initially reset the stride window offset to next_readahead*/
866         if (ras->ras_consecutive_stride_requests == 2 && stride_detect) {
867                 /**
868                  * Once stride IO mode is detected, next_readahead should be
869                  * reset to make sure next_readahead > stride offset
870                  */
871                 ras->ras_next_readahead = max(index, ras->ras_next_readahead);
872                 ras->ras_stride_offset = index;
873                 ras->ras_window_start = max(index, ras->ras_window_start);
874         }
875
876         /* The initial ras_window_len is set to the request size.  To avoid
877          * uselessly reading and discarding pages for random IO the window is
878          * only increased once per consecutive request received. */
879         if ((ras->ras_consecutive_requests > 1 || stride_detect) &&
880             !ras->ras_request_index)
881                 ras_increase_window(inode, ras, ra);
882         EXIT;
883 out_unlock:
884         RAS_CDEBUG(ras);
885         ras->ras_request_index++;
886         spin_unlock(&ras->ras_lock);
887         return;
888 }
889
890 int ll_writepage(struct page *vmpage, struct writeback_control *wbc)
891 {
892         struct inode           *inode = vmpage->mapping->host;
893         struct ll_inode_info   *lli   = ll_i2info(inode);
894         struct lu_env          *env;
895         struct cl_io           *io;
896         struct cl_page         *page;
897         struct cl_object       *clob;
898         bool redirtied = false;
899         bool unlocked = false;
900         int result;
901         __u16 refcheck;
902         ENTRY;
903
904         LASSERT(PageLocked(vmpage));
905         LASSERT(!PageWriteback(vmpage));
906
907         LASSERT(ll_i2dtexp(inode) != NULL);
908
909         env = cl_env_get(&refcheck);
910         if (IS_ERR(env))
911                 GOTO(out, result = PTR_ERR(env));
912
913         clob  = ll_i2info(inode)->lli_clob;
914         LASSERT(clob != NULL);
915
916         io = vvp_env_thread_io(env);
917         io->ci_obj = clob;
918         io->ci_ignore_layout = 1;
919         result = cl_io_init(env, io, CIT_MISC, clob);
920         if (result == 0) {
921                 page = cl_page_find(env, clob, vmpage->index,
922                                     vmpage, CPT_CACHEABLE);
923                 if (!IS_ERR(page)) {
924                         lu_ref_add(&page->cp_reference, "writepage",
925                                    current);
926                         cl_page_assume(env, io, page);
927                         result = cl_page_flush(env, io, page);
928                         if (result != 0) {
929                                 /*
930                                  * Re-dirty page on error so it retries write,
931                                  * but not in case when IO has actually
932                                  * occurred and completed with an error.
933                                  */
934                                 if (!PageError(vmpage)) {
935                                         redirty_page_for_writepage(wbc, vmpage);
936                                         result = 0;
937                                         redirtied = true;
938                                 }
939                         }
940                         cl_page_disown(env, io, page);
941                         unlocked = true;
942                         lu_ref_del(&page->cp_reference,
943                                    "writepage", current);
944                         cl_page_put(env, page);
945                 } else {
946                         result = PTR_ERR(page);
947                 }
948         }
949         cl_io_fini(env, io);
950
951         if (redirtied && wbc->sync_mode == WB_SYNC_ALL) {
952                 loff_t offset = cl_offset(clob, vmpage->index);
953
954                 /* Flush page failed because the extent is being written out.
955                  * Wait for the write of extent to be finished to avoid
956                  * breaking kernel which assumes ->writepage should mark
957                  * PageWriteback or clean the page. */
958                 result = cl_sync_file_range(inode, offset,
959                                             offset + PAGE_SIZE - 1,
960                                             CL_FSYNC_LOCAL, 1);
961                 if (result > 0) {
962                         /* actually we may have written more than one page.
963                          * decreasing this page because the caller will count
964                          * it. */
965                         wbc->nr_to_write -= result - 1;
966                         result = 0;
967                 }
968         }
969
970         cl_env_put(env, &refcheck);
971         GOTO(out, result);
972
973 out:
974         if (result < 0) {
975                 if (!lli->lli_async_rc)
976                         lli->lli_async_rc = result;
977                 SetPageError(vmpage);
978                 if (!unlocked)
979                         unlock_page(vmpage);
980         }
981         return result;
982 }
983
984 int ll_writepages(struct address_space *mapping, struct writeback_control *wbc)
985 {
986         struct inode *inode = mapping->host;
987         struct ll_sb_info *sbi = ll_i2sbi(inode);
988         loff_t start;
989         loff_t end;
990         enum cl_fsync_mode mode;
991         int range_whole = 0;
992         int result;
993         int ignore_layout = 0;
994         ENTRY;
995
996         if (wbc->range_cyclic) {
997                 start = mapping->writeback_index << PAGE_SHIFT;
998                 end = OBD_OBJECT_EOF;
999         } else {
1000                 start = wbc->range_start;
1001                 end = wbc->range_end;
1002                 if (end == LLONG_MAX) {
1003                         end = OBD_OBJECT_EOF;
1004                         range_whole = start == 0;
1005                 }
1006         }
1007
1008         mode = CL_FSYNC_NONE;
1009         if (wbc->sync_mode == WB_SYNC_ALL)
1010                 mode = CL_FSYNC_LOCAL;
1011
1012         if (sbi->ll_umounting)
1013                 /* if the mountpoint is being umounted, all pages have to be
1014                  * evicted to avoid hitting LBUG when truncate_inode_pages()
1015                  * is called later on. */
1016                 ignore_layout = 1;
1017
1018         if (ll_i2info(inode)->lli_clob == NULL)
1019                 RETURN(0);
1020
1021         result = cl_sync_file_range(inode, start, end, mode, ignore_layout);
1022         if (result > 0) {
1023                 wbc->nr_to_write -= result;
1024                 result = 0;
1025          }
1026
1027         if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) {
1028                 if (end == OBD_OBJECT_EOF)
1029                         mapping->writeback_index = 0;
1030                 else
1031                         mapping->writeback_index = (end >> PAGE_SHIFT) + 1;
1032         }
1033         RETURN(result);
1034 }
1035
1036 struct ll_cl_context *ll_cl_find(struct file *file)
1037 {
1038         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1039         struct ll_cl_context *lcc;
1040         struct ll_cl_context *found = NULL;
1041
1042         read_lock(&fd->fd_lock);
1043         list_for_each_entry(lcc, &fd->fd_lccs, lcc_list) {
1044                 if (lcc->lcc_cookie == current) {
1045                         found = lcc;
1046                         break;
1047                 }
1048         }
1049         read_unlock(&fd->fd_lock);
1050
1051         return found;
1052 }
1053
1054 void ll_cl_add(struct file *file, const struct lu_env *env, struct cl_io *io,
1055                enum lcc_type type)
1056 {
1057         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1058         struct ll_cl_context *lcc = &ll_env_info(env)->lti_io_ctx;
1059
1060         memset(lcc, 0, sizeof(*lcc));
1061         INIT_LIST_HEAD(&lcc->lcc_list);
1062         lcc->lcc_cookie = current;
1063         lcc->lcc_env = env;
1064         lcc->lcc_io = io;
1065         lcc->lcc_type = type;
1066
1067         write_lock(&fd->fd_lock);
1068         list_add(&lcc->lcc_list, &fd->fd_lccs);
1069         write_unlock(&fd->fd_lock);
1070 }
1071
1072 void ll_cl_remove(struct file *file, const struct lu_env *env)
1073 {
1074         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1075         struct ll_cl_context *lcc = &ll_env_info(env)->lti_io_ctx;
1076
1077         write_lock(&fd->fd_lock);
1078         list_del_init(&lcc->lcc_list);
1079         write_unlock(&fd->fd_lock);
1080 }
1081
1082 static int ll_io_read_page(const struct lu_env *env, struct cl_io *io,
1083                            struct cl_page *page, struct file *file)
1084 {
1085         struct inode              *inode  = vvp_object_inode(page->cp_obj);
1086         struct ll_sb_info         *sbi    = ll_i2sbi(inode);
1087         struct ll_file_data       *fd     = LUSTRE_FPRIVATE(file);
1088         struct ll_readahead_state *ras    = &fd->fd_ras;
1089         struct cl_2queue          *queue  = &io->ci_queue;
1090         struct vvp_page           *vpg;
1091         int                        rc = 0;
1092         bool                       uptodate;
1093         ENTRY;
1094
1095         vpg = cl2vvp_page(cl_object_page_slice(page->cp_obj, page));
1096         uptodate = vpg->vpg_defer_uptodate;
1097
1098         if (sbi->ll_ra_info.ra_max_pages_per_file > 0 &&
1099             sbi->ll_ra_info.ra_max_pages > 0 &&
1100             !vpg->vpg_ra_updated) {
1101                 struct vvp_io *vio = vvp_env_io(env);
1102                 enum ras_update_flags flags = 0;
1103
1104                 if (uptodate)
1105                         flags |= LL_RAS_HIT;
1106                 if (!vio->vui_ra_valid)
1107                         flags |= LL_RAS_MMAP;
1108                 ras_update(sbi, inode, ras, vvp_index(vpg), flags);
1109         }
1110
1111         cl_2queue_init(queue);
1112         if (uptodate) {
1113                 vpg->vpg_ra_used = 1;
1114                 cl_page_export(env, page, 1);
1115                 cl_page_disown(env, io, page);
1116         } else {
1117                 cl_2queue_add(queue, page);
1118         }
1119
1120         if (sbi->ll_ra_info.ra_max_pages_per_file > 0 &&
1121             sbi->ll_ra_info.ra_max_pages > 0) {
1122                 int rc2;
1123
1124                 rc2 = ll_readahead(env, io, &queue->c2_qin, ras,
1125                                    uptodate);
1126                 CDEBUG(D_READA, DFID "%d pages read ahead at %lu\n",
1127                        PFID(ll_inode2fid(inode)), rc2, vvp_index(vpg));
1128         }
1129
1130         if (queue->c2_qin.pl_nr > 0)
1131                 rc = cl_io_submit_rw(env, io, CRT_READ, queue);
1132
1133         /*
1134          * Unlock unsent pages in case of error.
1135          */
1136         cl_page_list_disown(env, io, &queue->c2_qin);
1137         cl_2queue_fini(env, queue);
1138
1139         RETURN(rc);
1140 }
1141
1142 int ll_readpage(struct file *file, struct page *vmpage)
1143 {
1144         struct inode *inode = file_inode(file);
1145         struct cl_object *clob = ll_i2info(inode)->lli_clob;
1146         struct ll_cl_context *lcc;
1147         const struct lu_env  *env;
1148         struct cl_io   *io;
1149         struct cl_page *page;
1150         int result;
1151         ENTRY;
1152
1153         lcc = ll_cl_find(file);
1154         if (lcc == NULL) {
1155                 unlock_page(vmpage);
1156                 RETURN(-EIO);
1157         }
1158
1159         env = lcc->lcc_env;
1160         io  = lcc->lcc_io;
1161         if (io == NULL) { /* fast read */
1162                 struct inode *inode = file_inode(file);
1163                 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1164                 struct ll_readahead_state *ras = &fd->fd_ras;
1165                 struct vvp_page *vpg;
1166
1167                 result = -ENODATA;
1168
1169                 /* TODO: need to verify the layout version to make sure
1170                  * the page is not invalid due to layout change. */
1171                 page = cl_vmpage_page(vmpage, clob);
1172                 if (page == NULL) {
1173                         unlock_page(vmpage);
1174                         RETURN(result);
1175                 }
1176
1177                 vpg = cl2vvp_page(cl_object_page_slice(page->cp_obj, page));
1178                 if (vpg->vpg_defer_uptodate) {
1179                         enum ras_update_flags flags = LL_RAS_HIT;
1180
1181                         if (lcc->lcc_type == LCC_MMAP)
1182                                 flags |= LL_RAS_MMAP;
1183
1184                         /* For fast read, it updates read ahead state only
1185                          * if the page is hit in cache because non cache page
1186                          * case will be handled by slow read later. */
1187                         ras_update(ll_i2sbi(inode), inode, ras, vvp_index(vpg),
1188                                    flags);
1189                         /* avoid duplicate ras_update() call */
1190                         vpg->vpg_ra_updated = 1;
1191
1192                         /* Check if we can issue a readahead RPC, if that is
1193                          * the case, we can't do fast IO because we will need
1194                          * a cl_io to issue the RPC. */
1195                         if (ras->ras_window_start + ras->ras_window_len <
1196                             ras->ras_next_readahead + PTLRPC_MAX_BRW_PAGES) {
1197                                 /* export the page and skip io stack */
1198                                 vpg->vpg_ra_used = 1;
1199                                 cl_page_export(env, page, 1);
1200                                 result = 0;
1201                         }
1202                 }
1203
1204                 unlock_page(vmpage);
1205                 cl_page_put(env, page);
1206                 RETURN(result);
1207         }
1208
1209         LASSERT(io->ci_state == CIS_IO_GOING);
1210         page = cl_page_find(env, clob, vmpage->index, vmpage, CPT_CACHEABLE);
1211         if (!IS_ERR(page)) {
1212                 LASSERT(page->cp_type == CPT_CACHEABLE);
1213                 if (likely(!PageUptodate(vmpage))) {
1214                         cl_page_assume(env, io, page);
1215                         result = ll_io_read_page(env, io, page, file);
1216                 } else {
1217                         /* Page from a non-object file. */
1218                         unlock_page(vmpage);
1219                         result = 0;
1220                 }
1221                 cl_page_put(env, page);
1222         } else {
1223                 unlock_page(vmpage);
1224                 result = PTR_ERR(page);
1225         }
1226         RETURN(result);
1227 }
1228
1229 int ll_page_sync_io(const struct lu_env *env, struct cl_io *io,
1230                     struct cl_page *page, enum cl_req_type crt)
1231 {
1232         struct cl_2queue  *queue;
1233         int result;
1234
1235         LASSERT(io->ci_type == CIT_READ || io->ci_type == CIT_WRITE);
1236
1237         queue = &io->ci_queue;
1238         cl_2queue_init_page(queue, page);
1239
1240         result = cl_io_submit_sync(env, io, crt, queue, 0);
1241         LASSERT(cl_page_is_owned(page, io));
1242
1243         if (crt == CRT_READ)
1244                 /*
1245                  * in CRT_WRITE case page is left locked even in case of
1246                  * error.
1247                  */
1248                 cl_page_list_disown(env, io, &queue->c2_qin);
1249         cl_2queue_fini(env, queue);
1250
1251         return result;
1252 }