Whamcloud - gitweb
land b_cray_delivery on HEAD
[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  * Lustre Lite I/O page cache routines shared by different kernel revs
5  *
6  *  Copyright (c) 2001-2003 Cluster File Systems, Inc.
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #include <linux/config.h>
25 #include <linux/kernel.h>
26 #include <linux/mm.h>
27 #include <linux/string.h>
28 #include <linux/stat.h>
29 #include <linux/errno.h>
30 #include <linux/smp_lock.h>
31 #include <linux/unistd.h>
32 #include <linux/version.h>
33 #include <asm/system.h>
34 #include <asm/uaccess.h>
35
36 #include <linux/fs.h>
37 #include <linux/stat.h>
38 #include <asm/uaccess.h>
39 #include <asm/segment.h>
40 #include <linux/mm.h>
41 #include <linux/pagemap.h>
42 #include <linux/smp_lock.h>
43
44 #define DEBUG_SUBSYSTEM S_LLITE
45
46 #include <linux/lustre_mds.h>
47 #include <linux/lustre_lite.h>
48 #include "llite_internal.h"
49 #include <linux/lustre_compat25.h>
50
51 #ifndef list_for_each_prev_safe
52 #define list_for_each_prev_safe(pos, n, head) \
53         for (pos = (head)->prev, n = pos->prev; pos != (head); \
54                 pos = n, n = pos->prev )
55 #endif
56
57 /* SYNCHRONOUS I/O to object storage for an inode */
58 static int ll_brw(int cmd, struct inode *inode, struct obdo *oa,
59                   struct page *page, int flags)
60 {
61         struct ll_inode_info *lli = ll_i2info(inode);
62         struct lov_stripe_md *lsm = lli->lli_smd;
63         struct brw_page pg;
64         int rc;
65         ENTRY;
66
67         pg.pg = page;
68         pg.off = ((obd_off)page->index) << PAGE_SHIFT;
69
70         if (cmd == OBD_BRW_WRITE && (pg.off + PAGE_SIZE > inode->i_size))
71                 pg.count = inode->i_size % PAGE_SIZE;
72         else
73                 pg.count = PAGE_SIZE;
74
75         CDEBUG(D_PAGE, "%s %d bytes ino %lu at "LPU64"/"LPX64"\n",
76                cmd & OBD_BRW_WRITE ? "write" : "read", pg.count, inode->i_ino,
77                pg.off, pg.off);
78         if (pg.count == 0) {
79                 CERROR("ZERO COUNT: ino %lu: size %p:%Lu(%p:%Lu) idx %lu off "
80                        LPU64"\n",
81                        inode->i_ino, inode, inode->i_size, page->mapping->host,
82                        page->mapping->host->i_size, page->index, pg.off);
83         }
84
85         pg.flag = flags;
86
87         if (cmd == OBD_BRW_WRITE)
88                 lprocfs_counter_add(ll_i2sbi(inode)->ll_stats,
89                                     LPROC_LL_BRW_WRITE, pg.count);
90         else
91                 lprocfs_counter_add(ll_i2sbi(inode)->ll_stats,
92                                     LPROC_LL_BRW_READ, pg.count);
93         rc = obd_brw(cmd, ll_i2obdexp(inode), oa, lsm, 1, &pg, NULL);
94         if (rc == 0)
95                 obdo_to_inode(inode, oa, OBD_MD_FLBLOCKS);
96         else if (rc != -EIO)
97                 CERROR("error from obd_brw: rc = %d\n", rc);
98         RETURN(rc);
99 }
100
101 /* this isn't where truncate starts.   roughly:
102  * sys_truncate->ll_setattr_raw->vmtruncate->ll_truncate
103  * we grab the lock back in setattr_raw to avoid races. */
104 void ll_truncate(struct inode *inode)
105 {
106         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
107         struct obdo oa;
108         int rc;
109         ENTRY;
110         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
111                inode->i_generation, inode);
112
113         if (!lsm) {
114                 CDEBUG(D_INODE, "truncate on inode %lu with no objects\n",
115                        inode->i_ino);
116                 EXIT;
117                 return;
118         }
119
120         oa.o_id = lsm->lsm_object_id;
121         oa.o_valid = OBD_MD_FLID;
122         obdo_from_inode(&oa, inode, OBD_MD_FLTYPE|OBD_MD_FLMODE|OBD_MD_FLATIME|
123                                     OBD_MD_FLMTIME | OBD_MD_FLCTIME);
124
125         CDEBUG(D_INFO, "calling punch for "LPX64" (all bytes after %Lu)\n",
126                oa.o_id, inode->i_size);
127
128         /* truncate == punch from new size to absolute end of file */
129         /* NB: obd_punch must be called with i_sem held!  It updates the kms! */
130         rc = obd_punch(ll_i2obdexp(inode), &oa, lsm, inode->i_size,
131                        OBD_OBJECT_EOF, NULL);
132         if (rc)
133                 CERROR("obd_truncate fails (%d) ino %lu\n", rc, inode->i_ino);
134         else
135                 obdo_to_inode(inode, &oa, OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
136                                           OBD_MD_FLATIME | OBD_MD_FLMTIME |
137                                           OBD_MD_FLCTIME);
138
139         EXIT;
140         return;
141 } /* ll_truncate */
142
143 __u64 lov_merge_size(struct lov_stripe_md *lsm, int kms);
144 int ll_prepare_write(struct file *file, struct page *page, unsigned from,
145                      unsigned to)
146 {
147         struct inode *inode = page->mapping->host;
148         struct ll_inode_info *lli = ll_i2info(inode);
149         struct lov_stripe_md *lsm = lli->lli_smd;
150         obd_off offset = ((obd_off)page->index) << PAGE_SHIFT;
151         struct brw_page pga;
152         struct obdo oa;
153         __u64 kms;
154         int rc = 0;
155         ENTRY;
156
157         if (!PageLocked(page))
158                 LBUG();
159
160         /* Check to see if we should return -EIO right away */
161         pga.pg = page;
162         pga.off = offset;
163         pga.count = PAGE_SIZE;
164         pga.flag = 0;
165
166         oa.o_id = lsm->lsm_object_id;
167         oa.o_mode = inode->i_mode;
168         oa.o_valid = OBD_MD_FLID | OBD_MD_FLMODE | OBD_MD_FLTYPE;
169
170         rc = obd_brw(OBD_BRW_CHECK, ll_i2obdexp(inode), &oa, lsm, 1, &pga,
171                      NULL);
172         if (rc)
173                 RETURN(rc);
174
175         if (PageUptodate(page))
176                 RETURN(0);
177
178         /* We're completely overwriting an existing page, so _don't_ set it up
179          * to date until commit_write */
180         if (from == 0 && to == PAGE_SIZE) {
181                 POISON_PAGE(page, 0x11);
182                 RETURN(0);
183         }
184
185         /* If are writing to a new page, no need to read old data.  The extent
186          * locking will have updated the KMS, and for our purposes here we can
187          * treat it like i_size. */
188         kms = lov_merge_size(lsm, 1);
189         if (kms <= offset) {
190                 memset(kmap(page), 0, PAGE_SIZE);
191                 kunmap(page);
192                 GOTO(prepare_done, rc = 0);
193         }
194
195         /* XXX could be an async ocp read.. read-ahead? */
196         rc = ll_brw(OBD_BRW_READ, inode, &oa, page, 0);
197         if (rc == 0) {
198                 /* bug 1598: don't clobber blksize */
199                 oa.o_valid &= ~(OBD_MD_FLSIZE | OBD_MD_FLBLKSZ);
200                 obdo_refresh_inode(inode, &oa, oa.o_valid);
201         }
202
203         EXIT;
204  prepare_done:
205         if (rc == 0)
206                 SetPageUptodate(page);
207
208         return rc;
209 }
210
211 int ll_write_count(struct page *page)
212 {
213         struct inode *inode = page->mapping->host;
214
215         /* catch race with truncate */
216         if (((loff_t)page->index << PAGE_SHIFT) >= inode->i_size)
217                 return 0;
218
219         /* catch sub-page write at end of file */
220         if (((loff_t)page->index << PAGE_SHIFT) + PAGE_SIZE > inode->i_size)
221                 return inode->i_size % PAGE_SIZE;
222
223         return PAGE_SIZE;
224 }
225
226 struct ll_async_page *llap_from_cookie(void *cookie)
227 {
228         struct ll_async_page *llap = cookie;
229         if (llap->llap_magic != LLAP_MAGIC)
230                 return ERR_PTR(-EINVAL);
231         return llap;
232 };
233
234 static int ll_ap_make_ready(void *data, int cmd)
235 {
236         struct ll_async_page *llap;
237         struct page *page;
238         ENTRY;
239
240         llap = llap_from_cookie(data);
241         if (IS_ERR(llap))
242                 RETURN(-EINVAL);
243
244         page = llap->llap_page;
245
246         if (cmd == OBD_BRW_READ)
247                 RETURN(0);
248
249         /* we're trying to write, but the page is locked.. come back later */
250         if (TryLockPage(page))
251                 RETURN(-EAGAIN);
252
253         LL_CDEBUG_PAGE(D_PAGE, page, "made ready\n");
254         page_cache_get(page);
255
256         /* if we left PageDirty we might get another writepage call
257          * in the future.  list walkers are bright enough
258          * to check page dirty so we can leave it on whatever list
259          * its on.  XXX also, we're called with the cli list so if
260          * we got the page cache list we'd create a lock inversion
261          * with the removepage path which gets the page lock then the
262          * cli lock */
263         clear_page_dirty(page);
264         RETURN(0);
265 }
266
267 static int ll_ap_refresh_count(void *data, int cmd)
268 {
269         struct ll_async_page *llap;
270         ENTRY;
271
272         /* readpage queues with _COUNT_STABLE, shouldn't get here. */
273         LASSERT(cmd != OBD_BRW_READ);
274
275         llap = llap_from_cookie(data);
276         if (IS_ERR(llap))
277                 RETURN(PTR_ERR(llap));
278
279         return ll_write_count(llap->llap_page);
280 }
281
282 void ll_inode_fill_obdo(struct inode *inode, int cmd, struct obdo *oa)
283 {
284         struct lov_stripe_md *lsm;
285         obd_flag valid_flags;
286
287         lsm = ll_i2info(inode)->lli_smd;
288
289         oa->o_id = lsm->lsm_object_id;
290         oa->o_valid = OBD_MD_FLID;
291         valid_flags = OBD_MD_FLTYPE | OBD_MD_FLATIME;
292         if (cmd == OBD_BRW_WRITE) {
293                 oa->o_valid |= OBD_MD_FLIFID | OBD_MD_FLEPOCH;
294                 mdc_pack_fid(obdo_fid(oa), inode->i_ino, 0, inode->i_mode);
295                 oa->o_easize = ll_i2info(inode)->lli_io_epoch;
296
297                 valid_flags |= OBD_MD_FLMTIME | OBD_MD_FLCTIME;
298         }
299
300         obdo_from_inode(oa, inode, valid_flags);
301 }
302
303 static void ll_ap_fill_obdo(void *data, int cmd, struct obdo *oa)
304 {
305         struct ll_async_page *llap;
306         ENTRY;
307
308         llap = llap_from_cookie(data);
309         if (IS_ERR(llap)) {
310                 EXIT;
311                 return;
312         }
313
314         ll_inode_fill_obdo(llap->llap_page->mapping->host, cmd, oa);
315         EXIT;
316 }
317
318 static struct obd_async_page_ops ll_async_page_ops = {
319         .ap_make_ready =        ll_ap_make_ready,
320         .ap_refresh_count =     ll_ap_refresh_count,
321         .ap_fill_obdo =         ll_ap_fill_obdo,
322         .ap_completion =        ll_ap_completion,
323 };
324
325 /* XXX have the exp be an argument? */
326 struct ll_async_page *llap_from_page(struct page *page)
327 {
328         struct ll_async_page *llap;
329         struct obd_export *exp;
330         struct inode *inode = page->mapping->host;
331         struct ll_sb_info *sbi = ll_i2sbi(inode);
332         int rc;
333         ENTRY;
334
335         llap = (struct ll_async_page *)page->private;
336         if (llap != NULL) {
337                 if (llap->llap_magic != LLAP_MAGIC)
338                         RETURN(ERR_PTR(-EINVAL));
339                 RETURN(llap);
340         }
341
342         exp = ll_i2obdexp(page->mapping->host);
343         if (exp == NULL)
344                 RETURN(ERR_PTR(-EINVAL));
345
346         OBD_ALLOC(llap, sizeof(*llap));
347         if (llap == NULL)
348                 RETURN(ERR_PTR(-ENOMEM));
349         llap->llap_magic = LLAP_MAGIC;
350         rc = obd_prep_async_page(exp, ll_i2info(inode)->lli_smd, NULL, page,
351                                  (obd_off)page->index << PAGE_SHIFT,
352                                  &ll_async_page_ops, llap, &llap->llap_cookie);
353         if (rc) {
354                 OBD_FREE(llap, sizeof(*llap));
355                 RETURN(ERR_PTR(rc));
356         }
357
358         CDEBUG(D_CACHE, "llap %p page %p cookie %p obj off "LPU64"\n", llap,
359                page, llap->llap_cookie, (obd_off)page->index << PAGE_SHIFT);
360         /* also zeroing the PRIVBITS low order bitflags */
361         page->private = (unsigned long)llap;
362         llap->llap_page = page;
363
364         spin_lock(&sbi->ll_pglist_lock);
365         sbi->ll_pglist_gen++;
366         list_add_tail(&llap->llap_proc_item, &sbi->ll_pglist);
367         spin_unlock(&sbi->ll_pglist_lock);
368
369         RETURN(llap);
370 }
371
372 void lov_increase_kms(struct obd_export *exp, struct lov_stripe_md *lsm,
373                       obd_off size);
374 /* update our write count to account for i_size increases that may have
375  * happened since we've queued the page for io. */
376
377 /* be careful not to return success without setting the page Uptodate or
378  * the next pass through prepare_write will read in stale data from disk. */
379 int ll_commit_write(struct file *file, struct page *page, unsigned from,
380                     unsigned to)
381 {
382         struct inode *inode = page->mapping->host;
383         struct ll_inode_info *lli = ll_i2info(inode);
384         struct lov_stripe_md *lsm = lli->lli_smd;
385         struct obd_export *exp = NULL;
386         struct ll_async_page *llap;
387         loff_t size;
388         int rc = 0;
389         ENTRY;
390
391         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
392         LASSERT(inode == file->f_dentry->d_inode);
393         LASSERT(PageLocked(page));
394
395         CDEBUG(D_INODE, "inode %p is writing page %p from %d to %d at %lu\n",
396                inode, page, from, to, page->index);
397
398         llap = llap_from_page(page);
399         if (IS_ERR(llap))
400                 RETURN(PTR_ERR(llap));
401
402         /* queue a write for some time in the future the first time we
403          * dirty the page */
404         if (!PageDirty(page)) {
405                 lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats,
406                                      LPROC_LL_DIRTY_MISSES);
407
408                 exp = ll_i2obdexp(inode);
409                 if (exp == NULL)
410                         RETURN(-EINVAL);
411
412                 /* _make_ready only sees llap once we've unlocked the page */
413                 llap->llap_write_queued = 1;
414                 rc = obd_queue_async_io(exp, lsm, NULL, llap->llap_cookie,
415                                         OBD_BRW_WRITE, 0, 0, 0, 0);
416                 if (rc != 0) { /* async failed, try sync.. */
417                         struct obd_io_group *oig;
418                         rc = oig_init(&oig);
419                         if (rc)
420                                 GOTO(out, rc);
421
422                         llap->llap_write_queued = 0;
423                         rc = obd_queue_group_io(exp, lsm, NULL, oig,
424                                                 llap->llap_cookie,
425                                                 OBD_BRW_WRITE, 0, to, 0,
426                                                 ASYNC_READY | ASYNC_URGENT |
427                                                 ASYNC_COUNT_STABLE |
428                                                 ASYNC_GROUP_SYNC);
429
430                         if (rc)
431                                 GOTO(free_oig, rc);
432
433                         rc = obd_trigger_group_io(exp, lsm, NULL, oig);
434                         if (rc)
435                                 GOTO(free_oig, rc);
436
437                         rc = oig_wait(oig);
438 free_oig:
439                         oig_release(oig);
440                         GOTO(out, rc);
441                 }
442                 LL_CDEBUG_PAGE(D_PAGE, page, "write queued\n");
443                 //llap_write_pending(inode, llap);
444         } else {
445                 lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats,
446                                      LPROC_LL_DIRTY_HITS);
447         }
448
449         /* put the page in the page cache, from now on ll_removepage is
450          * responsible for cleaning up the llap */
451         set_page_dirty(page);
452
453 out:
454         if (rc == 0) {
455                 size = (((obd_off)page->index) << PAGE_SHIFT) + to;
456                 lov_increase_kms(exp, lsm, size);
457                 if (size > inode->i_size)
458                         inode->i_size = size;
459                 SetPageUptodate(page);
460         }
461         RETURN(rc);
462 }
463
464 /* the kernel calls us here when a page is unhashed from the page cache.
465  * the page will be locked and the kernel is holding a spinlock, so
466  * we need to be careful.  we're just tearing down our book-keeping
467  * here. */
468 void ll_removepage(struct page *page)
469 {
470         struct inode *inode = page->mapping->host;
471         struct obd_export *exp;
472         struct ll_async_page *llap;
473         struct ll_sb_info *sbi = ll_i2sbi(inode);
474         int rc;
475         ENTRY;
476
477         LASSERT(!in_interrupt());
478
479         /* sync pages or failed read pages can leave pages in the page
480          * cache that don't have our data associated with them anymore */
481         if (page->private == 0) {
482                 EXIT;
483                 return;
484         }
485
486         LL_CDEBUG_PAGE(D_PAGE, page, "being evicted\n");
487
488         exp = ll_i2obdexp(inode);
489         if (exp == NULL) {
490                 CERROR("page %p ind %lu gave null export\n", page, page->index);
491                 EXIT;
492                 return;
493         }
494
495         llap = llap_from_page(page);
496         if (IS_ERR(llap)) {
497                 CERROR("page %p ind %lu couldn't find llap: %ld\n", page,
498                        page->index, PTR_ERR(llap));
499                 EXIT;
500                 return;
501         }
502
503         //llap_write_complete(inode, llap);
504         rc = obd_teardown_async_page(exp, ll_i2info(inode)->lli_smd, NULL,
505                                      llap->llap_cookie);
506         if (rc != 0)
507                 CERROR("page %p ind %lu failed: %d\n", page, page->index, rc);
508
509         /* this unconditional free is only safe because the page lock
510          * is providing exclusivity to memory pressure/truncate/writeback..*/
511         page->private = 0;
512
513         spin_lock(&sbi->ll_pglist_lock);
514         if (!list_empty(&llap->llap_proc_item))
515                 list_del_init(&llap->llap_proc_item);
516         sbi->ll_pglist_gen++;
517         spin_unlock(&sbi->ll_pglist_lock);
518         OBD_FREE(llap, sizeof(*llap));
519         EXIT;
520 }
521
522 static int ll_page_matches(struct page *page, int fd_flags)
523 {
524         struct lustre_handle match_lockh = {0};
525         struct inode *inode = page->mapping->host;
526         ldlm_policy_data_t page_extent;
527         int flags, matches;
528         ENTRY;
529
530         if (fd_flags & LL_FILE_CW_LOCKED)
531                 RETURN(1);
532
533         page_extent.l_extent.start = (__u64)page->index << PAGE_CACHE_SHIFT;
534         page_extent.l_extent.end =
535                 page_extent.l_extent.start + PAGE_CACHE_SIZE - 1;
536         flags = LDLM_FL_CBPENDING | LDLM_FL_BLOCK_GRANTED | LDLM_FL_TEST_LOCK;
537         matches = obd_match(ll_i2sbi(inode)->ll_osc_exp,
538                             ll_i2info(inode)->lli_smd, LDLM_EXTENT,
539                             &page_extent, LCK_PR | LCK_PW, &flags, inode,
540                             &match_lockh);
541         RETURN(matches);
542 }
543
544 static int ll_issue_page_read(struct obd_export *exp,
545                               struct ll_async_page *llap,
546                               struct obd_io_group *oig, int defer)
547 {
548         struct page *page = llap->llap_page;
549         int rc;
550
551         page_cache_get(page);
552         llap->llap_defer_uptodate = defer;
553         rc = obd_queue_group_io(exp, ll_i2info(page->mapping->host)->lli_smd,
554                                 NULL, oig, llap->llap_cookie, OBD_BRW_READ, 0,
555                                 PAGE_SIZE, 0, ASYNC_COUNT_STABLE);
556         if (rc) {
557                 LL_CDEBUG_PAGE(D_ERROR, page, "read queue failed: rc %d\n", rc);
558                 page_cache_release(page);
559         }
560         RETURN(rc);
561 }
562
563 #define LL_RA_MIN(inode) ((unsigned long)PTLRPC_MAX_BRW_PAGES / 2)
564 #define LL_RA_MAX(inode) ((ll_i2info(inode)->lli_smd->lsm_xfersize * 3) >> \
565                           PAGE_CACHE_SHIFT)
566
567 static void ll_readahead(struct ll_readahead_state *ras,
568                          struct obd_export *exp, struct address_space *mapping,
569                          struct obd_io_group *oig, int flags)
570 {
571         unsigned long i, start, end;
572         struct ll_async_page *llap;
573         struct page *page;
574         int rc;
575
576         if (mapping->host->i_size == 0)
577                 return;
578
579         spin_lock(&ras->ras_lock);
580
581         /* make sure to issue a window's worth of read-ahead pages */
582         end = ras->ras_last;
583         start = end - ras->ras_window;
584         if (start > end)
585                 start = 0;
586
587         /* but don't iterate over pages that we've already issued.  this
588          * will set start to end + 1 if we've already read-ahead up to
589          * ras_last sothe for() won't be entered */
590         if (ras->ras_next_index > start)
591                 start = ras->ras_next_index;
592         if (end != ~0UL)
593                 ras->ras_next_index = end + 1;
594
595         CDEBUG(D_READA, "ni %lu last %lu win %lu: reading from %lu to %lu\n",
596                ras->ras_next_index, ras->ras_last, ras->ras_window,
597                start, end);
598
599         spin_unlock(&ras->ras_lock);
600
601         /* clamp to filesize */
602         i = (mapping->host->i_size - 1) >> PAGE_CACHE_SHIFT;
603         end = min(end, i);
604
605         for (i = start; i <= end; i++) {
606                 /* grab_cache_page_nowait returns null if this races with
607                  * truncating the page (page->mapping == NULL) */
608                 page = grab_cache_page_nowait(mapping, i);
609                 if (page == NULL)
610                        break;
611
612                 /* the book-keeping above promises that we've tried
613                  * all the indices from start to end, so we don't
614                  * stop if anyone returns an error. This may not be good. */
615                 if (Page_Uptodate(page))
616                         goto next_page;
617
618                 if ((rc = ll_page_matches(page, flags)) <= 0) {
619                         LL_CDEBUG_PAGE(D_READA | D_PAGE, page,
620                                        "lock match failed: rc %d\n", rc);
621                         goto next_page;
622                 }
623
624                 llap = llap_from_page(page);
625                 if (IS_ERR(llap) || llap->llap_defer_uptodate)
626                         goto next_page;
627
628                 rc = ll_issue_page_read(exp, llap, oig, 1);
629                 if (rc == 0)
630                         LL_CDEBUG_PAGE(D_PAGE, page, "started read-ahead\n");
631                 if (rc) {
632         next_page:
633                         LL_CDEBUG_PAGE(D_PAGE, page, "skipping read-ahead\n");
634
635                         unlock_page(page);
636                 }
637                 page_cache_release(page);
638         }
639 }
640
641 /* called with the ras_lock held or from places where it doesn't matter */
642 static void ll_readahead_set(struct inode *inode,
643                              struct ll_readahead_state *ras,
644                              unsigned long index)
645 {
646         ras->ras_next_index = index;
647         if (ras->ras_next_index != ~0UL)
648                 ras->ras_next_index++;
649         ras->ras_window = LL_RA_MIN(inode);
650         ras->ras_last = ras->ras_next_index + ras->ras_window;
651         if (ras->ras_last < ras->ras_next_index)
652                 ras->ras_last = ~0UL;
653         CDEBUG(D_READA, "ni %lu last %lu win %lu: set %lu\n",
654                ras->ras_next_index, ras->ras_last, ras->ras_window,
655                index);
656 }
657
658 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras)
659 {
660         spin_lock_init(&ras->ras_lock);
661         ll_readahead_set(inode, ras, 0);
662 }
663
664 static void ll_readahead_update(struct inode *inode,
665                                 struct ll_readahead_state *ras,
666                                 unsigned long index, int hit)
667 {
668         unsigned long issued_start, new_last;
669
670         spin_lock(&ras->ras_lock);
671
672         /* we're interested in noticing the index's relation to the
673          * previously issued read-ahead pages */
674         issued_start = ras->ras_next_index - ras->ras_window - 1;
675         if (issued_start > ras->ras_next_index)
676                 issued_start = 0;
677
678         CDEBUG(D_READA, "ni %lu last %lu win %lu: %s ind %lu start %lu\n",
679                ras->ras_next_index, ras->ras_last, ras->ras_window,
680                hit ? "hit" : "miss", index, issued_start);
681         if (!hit &&
682             index == ras->ras_next_index && index == ras->ras_last + 1) {
683                 /* special case the kernel's read-ahead running into the
684                  * page just beyond our read-ahead window as an extension
685                  * of our read-ahead.  sigh.  wishing it was easier to
686                  * turn off 2.4's read-ahead. */
687                 ras->ras_window = min(LL_RA_MAX(inode), ras->ras_window + 1);
688                 if (index != ~0UL)
689                         ras->ras_next_index = index + 1;
690                 ras->ras_last = index;
691         } else if (!hit &&
692                    (index > issued_start || ras->ras_next_index >= index)) {
693                 /* deal with a miss way out of the window.  we interpret
694                  * this as a seek and restart the window */
695                 ll_readahead_set(inode, ras, index);
696
697         } else if (!hit &&
698                    issued_start <= index && index < ras->ras_next_index) {
699                 /* a miss inside the window?  surely its memory pressure
700                  * evicting our read pages before the app can see them.
701                  * we shrink the window aggressively */
702                 unsigned long old_window = ras->ras_window;
703
704                 ras->ras_window = max(ras->ras_window / 2, LL_RA_MIN(inode));
705                 ras->ras_last -= old_window - ras->ras_window;
706                 if (ras->ras_next_index > ras->ras_last)
707                         ras->ras_next_index = ras->ras_last + 1;
708                 CDEBUG(D_READA, "ni %lu last %lu win %lu: miss inside\n",
709                        ras->ras_next_index, ras->ras_last, ras->ras_window);
710
711         } else if (hit &&
712                    issued_start <= index && index < ras->ras_next_index) {
713                 /* a hit inside the window.  grow the window by twice the
714                  * number of pages that are satisified within the window.  */
715                 ras->ras_window = min(LL_RA_MAX(inode), ras->ras_window + 2);
716
717                 /* we want the next readahead pass to issue a windows worth
718                  * beyond where the app currently is */
719                 new_last = index + ras->ras_window;
720                 if (new_last > ras->ras_last)
721                         ras->ras_last = new_last;
722
723                 CDEBUG(D_READA, "ni %lu last %lu win %lu: extended window/last\n",
724                        ras->ras_next_index, ras->ras_last, ras->ras_window);
725         }
726
727         spin_unlock(&ras->ras_lock);
728 }
729
730 /*
731  * for now we do our readpage the same on both 2.4 and 2.5.  The kernel's
732  * read-ahead assumes it is valid to issue readpage all the way up to
733  * i_size, but our dlm locks make that not the case.  We disable the
734  * kernel's read-ahead and do our own by walking ahead in the page cache
735  * checking for dlm lock coverage.  the main difference between 2.4 and
736  * 2.6 is how read-ahead gets batched and issued, but we're using our own,
737  * so they look the same.
738  */
739 int ll_readpage(struct file *filp, struct page *page)
740 {
741         struct ll_file_data *fd = filp->private_data;
742         struct inode *inode = page->mapping->host;
743         struct obd_export *exp;
744         struct ll_async_page *llap;
745         struct obd_io_group *oig = NULL;
746         int rc;
747         ENTRY;
748
749         LASSERT(PageLocked(page));
750         LASSERT(!PageUptodate(page));
751         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),offset="LPX64"\n",
752                inode->i_ino, inode->i_generation, inode,
753                (((obd_off)page->index) << PAGE_SHIFT));
754         LASSERT(atomic_read(&filp->f_dentry->d_inode->i_count) > 0);
755
756         rc = oig_init(&oig);
757         if (rc < 0)
758                 GOTO(out, rc);
759
760         exp = ll_i2obdexp(inode);
761         if (exp == NULL)
762                 GOTO(out, rc = -EINVAL);
763
764         llap = llap_from_page(page);
765         if (IS_ERR(llap))
766                 GOTO(out, rc = PTR_ERR(llap));
767
768         if (llap->llap_defer_uptodate) {
769                 ll_readahead_update(inode, &fd->fd_ras, page->index, 1);
770                 ll_readahead(&fd->fd_ras, exp, page->mapping, oig,fd->fd_flags);
771                 obd_trigger_group_io(exp, ll_i2info(inode)->lli_smd, NULL,
772                                      oig);
773                 LL_CDEBUG_PAGE(D_PAGE, page, "marking uptodate from defer\n");
774                 SetPageUptodate(page);
775                 unlock_page(page);
776                 GOTO(out_oig, rc = 0);
777         }
778
779         ll_readahead_update(inode, &fd->fd_ras, page->index, 0);
780
781         rc = ll_page_matches(page, fd->fd_flags);
782         if (rc < 0) {
783                 LL_CDEBUG_PAGE(D_ERROR, page, "lock match failed: rc %d\n", rc);
784                 GOTO(out, rc);
785         }
786
787         if (rc == 0) {
788                 static unsigned long next_print;
789                 CDEBUG(D_INODE, "ino %lu page %lu (%llu) didn't match a lock\n",
790                        inode->i_ino, page->index,
791                        (long long)page->index << PAGE_CACHE_SHIFT);
792                 if (time_after(jiffies, next_print)) {
793                         CERROR("ino %lu page %lu (%llu) not covered by "
794                                "a lock (mmap?).  check debug logs.\n",
795                                inode->i_ino, page->index,
796                                (long long)page->index << PAGE_CACHE_SHIFT);
797                         ldlm_dump_all_namespaces();
798                         if (next_print == 0) {
799                                 CERROR("%s\n", portals_debug_dumpstack());
800                                 portals_debug_dumplog();
801                         }
802                         next_print = jiffies + 30 * HZ;
803                 }
804         }
805
806         rc = ll_issue_page_read(exp, llap, oig, 0);
807         if (rc)
808                 GOTO(out, rc);
809
810         LL_CDEBUG_PAGE(D_PAGE, page, "queued readpage\n");
811         if ((ll_i2sbi(inode)->ll_flags & LL_SBI_READAHEAD))
812                 ll_readahead(&fd->fd_ras, exp, page->mapping, oig,fd->fd_flags);
813
814         rc = obd_trigger_group_io(exp, ll_i2info(inode)->lli_smd, NULL, oig);
815
816 out:
817         if (rc)
818                 unlock_page(page);
819 out_oig:
820         if (oig != NULL)
821                 oig_release(oig);
822         RETURN(rc);
823 }
824
825 #if 0
826 /* this is for read pages.  we issue them as ready but not urgent.  when
827  * someone waits on them we fire them off, hopefully merged with adjacent
828  * reads that were queued by read-ahead.  */
829 int ll_sync_page(struct page *page)
830 {
831         struct obd_export *exp;
832         struct ll_async_page *llap;
833         int rc;
834         ENTRY;
835
836         /* we're using a low bit flag to signify that a queued read should
837          * be issued once someone goes to lock it.  it is also cleared
838          * as the page is built into an RPC */
839         if (!test_and_clear_bit(LL_PRIVBITS_READ, &page->private))
840                 RETURN(0);
841
842         /* careful to only deref page->mapping after checking the bit */
843         exp = ll_i2obdexp(page->mapping->host);
844         if (exp == NULL)
845                 RETURN(-EINVAL);
846
847         llap = llap_from_page(page);
848         if (IS_ERR(llap))
849                 RETURN(PTR_ERR(llap));
850
851         LL_CDEBUG_PAGE(D_PAGE, page, "setting ready|urgent\n");
852
853         rc = obd_set_async_flags(exp, ll_i2info(page->mapping->host)->lli_smd,
854                                  NULL, llap->llap_cookie,
855                                  ASYNC_READY|ASYNC_URGENT);
856         return rc;
857 }
858 #endif