Whamcloud - gitweb
b=20595
[fs/lustre-release.git] / lustre / llite / rw.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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/autoconf.h>
42 #include <linux/kernel.h>
43 #include <linux/mm.h>
44 #include <linux/string.h>
45 #include <linux/stat.h>
46 #include <linux/errno.h>
47 #include <linux/smp_lock.h>
48 #include <linux/unistd.h>
49 #include <linux/version.h>
50 #include <asm/system.h>
51 #include <asm/uaccess.h>
52
53 #include <linux/fs.h>
54 #include <linux/stat.h>
55 #include <asm/uaccess.h>
56 #include <linux/mm.h>
57 #include <linux/pagemap.h>
58 #include <linux/smp_lock.h>
59 /* current_is_kswapd() */
60 #include <linux/swap.h>
61
62 #define DEBUG_SUBSYSTEM S_LLITE
63
64 //#include <lustre_mdc.h>
65 #include <lustre_lite.h>
66 #include <obd_cksum.h>
67 #include "llite_internal.h"
68 #include <linux/lustre_compat25.h>
69
70 /* this isn't where truncate starts.   roughly:
71  * sys_truncate->ll_setattr_raw->vmtruncate->ll_truncate. setattr_raw grabs
72  * DLM lock on [size, EOF], i_mutex, ->lli_size_sem, and WRITE_I_ALLOC_SEM to
73  * avoid races.
74  *
75  * must be called under ->lli_size_sem */
76 void ll_truncate(struct inode *inode)
77 {
78         struct ll_inode_info *lli = ll_i2info(inode);
79         loff_t new_size;
80         ENTRY;
81         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p) to %Lu=%#Lx\n",inode->i_ino,
82                inode->i_generation, inode, i_size_read(inode),
83                i_size_read(inode));
84
85         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_TRUNC, 1);
86         if (lli->lli_size_sem_owner != cfs_current()) {
87                 EXIT;
88                 return;
89         }
90
91         if (!lli->lli_smd) {
92                 CDEBUG(D_INODE, "truncate on inode %lu with no objects\n",
93                        inode->i_ino);
94                 GOTO(out_unlock, 0);
95         }
96         LASSERT_SEM_LOCKED(&lli->lli_size_sem);
97
98         if (unlikely((ll_i2sbi(inode)->ll_flags & LL_SBI_CHECKSUM) &&
99                      (i_size_read(inode) & ~CFS_PAGE_MASK))) {
100                 /* If the truncate leaves a partial page, update its checksum */
101                 struct page *page = find_get_page(inode->i_mapping,
102                                                   i_size_read(inode) >>
103                                                   CFS_PAGE_SHIFT);
104                 if (page != NULL) {
105 #if 0 /* XXX */
106                         struct ll_async_page *llap = llap_cast_private(page);
107                         if (llap != NULL) {
108                                 char *kaddr = kmap_atomic(page, KM_USER0);
109                                 llap->llap_checksum =
110                                         init_checksum(OSC_DEFAULT_CKSUM);
111                                 llap->llap_checksum =
112                                         compute_checksum(llap->llap_checksum,
113                                                          kaddr, CFS_PAGE_SIZE,
114                                                          OSC_DEFAULT_CKSUM);
115                                 kunmap_atomic(kaddr, KM_USER0);
116                         }
117                         page_cache_release(page);
118 #endif
119                 }
120         }
121
122         new_size = i_size_read(inode);
123         ll_inode_size_unlock(inode, 0);
124
125         EXIT;
126         return;
127
128  out_unlock:
129         ll_inode_size_unlock(inode, 0);
130 } /* ll_truncate */
131
132 /**
133  * Initializes common cl-data at the typical address_space operation entry
134  * point.
135  */
136 static int ll_cl_init(struct file *file, struct page *vmpage,
137                       struct lu_env **env,
138                       struct cl_io **io, struct cl_page **page, int *refcheck)
139 {
140         struct lu_env    *_env;
141         struct cl_io     *_io;
142         struct cl_page   *_page;
143         struct cl_object *clob;
144
145         int result;
146
147         *env  = NULL;
148         *io   = NULL;
149         *page = NULL;
150
151         clob = ll_i2info(vmpage->mapping->host)->lli_clob;
152         LASSERT(clob != NULL);
153
154         _env = cl_env_get(refcheck);
155         if (!IS_ERR(env)) {
156                 struct ccc_io *cio = ccc_env_io(_env);
157
158                 *env = _env;
159                 *io  = _io = cio->cui_cl.cis_io;
160                 if (_io != NULL) {
161                         LASSERT(_io->ci_state == CIS_IO_GOING);
162                         LASSERT(cio->cui_fd == LUSTRE_FPRIVATE(file));
163                         _page = cl_page_find(_env, clob, vmpage->index, vmpage,
164                                              CPT_CACHEABLE);
165                         if (!IS_ERR(_page)) {
166                                 *page = _page;
167                                 lu_ref_add(&_page->cp_reference, "cl_io", _io);
168                                 result = 0;
169                         } else
170                                 result = PTR_ERR(_page);
171                 } else
172                         /*
173                          * This is for a case where operation can be called
174                          * either with or without cl_io created by the upper
175                          * layer (e.g., ->prepare_write() called directly from
176                          * loop-back driver).
177                          */
178                         result = -EALREADY;
179         } else
180                 result = PTR_ERR(_env);
181         CDEBUG(D_VFSTRACE, "%lu@"DFID" -> %i %p %p %p\n",
182                vmpage->index, PFID(lu_object_fid(&clob->co_lu)), result,
183                *env, *io, *page);
184         return result;
185 }
186
187 /**
188  * Finalizes cl-data before exiting typical address_space operation. Dual to
189  * ll_cl_init().
190  */
191 static void ll_cl_fini(struct lu_env *env,
192                        struct cl_io *io, struct cl_page *page, int *refcheck)
193 {
194         if (page != NULL) {
195                 lu_ref_del(&page->cp_reference, "cl_io", io);
196                 cl_page_put(env, page);
197         }
198         if (env != NULL) {
199                 struct vvp_io *vio;
200
201                 vio = vvp_env_io(env);
202                 LASSERT(vio->cui_oneshot >= 0);
203                 if (vio->cui_oneshot > 0) {
204                         if (--vio->cui_oneshot == 0) {
205                                 cl_io_end(env, io);
206                                 cl_io_unlock(env, io);
207                                 cl_io_iter_fini(env, io);
208                                 cl_io_fini(env, io);
209                                 /* to trigger assertion above, if ll_cl_fini()
210                                  * is called against freed io. */
211                                 vio->cui_oneshot = -1;
212                         }
213                         /* additional reference on env was acquired by io,
214                          * disable refcheck */
215                         refcheck = NULL;
216                 }
217                 cl_env_put(env, refcheck);
218         } else
219                 LASSERT(io == NULL);
220 }
221
222 /**
223  * Initializes one-shot cl_io for the case when loop driver calls
224  * ->{prepare,commit}_write() methods directly.
225  */
226 static int ll_prepare_loop(struct lu_env *env, struct cl_io *io,
227                            struct file *file, struct page *vmpage,
228                            unsigned from, unsigned to)
229 {
230         struct vvp_io *vio;
231         struct ccc_io *cio;
232         int result;
233         loff_t pos;
234
235         vio = vvp_env_io(env);
236         cio = ccc_env_io(env);
237         ll_io_init(io, file, 1);
238         pos = (vmpage->index << CFS_PAGE_SHIFT) + from;
239         /*
240          * Create IO and quickly drive it through CIS_{INIT,IT_STARTED,LOCKED}
241          * states. DLM locks are not taken for vio->cui_oneshot IO---we cannot
242          * take DLM locks here, because page is already locked. With new
243          * ->write_{being,end}() address_space operations lustre might be
244          * luckier.
245          */
246         result = cl_io_rw_init(env, io, CIT_WRITE, pos, from - to);
247         if (result == 0) {
248                 cio->cui_fd = LUSTRE_FPRIVATE(file);
249                 vio->cui_oneshot = 1;
250                 result = cl_io_iter_init(env, io);
251                 if (result == 0) {
252                         result = cl_io_lock(env, io);
253                         if (result == 0)
254                                 result = cl_io_start(env, io);
255                 }
256         } else
257                 result = io->ci_result;
258         return result;
259 }
260
261 /**
262  * ->prepare_write() address space operation called by generic_file_write()
263  * for every page during write.
264  */
265 int ll_prepare_write(struct file *file, struct page *vmpage, unsigned from,
266                      unsigned to)
267 {
268         struct lu_env    *env;
269         struct cl_io     *io;
270         struct cl_page   *page;
271         int result;
272         int refcheck;
273         ENTRY;
274
275         result = ll_cl_init(file, vmpage, &env, &io, &page, &refcheck);
276         /*
277          * Loop-back driver calls ->prepare_write() and ->sendfile() methods
278          * directly, bypassing file system ->write() operation, so cl_io has
279          * to be created here.
280          */
281         if (result == -EALREADY) {
282                 io = &ccc_env_info(env)->cti_io;
283                 result = ll_prepare_loop(env, io, file, vmpage, from, to);
284                 if (result == 0) {
285                         result = ll_cl_init(file, vmpage,
286                                             &env, &io, &page, &refcheck);
287                         cl_env_put(env, NULL);
288                 }
289         }
290         if (result == 0) {
291                 cl_page_assume(env, io, page);
292                 if (cl_io_is_append(io)) {
293                         struct cl_object   *obj   = io->ci_obj;
294                         struct inode       *inode = ccc_object_inode(obj);
295                         /**
296                          * In VFS file->page write loop, for appending, the
297                          * write offset might be reset according to the new
298                          * file size before holding i_mutex. So crw_pos should
299                          * be reset here. BUG:17711.
300                          */
301                         io->u.ci_wr.wr.crw_pos = i_size_read(inode);
302                 }
303                 result = cl_io_prepare_write(env, io, page, from, to);
304                 if (result == 0) {
305                         struct vvp_io *vio;
306
307                         /*
308                          * Add a reference, so that page is not evicted from
309                          * the cache until ->commit_write() is called.
310                          */
311                         cl_page_get(page);
312                         lu_ref_add(&page->cp_reference, "prepare_write",
313                                    cfs_current());
314                         vio = vvp_env_io(env);
315                         if (vio->cui_oneshot > 0)
316                                 vio->cui_oneshot++;
317                 } else
318                         cl_page_unassume(env, io, page);
319         }
320         ll_cl_fini(env, io, page, &refcheck);
321         RETURN(result);
322 }
323
324 int ll_commit_write(struct file *file, struct page *vmpage, unsigned from,
325                     unsigned to)
326 {
327         struct lu_env    *env;
328         struct cl_io     *io;
329         struct cl_page   *page;
330         int result;
331         int refcheck;
332         ENTRY;
333
334         result = ll_cl_init(file, vmpage, &env, &io, &page, &refcheck);
335         LASSERT(result != -EALREADY);
336         if (result == 0) {
337                 LASSERT(cl_page_is_owned(page, io));
338                 result = cl_io_commit_write(env, io, page, from, to);
339                 if (cl_page_is_owned(page, io))
340                         cl_page_unassume(env, io, page);
341                 /*
342                  * Release reference acquired by cl_io_prepare_write().
343                  */
344                 lu_ref_del(&page->cp_reference, "prepare_write", cfs_current());
345                 cl_page_put(env, page);
346         }
347         ll_cl_fini(env, io, page, &refcheck);
348         RETURN(result);
349 }
350
351 struct obd_capa *cl_capa_lookup(struct inode *inode, enum cl_req_type crt)
352 {
353         __u64 opc;
354
355         opc = crt == CRT_WRITE ? CAPA_OPC_OSS_WRITE : CAPA_OPC_OSS_RW;
356         return ll_osscapa_get(inode, opc);
357 }
358
359 static void ll_ra_stats_inc_sbi(struct ll_sb_info *sbi, enum ra_stat which);
360
361 /* WARNING: This algorithm is used to reduce the contention on
362  * sbi->ll_lock. It should work well if the ra_max_pages is much
363  * greater than the single file's read-ahead window.
364  *
365  * TODO: There may exist a `global sync problem' in this implementation.
366  * Considering the global ra window is 100M, and each file's ra window is 10M,
367  * there are over 10 files trying to get its ra budget and reach
368  * ll_ra_count_get at the exactly same time. All of them will get a zero ra
369  * window, although the global window is 100M. -jay
370  */
371 static unsigned long ll_ra_count_get(struct ll_sb_info *sbi, unsigned long len)
372 {
373         struct ll_ra_info *ra = &sbi->ll_ra_info;
374         unsigned long ret;
375         ENTRY;
376
377         /**
378          * If read-ahead pages left are less than 1M, do not do read-ahead,
379          * otherwise it will form small read RPC(< 1M), which hurt server
380          * performance a lot.
381          */
382         ret = min(ra->ra_max_pages - atomic_read(&ra->ra_cur_pages), len);
383         if ((int)ret < 0 || ret < min((unsigned long)PTLRPC_MAX_BRW_PAGES, len))
384                 GOTO(out, ret = 0);
385
386         if (atomic_add_return(ret, &ra->ra_cur_pages) > ra->ra_max_pages) {
387                 atomic_sub(ret, &ra->ra_cur_pages);
388                 ret = 0;
389         }
390 out:
391         RETURN(ret);
392 }
393
394 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len)
395 {
396         struct ll_ra_info *ra = &sbi->ll_ra_info;
397         atomic_sub(len, &ra->ra_cur_pages);
398 }
399
400 static void ll_ra_stats_inc_sbi(struct ll_sb_info *sbi, enum ra_stat which)
401 {
402         LASSERTF(which >= 0 && which < _NR_RA_STAT, "which: %u\n", which);
403         lprocfs_counter_incr(sbi->ll_ra_stats, which);
404 }
405
406 void ll_ra_stats_inc(struct address_space *mapping, enum ra_stat which)
407 {
408         struct ll_sb_info *sbi = ll_i2sbi(mapping->host);
409         ll_ra_stats_inc_sbi(sbi, which);
410 }
411
412 #define RAS_CDEBUG(ras) \
413         CDEBUG(D_READA,                                                      \
414                "lrp %lu cr %lu cp %lu ws %lu wl %lu nra %lu r %lu ri %lu"    \
415                "csr %lu sf %lu sp %lu sl %lu \n",                            \
416                ras->ras_last_readpage, ras->ras_consecutive_requests,        \
417                ras->ras_consecutive_pages, ras->ras_window_start,            \
418                ras->ras_window_len, ras->ras_next_readahead,                 \
419                ras->ras_requests, ras->ras_request_index,                    \
420                ras->ras_consecutive_stride_requests, ras->ras_stride_offset, \
421                ras->ras_stride_pages, ras->ras_stride_length)
422
423 static int index_in_window(unsigned long index, unsigned long point,
424                            unsigned long before, unsigned long after)
425 {
426         unsigned long start = point - before, end = point + after;
427
428         if (start > point)
429                start = 0;
430         if (end < point)
431                end = ~0;
432
433         return start <= index && index <= end;
434 }
435
436 static struct ll_readahead_state *ll_ras_get(struct file *f)
437 {
438         struct ll_file_data       *fd;
439
440         fd = LUSTRE_FPRIVATE(f);
441         return &fd->fd_ras;
442 }
443
444 void ll_ra_read_in(struct file *f, struct ll_ra_read *rar)
445 {
446         struct ll_readahead_state *ras;
447
448         ras = ll_ras_get(f);
449
450         spin_lock(&ras->ras_lock);
451         ras->ras_requests++;
452         ras->ras_request_index = 0;
453         ras->ras_consecutive_requests++;
454         rar->lrr_reader = current;
455
456         list_add(&rar->lrr_linkage, &ras->ras_read_beads);
457         spin_unlock(&ras->ras_lock);
458 }
459
460 void ll_ra_read_ex(struct file *f, struct ll_ra_read *rar)
461 {
462         struct ll_readahead_state *ras;
463
464         ras = ll_ras_get(f);
465
466         spin_lock(&ras->ras_lock);
467         list_del_init(&rar->lrr_linkage);
468         spin_unlock(&ras->ras_lock);
469 }
470
471 static struct ll_ra_read *ll_ra_read_get_locked(struct ll_readahead_state *ras)
472 {
473         struct ll_ra_read *scan;
474
475         list_for_each_entry(scan, &ras->ras_read_beads, lrr_linkage) {
476                 if (scan->lrr_reader == current)
477                         return scan;
478         }
479         return NULL;
480 }
481
482 struct ll_ra_read *ll_ra_read_get(struct file *f)
483 {
484         struct ll_readahead_state *ras;
485         struct ll_ra_read         *bead;
486
487         ras = ll_ras_get(f);
488
489         spin_lock(&ras->ras_lock);
490         bead = ll_ra_read_get_locked(ras);
491         spin_unlock(&ras->ras_lock);
492         return bead;
493 }
494
495 static int cl_read_ahead_page(const struct lu_env *env, struct cl_io *io,
496                               struct cl_page_list *queue, struct cl_page *page,
497                               struct page *vmpage)
498 {
499         struct ccc_page *cp;
500         int              rc;
501
502         ENTRY;
503
504         rc = 0;
505         cl_page_assume(env, io, page);
506         lu_ref_add(&page->cp_reference, "ra", cfs_current());
507         cp = cl2ccc_page(cl_page_at(page, &vvp_device_type));
508         if (!cp->cpg_defer_uptodate && !Page_Uptodate(vmpage)) {
509                 rc = cl_page_is_under_lock(env, io, page);
510                 if (rc == -EBUSY) {
511                         cp->cpg_defer_uptodate = 1;
512                         cp->cpg_ra_used = 0;
513                         cl_page_list_add(queue, page);
514                         rc = 1;
515                 } else {
516                         cl_page_delete(env, page);
517                         rc = -ENOLCK;
518                 }
519         } else
520                 /* skip completed pages */
521                 cl_page_unassume(env, io, page);
522         lu_ref_del(&page->cp_reference, "ra", cfs_current());
523         cl_page_put(env, page);
524         RETURN(rc);
525 }
526
527 /**
528  * Initiates read-ahead of a page with given index.
529  *
530  * \retval     +ve: page was added to \a queue.
531  *
532  * \retval -ENOLCK: there is no extent lock for this part of a file, stop
533  *                  read-ahead.
534  *
535  * \retval  -ve, 0: page wasn't added to \a queue for other reason.
536  */
537 static int ll_read_ahead_page(const struct lu_env *env, struct cl_io *io,
538                               struct cl_page_list *queue,
539                               int index, struct address_space *mapping)
540 {
541         struct page      *vmpage;
542         struct cl_object *clob  = ll_i2info(mapping->host)->lli_clob;
543         struct cl_page   *page;
544         enum ra_stat      which = _NR_RA_STAT; /* keep gcc happy */
545         unsigned int      gfp_mask;
546         int               rc    = 0;
547         const char       *msg   = NULL;
548
549         ENTRY;
550
551         gfp_mask = GFP_HIGHUSER & ~__GFP_WAIT;
552 #ifdef __GFP_NOWARN
553         gfp_mask |= __GFP_NOWARN;
554 #endif
555         vmpage = grab_cache_page_nowait_gfp(mapping, index, gfp_mask);
556         if (vmpage != NULL) {
557                 /* Check if vmpage was truncated or reclaimed */
558                 if (vmpage->mapping == mapping) {
559                         page = cl_page_find(env, clob, vmpage->index,
560                                             vmpage, CPT_CACHEABLE);
561                         if (!IS_ERR(page)) {
562                                 rc = cl_read_ahead_page(env, io, queue,
563                                                         page, vmpage);
564                                 if (rc == -ENOLCK) {
565                                         which = RA_STAT_FAILED_MATCH;
566                                         msg   = "lock match failed";
567                                 }
568                         } else {
569                                 which = RA_STAT_FAILED_GRAB_PAGE;
570                                 msg   = "cl_page_find failed";
571                         }
572                 } else {
573                         which = RA_STAT_WRONG_GRAB_PAGE;
574                         msg   = "g_c_p_n returned invalid page";
575                 }
576                 if (rc != 1)
577                         unlock_page(vmpage);
578                 page_cache_release(vmpage);
579         } else {
580                 which = RA_STAT_FAILED_GRAB_PAGE;
581                 msg   = "g_c_p_n failed";
582         }
583         if (msg != NULL) {
584                 ll_ra_stats_inc(mapping, which);
585                 CDEBUG(D_READA, "%s\n", msg);
586         }
587         RETURN(rc);
588 }
589
590 #define RIA_DEBUG(ria)                                                       \
591         CDEBUG(D_READA, "rs %lu re %lu ro %lu rl %lu rp %lu\n",       \
592         ria->ria_start, ria->ria_end, ria->ria_stoff, ria->ria_length,\
593         ria->ria_pages)
594
595 #define RAS_INCREASE_STEP (1024 * 1024 >> CFS_PAGE_SHIFT)
596
597 static inline int stride_io_mode(struct ll_readahead_state *ras)
598 {
599         return ras->ras_consecutive_stride_requests > 1;
600 }
601
602 /* The function calculates how much pages will be read in
603  * [off, off + length], which will be read by stride I/O mode,
604  * stride_offset = st_off, stride_lengh = st_len,
605  * stride_pages = st_pgs
606  */
607 static unsigned long
608 stride_pg_count(pgoff_t st_off, unsigned long st_len, unsigned long st_pgs,
609                 unsigned long off, unsigned length)
610 {
611         unsigned long cont_len = st_off > off ?  st_off - off : 0;
612         __u64 stride_len = length + off > st_off ?
613                            length + off + 1 - st_off : 0;
614         unsigned long left, pg_count;
615
616         if (st_len == 0 || length == 0)
617                 return length;
618
619         left = do_div(stride_len, st_len);
620         left = min(left, st_pgs);
621
622         pg_count = left + stride_len * st_pgs + cont_len;
623
624         LASSERT(pg_count >= left);
625
626         CDEBUG(D_READA, "st_off %lu, st_len %lu st_pgs %lu off %lu length %u"
627                "pgcount %lu\n", st_off, st_len, st_pgs, off, length, pg_count);
628
629         return pg_count;
630 }
631
632 static int ria_page_count(struct ra_io_arg *ria)
633 {
634         __u64 length = ria->ria_end >= ria->ria_start ?
635                        ria->ria_end - ria->ria_start + 1 : 0;
636
637         return stride_pg_count(ria->ria_stoff, ria->ria_length,
638                                ria->ria_pages, ria->ria_start,
639                                length);
640 }
641
642 /*Check whether the index is in the defined ra-window */
643 static int ras_inside_ra_window(unsigned long idx, struct ra_io_arg *ria)
644 {
645         /* If ria_length == ria_pages, it means non-stride I/O mode,
646          * idx should always inside read-ahead window in this case
647          * For stride I/O mode, just check whether the idx is inside
648          * the ria_pages. */
649         return ria->ria_length == 0 || ria->ria_length == ria->ria_pages ||
650                (idx - ria->ria_stoff) % ria->ria_length < ria->ria_pages;
651 }
652
653 static int ll_read_ahead_pages(const struct lu_env *env,
654                                struct cl_io *io, struct cl_page_list *queue,
655                                struct ra_io_arg *ria,
656                                unsigned long *reserved_pages,
657                                struct address_space *mapping,
658                                unsigned long *ra_end)
659 {
660         int rc, count = 0, stride_ria;
661         unsigned long page_idx;
662
663         LASSERT(ria != NULL);
664         RIA_DEBUG(ria);
665
666         stride_ria = ria->ria_length > ria->ria_pages && ria->ria_pages > 0;
667         for (page_idx = ria->ria_start; page_idx <= ria->ria_end &&
668                         *reserved_pages > 0; page_idx++) {
669                 if (ras_inside_ra_window(page_idx, ria)) {
670                         /* If the page is inside the read-ahead window*/
671                         rc = ll_read_ahead_page(env, io, queue,
672                                                 page_idx, mapping);
673                         if (rc == 1) {
674                                 (*reserved_pages)--;
675                                 count ++;
676                         } else if (rc == -ENOLCK)
677                                 break;
678                 } else if (stride_ria) {
679                         /* If it is not in the read-ahead window, and it is
680                          * read-ahead mode, then check whether it should skip
681                          * the stride gap */
682                         pgoff_t offset;
683                         /* FIXME: This assertion only is valid when it is for
684                          * forward read-ahead, it will be fixed when backward
685                          * read-ahead is implemented */
686                         LASSERTF(page_idx > ria->ria_stoff, "since %lu in the"
687                                 " gap of ra window,it should bigger than stride"
688                                 " offset %lu \n", page_idx, ria->ria_stoff);
689
690                         offset = page_idx - ria->ria_stoff;
691                         offset = offset % (ria->ria_length);
692                         if (offset > ria->ria_pages) {
693                                 page_idx += ria->ria_length - offset;
694                                 CDEBUG(D_READA, "i %lu skip %lu \n", page_idx,
695                                        ria->ria_length - offset);
696                                 continue;
697                         }
698                 }
699         }
700         *ra_end = page_idx;
701         return count;
702 }
703
704 int ll_readahead(const struct lu_env *env, struct cl_io *io,
705                  struct ll_readahead_state *ras, struct address_space *mapping,
706                  struct cl_page_list *queue, int flags)
707 {
708         struct vvp_io *vio = vvp_env_io(env);
709         struct vvp_thread_info *vti = vvp_env_info(env);
710         struct cl_attr *attr = ccc_env_thread_attr(env);
711         unsigned long start = 0, end = 0, reserved;
712         unsigned long ra_end, len;
713         struct inode *inode;
714         struct ll_ra_read *bead;
715         struct ra_io_arg *ria = &vti->vti_ria;
716         struct ll_inode_info *lli;
717         struct cl_object *clob;
718         int ret = 0;
719         __u64 kms;
720         ENTRY;
721
722         inode = mapping->host;
723         lli = ll_i2info(inode);
724         clob = lli->lli_clob;
725
726         memset(ria, 0, sizeof *ria);
727
728         cl_object_attr_lock(clob);
729         ret = cl_object_attr_get(env, clob, attr);
730         cl_object_attr_unlock(clob);
731
732         if (ret != 0)
733                 RETURN(ret);
734         kms = attr->cat_kms;
735         if (kms == 0) {
736                 ll_ra_stats_inc(mapping, RA_STAT_ZERO_LEN);
737                 RETURN(0);
738         }
739
740         spin_lock(&ras->ras_lock);
741         if (vio->cui_ra_window_set)
742                 bead = &vio->cui_bead;
743         else
744                 bead = NULL;
745
746         /* Enlarge the RA window to encompass the full read */
747         if (bead != NULL && ras->ras_window_start + ras->ras_window_len <
748             bead->lrr_start + bead->lrr_count) {
749                 ras->ras_window_len = bead->lrr_start + bead->lrr_count -
750                                       ras->ras_window_start;
751         }
752         /* Reserve a part of the read-ahead window that we'll be issuing */
753         if (ras->ras_window_len) {
754                 start = ras->ras_next_readahead;
755                 end = ras->ras_window_start + ras->ras_window_len - 1;
756         }
757         if (end != 0) {
758                 /* Truncate RA window to end of file */
759                 end = min(end, (unsigned long)((kms - 1) >> CFS_PAGE_SHIFT));
760                 ras->ras_next_readahead = max(end, end + 1);
761                 RAS_CDEBUG(ras);
762         }
763         ria->ria_start = start;
764         ria->ria_end = end;
765         /* If stride I/O mode is detected, get stride window*/
766         if (stride_io_mode(ras)) {
767                 ria->ria_stoff = ras->ras_stride_offset;
768                 ria->ria_length = ras->ras_stride_length;
769                 ria->ria_pages = ras->ras_stride_pages;
770         }
771         spin_unlock(&ras->ras_lock);
772
773         if (end == 0) {
774                 ll_ra_stats_inc(mapping, RA_STAT_ZERO_WINDOW);
775                 RETURN(0);
776         }
777         len = ria_page_count(ria);
778         if (len == 0)
779                 RETURN(0);
780
781         reserved = ll_ra_count_get(ll_i2sbi(inode), len);
782
783         if (reserved < len)
784                 ll_ra_stats_inc(mapping, RA_STAT_MAX_IN_FLIGHT);
785
786         CDEBUG(D_READA, "reserved page %lu \n", reserved);
787
788         ret = ll_read_ahead_pages(env, io, queue,
789                                   ria, &reserved, mapping, &ra_end);
790
791         LASSERTF(reserved >= 0, "reserved %lu\n", reserved);
792         if (reserved != 0)
793                 ll_ra_count_put(ll_i2sbi(inode), reserved);
794
795         if (ra_end == end + 1 && ra_end == (kms >> CFS_PAGE_SHIFT))
796                 ll_ra_stats_inc(mapping, RA_STAT_EOF);
797
798         /* if we didn't get to the end of the region we reserved from
799          * the ras we need to go back and update the ras so that the
800          * next read-ahead tries from where we left off.  we only do so
801          * if the region we failed to issue read-ahead on is still ahead
802          * of the app and behind the next index to start read-ahead from */
803         CDEBUG(D_READA, "ra_end %lu end %lu stride end %lu \n",
804                ra_end, end, ria->ria_end);
805
806         if (ra_end != end + 1) {
807                 spin_lock(&ras->ras_lock);
808                 if (ra_end < ras->ras_next_readahead &&
809                     index_in_window(ra_end, ras->ras_window_start, 0,
810                                     ras->ras_window_len)) {
811                         ras->ras_next_readahead = ra_end;
812                                RAS_CDEBUG(ras);
813                 }
814                 spin_unlock(&ras->ras_lock);
815         }
816
817         RETURN(ret);
818 }
819
820 static void ras_set_start(struct ll_readahead_state *ras, unsigned long index)
821 {
822         ras->ras_window_start = index & (~(RAS_INCREASE_STEP - 1));
823 }
824
825 /* called with the ras_lock held or from places where it doesn't matter */
826 static void ras_reset(struct ll_readahead_state *ras, unsigned long index)
827 {
828         ras->ras_last_readpage = index;
829         ras->ras_consecutive_requests = 0;
830         ras->ras_consecutive_pages = 0;
831         ras->ras_window_len = 0;
832         ras_set_start(ras, index);
833         ras->ras_next_readahead = max(ras->ras_window_start, index);
834
835         RAS_CDEBUG(ras);
836 }
837
838 /* called with the ras_lock held or from places where it doesn't matter */
839 static void ras_stride_reset(struct ll_readahead_state *ras)
840 {
841         ras->ras_consecutive_stride_requests = 0;
842         ras->ras_stride_length = 0;
843         ras->ras_stride_pages = 0;
844         RAS_CDEBUG(ras);
845 }
846
847 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras)
848 {
849         spin_lock_init(&ras->ras_lock);
850         ras_reset(ras, 0);
851         ras->ras_requests = 0;
852         INIT_LIST_HEAD(&ras->ras_read_beads);
853 }
854
855 /*
856  * Check whether the read request is in the stride window.
857  * If it is in the stride window, return 1, otherwise return 0.
858  */
859 static int index_in_stride_window(unsigned long index,
860                                   struct ll_readahead_state *ras,
861                                   struct inode *inode)
862 {
863         unsigned long stride_gap = index - ras->ras_last_readpage - 1;
864
865         if (ras->ras_stride_length == 0 || ras->ras_stride_pages == 0)
866                 return 0;
867
868         /* If it is contiguous read */
869         if (stride_gap == 0)
870                 return ras->ras_consecutive_pages + 1 <= ras->ras_stride_pages;
871
872         /* Otherwise check the stride by itself */
873         return (ras->ras_stride_length - ras->ras_stride_pages) == stride_gap &&
874                 ras->ras_consecutive_pages == ras->ras_stride_pages;
875 }
876
877 static void ras_update_stride_detector(struct ll_readahead_state *ras,
878                                        unsigned long index)
879 {
880         unsigned long stride_gap = index - ras->ras_last_readpage - 1;
881
882         if (!stride_io_mode(ras) && (stride_gap != 0 ||
883              ras->ras_consecutive_stride_requests == 0)) {
884                 ras->ras_stride_pages = ras->ras_consecutive_pages;
885                 ras->ras_stride_length = stride_gap +ras->ras_consecutive_pages;
886         }
887         RAS_CDEBUG(ras);
888 }
889
890 static unsigned long
891 stride_page_count(struct ll_readahead_state *ras, unsigned long len)
892 {
893         return stride_pg_count(ras->ras_stride_offset, ras->ras_stride_length,
894                                ras->ras_stride_pages, ras->ras_stride_offset,
895                                len);
896 }
897
898 /* Stride Read-ahead window will be increased inc_len according to
899  * stride I/O pattern */
900 static void ras_stride_increase_window(struct ll_readahead_state *ras,
901                                        struct ll_ra_info *ra,
902                                        unsigned long inc_len)
903 {
904         unsigned long left, step, window_len;
905         unsigned long stride_len;
906
907         LASSERT(ras->ras_stride_length > 0);
908         LASSERTF(ras->ras_window_start + ras->ras_window_len
909                  >= ras->ras_stride_offset, "window_start %lu, window_len %lu"
910                  " stride_offset %lu\n", ras->ras_window_start,
911                  ras->ras_window_len, ras->ras_stride_offset);
912
913         stride_len = ras->ras_window_start + ras->ras_window_len -
914                      ras->ras_stride_offset;
915
916         left = stride_len % ras->ras_stride_length;
917         window_len = ras->ras_window_len - left;
918
919         if (left < ras->ras_stride_pages)
920                 left += inc_len;
921         else
922                 left = ras->ras_stride_pages + inc_len;
923
924         LASSERT(ras->ras_stride_pages != 0);
925
926         step = left / ras->ras_stride_pages;
927         left %= ras->ras_stride_pages;
928
929         window_len += step * ras->ras_stride_length + left;
930
931         if (stride_page_count(ras, window_len) <= ra->ra_max_pages_per_file)
932                 ras->ras_window_len = window_len;
933
934         RAS_CDEBUG(ras);
935 }
936
937 /* Set stride I/O read-ahead window start offset */
938 static void ras_set_stride_offset(struct ll_readahead_state *ras)
939 {
940         unsigned long window_len = ras->ras_next_readahead -
941                                    ras->ras_window_start;
942         unsigned long left;
943
944         LASSERT(ras->ras_stride_length != 0);
945
946         left = window_len % ras->ras_stride_length;
947
948         ras->ras_stride_offset = ras->ras_next_readahead - left;
949
950         RAS_CDEBUG(ras);
951 }
952
953 void ras_update(struct ll_sb_info *sbi, struct inode *inode,
954                 struct ll_readahead_state *ras, unsigned long index,
955                 unsigned hit)
956 {
957         struct ll_ra_info *ra = &sbi->ll_ra_info;
958         int zero = 0, stride_detect = 0, ra_miss = 0;
959         ENTRY;
960
961         spin_lock(&sbi->ll_lock);
962         spin_lock(&ras->ras_lock);
963
964         ll_ra_stats_inc_sbi(sbi, hit ? RA_STAT_HIT : RA_STAT_MISS);
965
966         /* reset the read-ahead window in two cases.  First when the app seeks
967          * or reads to some other part of the file.  Secondly if we get a
968          * read-ahead miss that we think we've previously issued.  This can
969          * be a symptom of there being so many read-ahead pages that the VM is
970          * reclaiming it before we get to it. */
971         if (!index_in_window(index, ras->ras_last_readpage, 8, 8)) {
972                 zero = 1;
973                 ll_ra_stats_inc_sbi(sbi, RA_STAT_DISTANT_READPAGE);
974         } else if (!hit && ras->ras_window_len &&
975                    index < ras->ras_next_readahead &&
976                    index_in_window(index, ras->ras_window_start, 0,
977                                    ras->ras_window_len)) {
978                 ra_miss = 1;
979                 ll_ra_stats_inc_sbi(sbi, RA_STAT_MISS_IN_WINDOW);
980         }
981
982         /* On the second access to a file smaller than the tunable
983          * ra_max_read_ahead_whole_pages trigger RA on all pages in the
984          * file up to ra_max_pages_per_file.  This is simply a best effort
985          * and only occurs once per open file.  Normal RA behavior is reverted
986          * to for subsequent IO.  The mmap case does not increment
987          * ras_requests and thus can never trigger this behavior. */
988         if (ras->ras_requests == 2 && !ras->ras_request_index) {
989                 __u64 kms_pages;
990
991                 kms_pages = (i_size_read(inode) + CFS_PAGE_SIZE - 1) >>
992                             CFS_PAGE_SHIFT;
993
994                 CDEBUG(D_READA, "kmsp "LPU64" mwp %lu mp %lu\n", kms_pages,
995                        ra->ra_max_read_ahead_whole_pages, ra->ra_max_pages_per_file);
996
997                 if (kms_pages &&
998                     kms_pages <= ra->ra_max_read_ahead_whole_pages) {
999                         ras->ras_window_start = 0;
1000                         ras->ras_last_readpage = 0;
1001                         ras->ras_next_readahead = 0;
1002                         ras->ras_window_len = min(ra->ra_max_pages_per_file,
1003                                 ra->ra_max_read_ahead_whole_pages);
1004                         GOTO(out_unlock, 0);
1005                 }
1006         }
1007         if (zero) {
1008                 /* check whether it is in stride I/O mode*/
1009                 if (!index_in_stride_window(index, ras, inode)) {
1010                         ras_reset(ras, index);
1011                         ras->ras_consecutive_pages++;
1012                         ras_stride_reset(ras);
1013                         GOTO(out_unlock, 0);
1014                 } else {
1015                         ras->ras_consecutive_requests = 0;
1016                         if (++ras->ras_consecutive_stride_requests > 1)
1017                                 stride_detect = 1;
1018                         RAS_CDEBUG(ras);
1019                 }
1020         } else {
1021                 if (ra_miss) {
1022                         if (index_in_stride_window(index, ras, inode) &&
1023                             stride_io_mode(ras)) {
1024                                 /*If stride-RA hit cache miss, the stride dector
1025                                  *will not be reset to avoid the overhead of
1026                                  *redetecting read-ahead mode */
1027                                 if (index != ras->ras_last_readpage + 1)
1028                                        ras->ras_consecutive_pages = 0;
1029                                 RAS_CDEBUG(ras);
1030                         } else {
1031                                 /* Reset both stride window and normal RA window */
1032                                 ras_reset(ras, index);
1033                                 ras->ras_consecutive_pages++;
1034                                 ras_stride_reset(ras);
1035                                 GOTO(out_unlock, 0);
1036                         }
1037                 } else if (stride_io_mode(ras)) {
1038                         /* If this is contiguous read but in stride I/O mode
1039                          * currently, check whether stride step still is valid,
1040                          * if invalid, it will reset the stride ra window*/
1041                         if (!index_in_stride_window(index, ras, inode)) {
1042                                 /* Shrink stride read-ahead window to be zero */
1043                                 ras_stride_reset(ras);
1044                                 ras->ras_window_len = 0;
1045                                 ras->ras_next_readahead = index;
1046                         }
1047                 }
1048         }
1049         ras->ras_consecutive_pages++;
1050         ras_update_stride_detector(ras, index);
1051         ras->ras_last_readpage = index;
1052         ras_set_start(ras, index);
1053         ras->ras_next_readahead = max(ras->ras_window_start,
1054                                       ras->ras_next_readahead);
1055         RAS_CDEBUG(ras);
1056
1057         /* Trigger RA in the mmap case where ras_consecutive_requests
1058          * is not incremented and thus can't be used to trigger RA */
1059         if (!ras->ras_window_len && ras->ras_consecutive_pages == 4) {
1060                 ras->ras_window_len = RAS_INCREASE_STEP;
1061                 GOTO(out_unlock, 0);
1062         }
1063
1064         /* Initially reset the stride window offset to next_readahead*/
1065         if (ras->ras_consecutive_stride_requests == 2 && stride_detect)
1066                 ras_set_stride_offset(ras);
1067
1068         /* The initial ras_window_len is set to the request size.  To avoid
1069          * uselessly reading and discarding pages for random IO the window is
1070          * only increased once per consecutive request received. */
1071         if ((ras->ras_consecutive_requests > 1 &&
1072             !ras->ras_request_index) || stride_detect) {
1073                 if (stride_io_mode(ras))
1074                         ras_stride_increase_window(ras, ra, RAS_INCREASE_STEP);
1075                 else
1076                         ras->ras_window_len = min(ras->ras_window_len +
1077                                                   RAS_INCREASE_STEP,
1078                                                   ra->ra_max_pages_per_file);
1079         }
1080         EXIT;
1081 out_unlock:
1082         RAS_CDEBUG(ras);
1083         ras->ras_request_index++;
1084         spin_unlock(&ras->ras_lock);
1085         spin_unlock(&sbi->ll_lock);
1086         return;
1087 }
1088
1089 int ll_writepage(struct page *vmpage, struct writeback_control *unused)
1090 {
1091         struct inode           *inode = vmpage->mapping->host;
1092         struct lu_env          *env;
1093         struct cl_io           *io;
1094         struct cl_page         *page;
1095         struct cl_object       *clob;
1096         struct cl_2queue       *queue;
1097         struct cl_env_nest      nest;
1098         int result;
1099         ENTRY;
1100
1101         LASSERT(PageLocked(vmpage));
1102         LASSERT(!PageWriteback(vmpage));
1103
1104         if (ll_i2dtexp(inode) == NULL)
1105                 RETURN(-EINVAL);
1106
1107         env = cl_env_nested_get(&nest);
1108         if (IS_ERR(env))
1109                 RETURN(PTR_ERR(env));
1110
1111         io    = &ccc_env_info(env)->cti_io;
1112         queue = &vvp_env_info(env)->vti_queue;
1113         clob  = ll_i2info(inode)->lli_clob;
1114         LASSERT(clob != NULL);
1115
1116         io->ci_obj = clob;
1117         result = cl_io_init(env, io, CIT_MISC, clob);
1118         if (result == 0) {
1119                 page = cl_page_find(env, clob, vmpage->index,
1120                                     vmpage, CPT_CACHEABLE);
1121                 if (!IS_ERR(page)) {
1122                         lu_ref_add(&page->cp_reference, "writepage",
1123                                    cfs_current());
1124                         cl_page_assume(env, io, page);
1125                         /*
1126                          * Mark page dirty, because this is what
1127                          * ->vio_submit()->cpo_prep_write() assumes.
1128                          *
1129                          * XXX better solution is to detect this from within
1130                          * cl_io_submit_rw() somehow.
1131                          */
1132                         set_page_dirty(vmpage);
1133                         cl_2queue_init_page(queue, page);
1134                         result = cl_io_submit_rw(env, io, CRT_WRITE,
1135                                                  queue, CRP_NORMAL);
1136                         cl_page_list_disown(env, io, &queue->c2_qin);
1137                         if (result != 0) {
1138                                 /*
1139                                  * There is no need to clear PG_writeback, as
1140                                  * cl_io_submit_rw() calls completion callback
1141                                  * on failure.
1142                                  */
1143                                 /*
1144                                  * Re-dirty page on error so it retries write,
1145                                  * but not in case when IO has actually
1146                                  * occurred and completed with an error.
1147                                  */
1148                                 if (!PageError(vmpage))
1149                                         set_page_dirty(vmpage);
1150                         }
1151                         LASSERT(!cl_page_is_owned(page, io));
1152                         lu_ref_del(&page->cp_reference,
1153                                    "writepage", cfs_current());
1154                         cl_page_put(env, page);
1155                         cl_2queue_fini(env, queue);
1156                 }
1157         }
1158         cl_io_fini(env, io);
1159         cl_env_nested_put(&nest, env);
1160         RETURN(result);
1161 }
1162
1163 int ll_readpage(struct file *file, struct page *vmpage)
1164 {
1165         struct lu_env    *env;
1166         struct cl_io     *io;
1167         struct cl_page   *page;
1168         int result;
1169         int refcheck;
1170         ENTRY;
1171
1172         result = ll_cl_init(file, vmpage, &env, &io, &page, &refcheck);
1173         if (result == 0) {
1174                 LASSERT(page->cp_type == CPT_CACHEABLE);
1175                 if (likely(!PageUptodate(vmpage))) {
1176                         cl_page_assume(env, io, page);
1177                         result = cl_io_read_page(env, io, page);
1178                 } else {
1179                         /* Page from a non-object file. */
1180                         LASSERT(!ll_i2info(vmpage->mapping->host)->lli_smd);
1181                         unlock_page(vmpage);
1182                         result = 0;
1183                 }
1184         }
1185         LASSERT(!cl_page_is_owned(page, io));
1186         ll_cl_fini(env, io, page, &refcheck);
1187         RETURN(result);
1188 }
1189