Whamcloud - gitweb
LU-15811 llite: Refactor DIO/AIO free code
[fs/lustre-release.git] / lustre / llite / rw26.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/lustre/llite/rw26.c
32  *
33  * Lustre Lite I/O page cache routines for the 2.5/2.6 kernel version
34  */
35
36 #include <linux/buffer_head.h>
37 #include <linux/errno.h>
38 #include <linux/fs.h>
39 #include <linux/kernel.h>
40 #include <linux/mm.h>
41 #include <linux/mpage.h>
42 #include <linux/pagemap.h>
43 #include <linux/string.h>
44 #include <linux/unistd.h>
45 #include <linux/writeback.h>
46 #include <linux/migrate.h>
47
48 #define DEBUG_SUBSYSTEM S_LLITE
49
50 #include "llite_internal.h"
51 #include <lustre_compat.h>
52
53 /**
54  * Implements Linux VM address_space::invalidatepage() method. This method is
55  * called when the page is truncate from a file, either as a result of
56  * explicit truncate, or when inode is removed from memory (as a result of
57  * final iput(), umount, or memory pressure induced icache shrinking).
58  *
59  * [0, offset] bytes of the page remain valid (this is for a case of not-page
60  * aligned truncate). Lustre leaves partially truncated page in the cache,
61  * relying on struct inode::i_size to limit further accesses.
62  */
63 static void ll_invalidatepage(struct page *vmpage,
64 #ifdef HAVE_INVALIDATE_RANGE
65                                 unsigned int offset, unsigned int length
66 #else
67                                 unsigned long offset
68 #endif
69                              )
70 {
71         struct inode     *inode;
72         struct lu_env    *env;
73         struct cl_page   *page;
74         struct cl_object *obj;
75
76         LASSERT(PageLocked(vmpage));
77         LASSERT(!PageWriteback(vmpage));
78
79         /*
80          * It is safe to not check anything in invalidatepage/releasepage
81          * below because they are run with page locked and all our io is
82          * happening with locked page too
83          */
84 #ifdef HAVE_INVALIDATE_RANGE
85         if (offset == 0 && length == PAGE_SIZE) {
86 #else
87         if (offset == 0) {
88 #endif
89                 /* See the comment in ll_releasepage() */
90                 env = cl_env_percpu_get();
91                 LASSERT(!IS_ERR(env));
92
93                 inode = vmpage->mapping->host;
94                 obj = ll_i2info(inode)->lli_clob;
95                 if (obj != NULL) {
96                         page = cl_vmpage_page(vmpage, obj);
97                         if (page != NULL) {
98                                 cl_page_delete(env, page);
99                                 cl_page_put(env, page);
100                         }
101                 } else
102                         LASSERT(vmpage->private == 0);
103
104                 cl_env_percpu_put(env);
105         }
106 }
107
108 #ifdef HAVE_RELEASEPAGE_WITH_INT
109 #define RELEASEPAGE_ARG_TYPE int
110 #else
111 #define RELEASEPAGE_ARG_TYPE gfp_t
112 #endif
113 static int ll_releasepage(struct page *vmpage, RELEASEPAGE_ARG_TYPE gfp_mask)
114 {
115         struct lu_env           *env;
116         struct cl_object        *obj;
117         struct cl_page          *clpage;
118         struct address_space    *mapping;
119         int result = 0;
120
121         LASSERT(PageLocked(vmpage));
122         if (PageWriteback(vmpage) || PageDirty(vmpage))
123                 return 0;
124
125         mapping = vmpage->mapping;
126         if (mapping == NULL)
127                 return 1;
128
129         obj = ll_i2info(mapping->host)->lli_clob;
130         if (obj == NULL)
131                 return 1;
132
133         clpage = cl_vmpage_page(vmpage, obj);
134         if (clpage == NULL)
135                 return 1;
136
137         env = cl_env_percpu_get();
138         LASSERT(!IS_ERR(env));
139
140         /* we must not delete the cl_page if the vmpage is in use, otherwise we
141          * disconnect the vmpage from Lustre while it's still alive(!), which
142          * means we won't find it to discard on lock cancellation.
143          *
144          * References here are: caller + cl_page + page cache.
145          * Any other references are potentially transient and must be ignored.
146          */
147         if (!cl_page_in_use(clpage) && !vmpage_in_use(vmpage, 1)) {
148                 result = 1;
149                 cl_page_delete(env, clpage);
150         }
151
152         /* To use percpu env array, the call path can not be rescheduled;
153          * otherwise percpu array will be messed if ll_releaspage() called
154          * again on the same CPU.
155          *
156          * If this page holds the last refc of cl_object, the following
157          * call path may cause reschedule:
158          *   cl_page_put -> cl_page_free -> cl_object_put ->
159          *     lu_object_put -> lu_object_free -> lov_delete_raid0.
160          *
161          * However, the kernel can't get rid of this inode until all pages have
162          * been cleaned up. Now that we hold page lock here, it's pretty safe
163          * that we won't get into object delete path.
164          */
165         LASSERT(cl_object_refc(obj) > 1);
166         cl_page_put(env, clpage);
167
168         cl_env_percpu_put(env);
169         return result;
170 }
171
172 static ssize_t ll_get_user_pages(int rw, struct iov_iter *iter,
173                                 struct page ***pages, ssize_t *npages,
174                                 size_t maxsize)
175 {
176 #if defined(HAVE_DIO_ITER)
177         size_t start;
178         size_t result;
179
180         /*
181          * iov_iter_get_pages_alloc() is introduced in 3.16 similar
182          * to HAVE_DIO_ITER.
183          */
184         result = iov_iter_get_pages_alloc(iter, pages, maxsize, &start);
185         if (result > 0)
186                 *npages = DIV_ROUND_UP(result + start, PAGE_SIZE);
187
188         return result;
189 #else
190         unsigned long addr;
191         size_t page_count;
192         size_t size;
193         long result;
194
195         if (!maxsize)
196                 return 0;
197
198         if (!iter->nr_segs)
199                 return 0;
200
201         addr = (unsigned long)iter->iov->iov_base + iter->iov_offset;
202         if (addr & ~PAGE_MASK)
203                 return -EINVAL;
204
205         size = min_t(size_t, maxsize, iter->iov->iov_len);
206         page_count = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
207         OBD_ALLOC_PTR_ARRAY_LARGE(*pages, page_count);
208         if (*pages == NULL)
209                 return -ENOMEM;
210
211         mmap_read_lock(current->mm);
212         result = get_user_pages(current, current->mm, addr, page_count,
213                                 rw == READ, 0, *pages, NULL);
214         mmap_read_unlock(current->mm);
215
216         if (unlikely(result != page_count)) {
217                 ll_release_user_pages(*pages, page_count);
218                 *pages = NULL;
219
220                 if (result >= 0)
221                         return -EFAULT;
222
223                 return result;
224         }
225         *npages = page_count;
226
227         return size;
228 #endif
229 }
230
231 /* iov_iter_alignment() is introduced in 3.16 similar to HAVE_DIO_ITER */
232 #if defined(HAVE_DIO_ITER)
233 static unsigned long iov_iter_alignment_vfs(const struct iov_iter *i)
234 {
235         return iov_iter_alignment(i);
236 }
237 #else /* copied from alignment_iovec() */
238 static unsigned long iov_iter_alignment_vfs(const struct iov_iter *i)
239 {
240         const struct iovec *iov = i->iov;
241         unsigned long res;
242         size_t size = i->count;
243         size_t n;
244
245         if (!size)
246                 return 0;
247
248         res = (unsigned long)iov->iov_base + i->iov_offset;
249         n = iov->iov_len - i->iov_offset;
250         if (n >= size)
251                 return res | size;
252
253         size -= n;
254         res |= n;
255         while (size > (++iov)->iov_len) {
256                 res |= (unsigned long)iov->iov_base | iov->iov_len;
257                 size -= iov->iov_len;
258         }
259         res |= (unsigned long)iov->iov_base | size;
260
261         return res;
262 }
263 #endif
264
265 /*
266  * Lustre could relax a bit for alignment, io count is not
267  * necessary page alignment.
268  */
269 static unsigned long ll_iov_iter_alignment(struct iov_iter *i)
270 {
271         size_t orig_size = i->count;
272         size_t count = orig_size & ~PAGE_MASK;
273         unsigned long res;
274
275         if (!count)
276                 return iov_iter_alignment_vfs(i);
277
278         if (orig_size > PAGE_SIZE) {
279                 iov_iter_truncate(i, orig_size - count);
280                 res = iov_iter_alignment_vfs(i);
281                 iov_iter_reexpand(i, orig_size);
282
283                 return res;
284         }
285
286         res = iov_iter_alignment_vfs(i);
287         /* start address is page aligned */
288         if ((res & ~PAGE_MASK) == orig_size)
289                 return PAGE_SIZE;
290
291         return res;
292 }
293
294 static int
295 ll_direct_rw_pages(const struct lu_env *env, struct cl_io *io, size_t size,
296                    int rw, struct inode *inode, struct cl_sub_dio *sdio)
297 {
298         struct ll_dio_pages *pv = &sdio->csd_dio_pages;
299         struct cl_page    *page;
300         struct cl_2queue  *queue = &io->ci_queue;
301         struct cl_object  *obj = io->ci_obj;
302         struct cl_sync_io *anchor = &sdio->csd_sync;
303         loff_t offset   = pv->ldp_file_offset;
304         int io_pages    = 0;
305         size_t page_size = cl_page_size(obj);
306         int i;
307         ssize_t rc = 0;
308
309         ENTRY;
310
311         cl_2queue_init(queue);
312         for (i = 0; i < pv->ldp_count; i++) {
313                 LASSERT(!(offset & (PAGE_SIZE - 1)));
314                 page = cl_page_find(env, obj, cl_index(obj, offset),
315                                     pv->ldp_pages[i], CPT_TRANSIENT);
316                 if (IS_ERR(page)) {
317                         rc = PTR_ERR(page);
318                         break;
319                 }
320                 LASSERT(page->cp_type == CPT_TRANSIENT);
321                 rc = cl_page_own(env, io, page);
322                 if (rc) {
323                         cl_page_put(env, page);
324                         break;
325                 }
326
327                 page->cp_sync_io = anchor;
328                 if (inode && IS_ENCRYPTED(inode)) {
329                         /* In case of Direct IO on encrypted file, we need to
330                          * add a reference to the inode on the cl_page.
331                          * This info is required by llcrypt to proceed
332                          * to encryption/decryption.
333                          * This is safe because we know these pages are private
334                          * to the thread doing the Direct IO.
335                          */
336                         page->cp_inode = inode;
337                 }
338                 /* We keep the refcount from cl_page_find, so we don't need
339                  * another one here
340                  */
341                 cl_page_list_add(&queue->c2_qin, page, false);
342                 /*
343                  * Set page clip to tell transfer formation engine
344                  * that page has to be sent even if it is beyond KMS.
345                  */
346                 if (size < page_size)
347                         cl_page_clip(env, page, 0, size);
348                 ++io_pages;
349
350                 offset += page_size;
351                 size -= page_size;
352         }
353         if (rc == 0 && io_pages > 0) {
354                 int iot = rw == READ ? CRT_READ : CRT_WRITE;
355
356                 atomic_add(io_pages, &anchor->csi_sync_nr);
357                 /*
358                  * Avoid out-of-order execution of adding inflight
359                  * modifications count and io submit.
360                  */
361                 smp_mb();
362                 rc = cl_io_submit_rw(env, io, iot, queue);
363                 if (rc == 0) {
364                         cl_page_list_splice(&queue->c2_qout, &sdio->csd_pages);
365                 } else {
366                         atomic_add(-queue->c2_qin.pl_nr,
367                                    &anchor->csi_sync_nr);
368                         cl_page_list_for_each(page, &queue->c2_qin)
369                                 page->cp_sync_io = NULL;
370                 }
371                 /* handle partially submitted reqs */
372                 if (queue->c2_qin.pl_nr > 0) {
373                         CERROR(DFID " failed to submit %d dio pages: %zd\n",
374                                PFID(lu_object_fid(&obj->co_lu)),
375                                queue->c2_qin.pl_nr, rc);
376                         if (rc == 0)
377                                 rc = -EIO;
378                 }
379         }
380
381         cl_2queue_discard(env, io, queue);
382         cl_2queue_disown(env, queue);
383         cl_2queue_fini(env, queue);
384         RETURN(rc);
385 }
386
387 #ifdef KMALLOC_MAX_SIZE
388 #define MAX_MALLOC KMALLOC_MAX_SIZE
389 #else
390 #define MAX_MALLOC (128 * 1024)
391 #endif
392
393 /* This is the maximum size of a single O_DIRECT request, based on the
394  * kmalloc limit.  We need to fit all of the brw_page structs, each one
395  * representing PAGE_SIZE worth of user data, into a single buffer, and
396  * then truncate this to be a full-sized RPC.  For 4kB PAGE_SIZE this is
397  * up to 22MB for 128kB kmalloc and up to 682MB for 4MB kmalloc. */
398 #define MAX_DIO_SIZE ((MAX_MALLOC / sizeof(struct brw_page) * PAGE_SIZE) & \
399                       ~((size_t)DT_MAX_BRW_SIZE - 1))
400
401 static ssize_t
402 ll_direct_IO_impl(struct kiocb *iocb, struct iov_iter *iter, int rw)
403 {
404         struct ll_cl_context *lcc;
405         const struct lu_env *env;
406         struct cl_io *io;
407         struct file *file = iocb->ki_filp;
408         struct inode *inode = file->f_mapping->host;
409         struct cl_dio_aio *ll_dio_aio;
410         struct cl_sub_dio *ldp_aio;
411         size_t count = iov_iter_count(iter);
412         ssize_t tot_bytes = 0, result = 0;
413         loff_t file_offset = iocb->ki_pos;
414         bool sync_submit = false;
415         struct vvp_io *vio;
416         ssize_t rc2;
417
418         /* Check EOF by ourselves */
419         if (rw == READ && file_offset >= i_size_read(inode))
420                 return 0;
421
422         /* FIXME: io smaller than PAGE_SIZE is broken on ia64 ??? */
423         if (file_offset & ~PAGE_MASK)
424                 RETURN(-EINVAL);
425
426         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), size=%zd (max %lu), "
427                "offset=%lld=%llx, pages %zd (max %lu)\n",
428                PFID(ll_inode2fid(inode)), inode, count, MAX_DIO_SIZE,
429                file_offset, file_offset, count >> PAGE_SHIFT,
430                MAX_DIO_SIZE >> PAGE_SHIFT);
431
432         /* Check that all user buffers are aligned as well */
433         if (ll_iov_iter_alignment(iter) & ~PAGE_MASK)
434                 RETURN(-EINVAL);
435
436         lcc = ll_cl_find(inode);
437         if (lcc == NULL)
438                 RETURN(-EIO);
439
440         env = lcc->lcc_env;
441         LASSERT(!IS_ERR(env));
442         vio = vvp_env_io(env);
443         io = lcc->lcc_io;
444         LASSERT(io != NULL);
445
446         ll_dio_aio = io->ci_dio_aio;
447         LASSERT(ll_dio_aio);
448         LASSERT(ll_dio_aio->cda_iocb == iocb);
449
450         /* We cannot do parallel submission of sub-I/Os - for AIO or regular
451          * DIO - unless lockless because it causes us to release the lock
452          * early.
453          *
454          * There are also several circumstances in which we must disable
455          * parallel DIO, so we check if it is enabled.
456          *
457          * The check for "is_sync_kiocb" excludes AIO, which does not need to
458          * be disabled in these situations.
459          */
460         if (io->ci_dio_lock || (is_sync_kiocb(iocb) && !io->ci_parallel_dio))
461                 sync_submit = true;
462
463         while (iov_iter_count(iter)) {
464                 struct ll_dio_pages *pvec;
465                 struct page **pages;
466
467                 count = min_t(size_t, iov_iter_count(iter), MAX_DIO_SIZE);
468                 if (rw == READ) {
469                         if (file_offset >= i_size_read(inode))
470                                 break;
471
472                         if (file_offset + count > i_size_read(inode))
473                                 count = i_size_read(inode) - file_offset;
474                 }
475
476                 /* if we are doing sync_submit, then we free this below,
477                  * otherwise it is freed on the final call to cl_sync_io_note
478                  * (either in this function or from a ptlrpcd daemon)
479                  */
480                 ldp_aio = cl_sub_dio_alloc(ll_dio_aio, sync_submit);
481                 if (!ldp_aio)
482                         GOTO(out, result = -ENOMEM);
483
484                 pvec = &ldp_aio->csd_dio_pages;
485
486                 result = ll_get_user_pages(rw, iter, &pages,
487                                            &pvec->ldp_count, count);
488                 if (unlikely(result <= 0)) {
489                         cl_sync_io_note(env, &ldp_aio->csd_sync, result);
490                         if (sync_submit) {
491                                 LASSERT(ldp_aio->csd_creator_free);
492                                 cl_sub_dio_free(ldp_aio);
493                         }
494                         GOTO(out, result);
495                 }
496
497                 count = result;
498                 pvec->ldp_file_offset = file_offset;
499                 pvec->ldp_pages = pages;
500
501                 result = ll_direct_rw_pages(env, io, count,
502                                             rw, inode, ldp_aio);
503                 /* We've submitted pages and can now remove the extra
504                  * reference for that
505                  */
506                 cl_sync_io_note(env, &ldp_aio->csd_sync, result);
507
508                 if (sync_submit) {
509                         rc2 = cl_sync_io_wait(env, &ldp_aio->csd_sync,
510                                              0);
511                         if (result == 0 && rc2)
512                                 result = rc2;
513                         LASSERT(ldp_aio->csd_creator_free);
514                         cl_sub_dio_free(ldp_aio);
515                 }
516                 if (unlikely(result < 0))
517                         GOTO(out, result);
518
519                 iov_iter_advance(iter, count);
520                 tot_bytes += count;
521                 file_offset += count;
522         }
523
524 out:
525         ll_dio_aio->cda_bytes += tot_bytes;
526
527         if (rw == WRITE)
528                 vio->u.readwrite.vui_written += tot_bytes;
529         else
530                 vio->u.readwrite.vui_read += tot_bytes;
531
532         /* AIO is not supported on pipes, so we cannot return EIOCBQEUED like
533          * we normally would for both DIO and AIO here
534          */
535         if (result == 0 && !iov_iter_is_pipe(iter))
536                 result = -EIOCBQUEUED;
537
538         return result;
539 }
540
541 #if defined(HAVE_DIO_ITER)
542 static ssize_t ll_direct_IO(
543 #ifndef HAVE_IOV_ITER_RW
544              int rw,
545 #endif
546              struct kiocb *iocb, struct iov_iter *iter
547 #ifndef HAVE_DIRECTIO_2ARGS
548              , loff_t file_offset
549 #endif
550              )
551 {
552         int nrw;
553
554 #ifndef HAVE_IOV_ITER_RW
555         nrw = rw;
556 #else
557         nrw = iov_iter_rw(iter);
558 #endif
559
560         return ll_direct_IO_impl(iocb, iter, nrw);
561 }
562
563 #else /* !defined(HAVE_DIO_ITER) */
564
565 static ssize_t
566 ll_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
567              loff_t file_offset, unsigned long nr_segs)
568 {
569         struct iov_iter iter;
570
571         iov_iter_init(&iter, iov, nr_segs, iov_length(iov, nr_segs), 0);
572         return ll_direct_IO_impl(iocb, &iter, rw);
573 }
574
575 #endif /* !defined(HAVE_DIO_ITER) */
576
577 /**
578  * Prepare partially written-to page for a write.
579  * @pg is owned when passed in and disowned when it returns non-zero result to
580  * the caller.
581  */
582 static int ll_prepare_partial_page(const struct lu_env *env, struct cl_io *io,
583                                    struct cl_page *pg, struct file *file)
584 {
585         struct cl_attr *attr   = vvp_env_thread_attr(env);
586         struct cl_object *obj  = io->ci_obj;
587         struct vvp_page *vpg   = cl_object_page_slice(obj, pg);
588         loff_t          offset = cl_offset(obj, vvp_index(vpg));
589         int             result;
590         ENTRY;
591
592         cl_object_attr_lock(obj);
593         result = cl_object_attr_get(env, obj, attr);
594         cl_object_attr_unlock(obj);
595         if (result) {
596                 cl_page_disown(env, io, pg);
597                 GOTO(out, result);
598         }
599
600         /*
601          * If are writing to a new page, no need to read old data.
602          * The extent locking will have updated the KMS, and for our
603          * purposes here we can treat it like i_size.
604          */
605         if (attr->cat_kms <= offset) {
606                 char *kaddr = kmap_atomic(vpg->vpg_page);
607
608                 memset(kaddr, 0, cl_page_size(obj));
609                 kunmap_atomic(kaddr);
610                 GOTO(out, result = 0);
611         }
612
613         if (pg->cp_defer_uptodate) {
614                 pg->cp_ra_used = 1;
615                 GOTO(out, result = 0);
616         }
617
618         result = ll_io_read_page(env, io, pg, file);
619         if (result)
620                 GOTO(out, result);
621
622         /* ll_io_read_page() disowns the page */
623         result = cl_page_own(env, io, pg);
624         if (!result) {
625                 if (!PageUptodate(cl_page_vmpage(pg))) {
626                         cl_page_disown(env, io, pg);
627                         result = -EIO;
628                 }
629         } else if (result == -ENOENT) {
630                 /* page was truncated */
631                 result = -EAGAIN;
632         }
633         EXIT;
634
635 out:
636         return result;
637 }
638
639 static int ll_tiny_write_begin(struct page *vmpage, struct address_space *mapping)
640 {
641         /* Page must be present, up to date, dirty, and not in writeback. */
642         if (!vmpage || !PageUptodate(vmpage) || !PageDirty(vmpage) ||
643             PageWriteback(vmpage) || vmpage->mapping != mapping)
644                 return -ENODATA;
645
646         return 0;
647 }
648
649 static int ll_write_begin(struct file *file, struct address_space *mapping,
650                           loff_t pos, unsigned len, unsigned flags,
651                           struct page **pagep, void **fsdata)
652 {
653         struct ll_cl_context *lcc = NULL;
654         const struct lu_env  *env = NULL;
655         struct cl_io   *io = NULL;
656         struct cl_page *page = NULL;
657         struct inode *inode = file_inode(file);
658         struct cl_object *clob = ll_i2info(mapping->host)->lli_clob;
659         pgoff_t index = pos >> PAGE_SHIFT;
660         struct page *vmpage = NULL;
661         unsigned from = pos & (PAGE_SIZE - 1);
662         unsigned to = from + len;
663         int result = 0;
664         ENTRY;
665
666         CDEBUG(D_VFSTRACE, "Writing %lu of %d to %d bytes\n", index, from, len);
667
668         lcc = ll_cl_find(inode);
669         if (lcc == NULL) {
670                 vmpage = grab_cache_page_nowait(mapping, index);
671                 result = ll_tiny_write_begin(vmpage, mapping);
672                 GOTO(out, result);
673         }
674
675         env = lcc->lcc_env;
676         io  = lcc->lcc_io;
677
678         if (file->f_flags & O_DIRECT) {
679                 /* direct IO failed because it couldn't clean up cached pages,
680                  * this causes a problem for mirror write because the cached
681                  * page may belong to another mirror, which will result in
682                  * problem submitting the I/O. */
683                 if (io->ci_designated_mirror > 0)
684                         GOTO(out, result = -EBUSY);
685
686                 /**
687                  * Direct write can fall back to buffered read, but DIO is done
688                  * with lockless i/o, and buffered requires LDLM locking, so
689                  * in this case we must restart without lockless.
690                  */
691                 if (!io->ci_dio_lock) {
692                         io->ci_dio_lock = 1;
693                         io->ci_need_restart = 1;
694                         GOTO(out, result = -ENOLCK);
695                 }
696         }
697 again:
698         /* To avoid deadlock, try to lock page first. */
699         vmpage = grab_cache_page_nowait(mapping, index);
700
701         if (unlikely(vmpage == NULL ||
702                      PageDirty(vmpage) || PageWriteback(vmpage))) {
703                 struct vvp_io *vio = vvp_env_io(env);
704                 struct cl_page_list *plist = &vio->u.readwrite.vui_queue;
705
706                 /* if the page is already in dirty cache, we have to commit
707                  * the pages right now; otherwise, it may cause deadlock
708                  * because it holds page lock of a dirty page and request for
709                  * more grants. It's okay for the dirty page to be the first
710                  * one in commit page list, though. */
711                 if (vmpage != NULL && plist->pl_nr > 0) {
712                         unlock_page(vmpage);
713                         put_page(vmpage);
714                         vmpage = NULL;
715                 }
716
717                 /* commit pages and then wait for page lock */
718                 result = vvp_io_write_commit(env, io);
719                 if (result < 0)
720                         GOTO(out, result);
721
722                 if (vmpage == NULL) {
723                         vmpage = grab_cache_page_write_begin(mapping, index,
724                                                              flags);
725                         if (vmpage == NULL)
726                                 GOTO(out, result = -ENOMEM);
727                 }
728         }
729
730         /* page was truncated */
731         if (mapping != vmpage->mapping) {
732                 CDEBUG(D_VFSTRACE, "page: %lu was truncated\n", index);
733                 unlock_page(vmpage);
734                 put_page(vmpage);
735                 vmpage = NULL;
736                 goto again;
737         }
738
739         page = cl_page_find(env, clob, vmpage->index, vmpage, CPT_CACHEABLE);
740         if (IS_ERR(page))
741                 GOTO(out, result = PTR_ERR(page));
742
743         lcc->lcc_page = page;
744         lu_ref_add(&page->cp_reference, "cl_io", io);
745
746         cl_page_assume(env, io, page);
747         if (!PageUptodate(vmpage)) {
748                 /*
749                  * We're completely overwriting an existing page,
750                  * so _don't_ set it up to date until commit_write
751                  */
752                 if (from == 0 && to == PAGE_SIZE) {
753                         CL_PAGE_HEADER(D_PAGE, env, page, "full page write\n");
754                         POISON_PAGE(vmpage, 0x11);
755                 } else {
756                         /* TODO: can be optimized at OSC layer to check if it
757                          * is a lockless IO. In that case, it's not necessary
758                          * to read the data. */
759                         result = ll_prepare_partial_page(env, io, page, file);
760                         if (result) {
761                                 /* vmpage should have been unlocked */
762                                 put_page(vmpage);
763                                 vmpage = NULL;
764
765                                 if (result == -EAGAIN)
766                                         goto again;
767                                 GOTO(out, result);
768                         }
769                 }
770         }
771         EXIT;
772 out:
773         if (result < 0) {
774                 if (vmpage != NULL) {
775                         unlock_page(vmpage);
776                         put_page(vmpage);
777                 }
778                 /* On tiny_write failure, page and io are always null. */
779                 if (!IS_ERR_OR_NULL(page)) {
780                         lu_ref_del(&page->cp_reference, "cl_io", io);
781                         cl_page_put(env, page);
782                 }
783                 if (io)
784                         io->ci_result = result;
785         } else {
786                 *pagep = vmpage;
787                 *fsdata = lcc;
788         }
789         RETURN(result);
790 }
791
792 static int ll_tiny_write_end(struct file *file, struct address_space *mapping,
793                              loff_t pos, unsigned int len, unsigned int copied,
794                              struct page *vmpage)
795 {
796         struct cl_page *clpage = (struct cl_page *) vmpage->private;
797         loff_t kms = pos+copied;
798         loff_t to = kms & (PAGE_SIZE-1) ? kms & (PAGE_SIZE-1) : PAGE_SIZE;
799         __u16 refcheck;
800         struct lu_env *env = cl_env_get(&refcheck);
801         int rc = 0;
802
803         ENTRY;
804
805         if (IS_ERR(env)) {
806                 rc = PTR_ERR(env);
807                 goto out;
808         }
809
810         /* This page is dirty in cache, so it should have a cl_page pointer
811          * set in vmpage->private.
812          */
813         LASSERT(clpage != NULL);
814
815         if (copied == 0)
816                 goto out_env;
817
818         /* Update the underlying size information in the OSC/LOV objects this
819          * page is part of.
820          */
821         cl_page_touch(env, clpage, to);
822
823 out_env:
824         cl_env_put(env, &refcheck);
825
826 out:
827         /* Must return page unlocked. */
828         unlock_page(vmpage);
829
830         RETURN(rc);
831 }
832
833 static int ll_write_end(struct file *file, struct address_space *mapping,
834                         loff_t pos, unsigned len, unsigned copied,
835                         struct page *vmpage, void *fsdata)
836 {
837         struct ll_cl_context *lcc = fsdata;
838         const struct lu_env *env;
839         struct cl_io *io;
840         struct vvp_io *vio;
841         struct cl_page *page;
842         unsigned from = pos & (PAGE_SIZE - 1);
843         bool unplug = false;
844         int result = 0;
845         ENTRY;
846
847         put_page(vmpage);
848
849         CDEBUG(D_VFSTRACE, "pos %llu, len %u, copied %u\n", pos, len, copied);
850
851         if (lcc == NULL) {
852                 result = ll_tiny_write_end(file, mapping, pos, len, copied,
853                                            vmpage);
854                 GOTO(out, result);
855         }
856
857         LASSERT(lcc != NULL);
858         env  = lcc->lcc_env;
859         page = lcc->lcc_page;
860         io   = lcc->lcc_io;
861         vio  = vvp_env_io(env);
862
863         LASSERT(cl_page_is_owned(page, io));
864         if (copied > 0) {
865                 struct cl_page_list *plist = &vio->u.readwrite.vui_queue;
866
867                 lcc->lcc_page = NULL; /* page will be queued */
868
869                 /* Add it into write queue */
870                 cl_page_list_add(plist, page, true);
871                 if (plist->pl_nr == 1) /* first page */
872                         vio->u.readwrite.vui_from = from;
873                 else
874                         LASSERT(from == 0);
875                 vio->u.readwrite.vui_to = from + copied;
876
877                 /* To address the deadlock in balance_dirty_pages() where
878                  * this dirty page may be written back in the same thread. */
879                 if (PageDirty(vmpage))
880                         unplug = true;
881
882                 /* We may have one full RPC, commit it soon */
883                 if (plist->pl_nr >= PTLRPC_MAX_BRW_PAGES)
884                         unplug = true;
885
886                 CL_PAGE_DEBUG(D_VFSTRACE, env, page,
887                               "queued page: %d.\n", plist->pl_nr);
888         } else {
889                 cl_page_disown(env, io, page);
890
891                 lcc->lcc_page = NULL;
892                 lu_ref_del(&page->cp_reference, "cl_io", io);
893                 cl_page_put(env, page);
894
895                 /* page list is not contiguous now, commit it now */
896                 unplug = true;
897         }
898         if (unplug || io->u.ci_wr.wr_sync)
899                 result = vvp_io_write_commit(env, io);
900
901         if (result < 0)
902                 io->ci_result = result;
903
904
905 out:
906         RETURN(result >= 0 ? copied : result);
907 }
908
909 #ifdef CONFIG_MIGRATION
910 static int ll_migratepage(struct address_space *mapping,
911                           struct page *newpage, struct page *page,
912                           enum migrate_mode mode)
913 {
914         /* Always fail page migration until we have a proper implementation */
915         return -EIO;
916 }
917 #endif
918
919 const struct address_space_operations ll_aops = {
920         .readpage       = ll_readpage,
921         .direct_IO      = ll_direct_IO,
922         .writepage      = ll_writepage,
923         .writepages     = ll_writepages,
924         .set_page_dirty = __set_page_dirty_nobuffers,
925         .write_begin    = ll_write_begin,
926         .write_end      = ll_write_end,
927         .invalidatepage = ll_invalidatepage,
928         .releasepage    = (void *)ll_releasepage,
929 #ifdef CONFIG_MIGRATION
930         .migratepage    = ll_migratepage,
931 #endif
932 };