Whamcloud - gitweb
a94ac61b3224a86147d9c65fb6da5a921d2174d2
[fs/lustre-release.git] / lustre / osc / osc_io.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * Implementation of cl_io for OSC layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  *   Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_OSC
43
44 #include "osc_cl_internal.h"
45
46 /** \addtogroup osc 
47  *  @{ 
48  */
49
50 /*****************************************************************************
51  *
52  * Type conversions.
53  *
54  */
55
56 static struct osc_req *cl2osc_req(const struct cl_req_slice *slice)
57 {
58         LINVRNT(slice->crs_dev->cd_lu_dev.ld_type == &osc_device_type);
59         return container_of0(slice, struct osc_req, or_cl);
60 }
61
62 static struct osc_io *cl2osc_io(const struct lu_env *env,
63                                 const struct cl_io_slice *slice)
64 {
65         struct osc_io *oio = container_of0(slice, struct osc_io, oi_cl);
66         LINVRNT(oio == osc_env_io(env));
67         return oio;
68 }
69
70 static struct osc_page *osc_cl_page_osc(struct cl_page *page)
71 {
72         const struct cl_page_slice *slice;
73
74         slice = cl_page_at(page, &osc_device_type);
75         LASSERT(slice != NULL);
76
77         return cl2osc_page(slice);
78 }
79
80
81 /*****************************************************************************
82  *
83  * io operations.
84  *
85  */
86
87 static void osc_io_fini(const struct lu_env *env, const struct cl_io_slice *io)
88 {
89 }
90
91 /**
92  * An implementation of cl_io_operations::cio_io_submit() method for osc
93  * layer. Iterates over pages in the in-queue, prepares each for io by calling
94  * cl_page_prep() and then either submits them through osc_io_submit_page()
95  * or, if page is already submitted, changes osc flags through
96  * osc_set_async_flags().
97  */
98 static int osc_io_submit(const struct lu_env *env,
99                          const struct cl_io_slice *ios,
100                          enum cl_req_type crt, struct cl_2queue *queue)
101 {
102         struct obd_export *exp;
103         struct cl_page    *page;
104         struct cl_page    *tmp;
105         struct client_obd *cli  = NULL;
106         struct osc_object *osc  = NULL; /* to keep gcc happy */
107         struct osc_page   *opg;
108         struct cl_io      *io;
109         CFS_LIST_HEAD     (list);
110
111         struct cl_page_list *qin      = &queue->c2_qin;
112         struct cl_page_list *qout     = &queue->c2_qout;
113         int queued = 0;
114         int result = 0;
115         int cmd;
116         int brw_flags;
117         int max_pages;
118
119         LASSERT(qin->pl_nr > 0);
120
121         CDEBUG(D_CACHE, "%d %d\n", qin->pl_nr, crt);
122
123         osc = cl2osc(ios->cis_obj);
124         exp = osc_export(osc);
125         cli = osc_cli(osc);
126         max_pages = cli->cl_max_pages_per_rpc;
127
128         cmd = crt == CRT_WRITE ? OBD_BRW_WRITE : OBD_BRW_READ;
129         brw_flags = osc_io_srvlock(cl2osc_io(env, ios)) ? OBD_BRW_SRVLOCK : 0;
130
131         /*
132          * NOTE: here @page is a top-level page. This is done to avoid
133          *       creation of sub-page-list.
134          */
135         cl_page_list_for_each_safe(page, tmp, qin) {
136                 struct osc_async_page *oap;
137
138                 /* Top level IO. */
139                 io = page->cp_owner;
140                 LASSERT(io != NULL);
141
142                 opg = osc_cl_page_osc(page);
143                 oap = &opg->ops_oap;
144                 LASSERT(osc == oap->oap_obj);
145
146                 if (!cfs_list_empty(&oap->oap_pending_item) ||
147                     !cfs_list_empty(&oap->oap_rpc_item)) {
148                         CDEBUG(D_CACHE, "Busy oap %p page %p for submit.\n",
149                                oap, opg);
150                         result = -EBUSY;
151                         break;
152                 }
153
154                 result = cl_page_prep(env, io, page, crt);
155                 if (result != 0) {
156                         LASSERT(result < 0);
157                         if (result != -EALREADY)
158                                 break;
159                         /*
160                          * Handle -EALREADY error: for read case, the page is
161                          * already in UPTODATE state; for write, the page
162                          * is not dirty.
163                          */
164                         result = 0;
165                         continue;
166                 }
167
168                 cl_page_list_move(qout, qin, page);
169                 oap->oap_async_flags = ASYNC_URGENT|ASYNC_READY;
170                 oap->oap_async_flags |= ASYNC_COUNT_STABLE;
171
172                 osc_page_submit(env, opg, crt, brw_flags);
173                 cfs_list_add_tail(&oap->oap_pending_item, &list);
174                 if (++queued == max_pages) {
175                         queued = 0;
176                         result = osc_queue_sync_pages(env, osc, &list, cmd,
177                                                       brw_flags);
178                         if (result < 0)
179                                 break;
180                 }
181         }
182
183         if (queued > 0)
184                 result = osc_queue_sync_pages(env, osc, &list, cmd, brw_flags);
185
186         CDEBUG(D_INFO, "%d/%d %d\n", qin->pl_nr, qout->pl_nr, result);
187         return qout->pl_nr > 0 ? 0 : result;
188 }
189
190 static void osc_page_touch_at(const struct lu_env *env,
191                               struct cl_object *obj, pgoff_t idx, unsigned to)
192 {
193         struct lov_oinfo  *loi  = cl2osc(obj)->oo_oinfo;
194         struct cl_attr    *attr = &osc_env_info(env)->oti_attr;
195         int valid;
196         __u64 kms;
197
198         /* offset within stripe */
199         kms = cl_offset(obj, idx) + to;
200
201         cl_object_attr_lock(obj);
202         /*
203          * XXX old code used
204          *
205          *         ll_inode_size_lock(inode, 0); lov_stripe_lock(lsm);
206          *
207          * here
208          */
209         CDEBUG(D_INODE, "stripe KMS %sincreasing "LPU64"->"LPU64" "LPU64"\n",
210                kms > loi->loi_kms ? "" : "not ", loi->loi_kms, kms,
211                loi->loi_lvb.lvb_size);
212
213         valid = 0;
214         if (kms > loi->loi_kms) {
215                 attr->cat_kms = kms;
216                 valid |= CAT_KMS;
217         }
218         if (kms > loi->loi_lvb.lvb_size) {
219                 attr->cat_size = kms;
220                 valid |= CAT_SIZE;
221         }
222         cl_object_attr_set(env, obj, attr, valid);
223         cl_object_attr_unlock(obj);
224 }
225
226 /**
227  * This is called when a page is accessed within file in a way that creates
228  * new page, if one were missing (i.e., if there were a hole at that place in
229  * the file, or accessed page is beyond the current file size). Examples:
230  * ->commit_write() and ->nopage() methods.
231  *
232  * Expand stripe KMS if necessary.
233  */
234 static void osc_page_touch(const struct lu_env *env,
235                            struct osc_page *opage, unsigned to)
236 {
237         struct cl_page    *page = opage->ops_cl.cpl_page;
238         struct cl_object  *obj  = opage->ops_cl.cpl_obj;
239
240         osc_page_touch_at(env, obj, page->cp_index, to);
241 }
242
243 /**
244  * Implements cl_io_operations::cio_prepare_write() method for osc layer.
245  *
246  * \retval -EIO transfer initiated against this osc will most likely fail
247  * \retval 0    transfer initiated against this osc will most likely succeed.
248  *
249  * The reason for this check is to immediately return an error to the caller
250  * in the case of a deactivated import. Note, that import can be deactivated
251  * later, while pages, dirtied by this IO, are still in the cache, but this is
252  * irrelevant, because that would still return an error to the application (if
253  * it does fsync), but many applications don't do fsync because of performance
254  * issues, and we wanted to return an -EIO at write time to notify the
255  * application.
256  */
257 static int osc_io_prepare_write(const struct lu_env *env,
258                                 const struct cl_io_slice *ios,
259                                 const struct cl_page_slice *slice,
260                                 unsigned from, unsigned to)
261 {
262         struct osc_device *dev = lu2osc_dev(slice->cpl_obj->co_lu.lo_dev);
263         struct obd_import *imp = class_exp2cliimp(dev->od_exp);
264         struct osc_io     *oio = cl2osc_io(env, ios);
265         int result = 0;
266         ENTRY;
267
268         /*
269          * This implements OBD_BRW_CHECK logic from old client.
270          */
271
272         if (imp == NULL || imp->imp_invalid)
273                 result = -EIO;
274         if (result == 0 && oio->oi_lockless)
275                 /* this page contains `invalid' data, but who cares?
276                  * nobody can access the invalid data.
277                  * in osc_io_commit_write(), we're going to write exact
278                  * [from, to) bytes of this page to OST. -jay */
279                 cl_page_export(env, slice->cpl_page, 1);
280
281         RETURN(result);
282 }
283
284 static int osc_io_commit_write(const struct lu_env *env,
285                                const struct cl_io_slice *ios,
286                                const struct cl_page_slice *slice,
287                                unsigned from, unsigned to)
288 {
289         struct osc_io         *oio = cl2osc_io(env, ios);
290         struct osc_page       *opg = cl2osc_page(slice);
291         struct osc_object     *obj = cl2osc(opg->ops_cl.cpl_obj);
292         struct osc_async_page *oap = &opg->ops_oap;
293         ENTRY;
294
295         LASSERT(to > 0);
296         /*
297          * XXX instead of calling osc_page_touch() here and in
298          * osc_io_fault_start() it might be more logical to introduce
299          * cl_page_touch() method, that generic cl_io_commit_write() and page
300          * fault code calls.
301          */
302         osc_page_touch(env, cl2osc_page(slice), to);
303         if (!client_is_remote(osc_export(obj)) &&
304             cfs_capable(CFS_CAP_SYS_RESOURCE))
305                 oap->oap_brw_flags |= OBD_BRW_NOQUOTA;
306
307         if (oio->oi_lockless)
308                 /* see osc_io_prepare_write() for lockless io handling. */
309                 cl_page_clip(env, slice->cpl_page, from, to);
310
311         RETURN(0);
312 }
313
314 static int osc_io_fault_start(const struct lu_env *env,
315                               const struct cl_io_slice *ios)
316 {
317         struct cl_io       *io;
318         struct cl_fault_io *fio;
319
320         ENTRY;
321
322         io  = ios->cis_io;
323         fio = &io->u.ci_fault;
324         CDEBUG(D_INFO, "%lu %d %d\n",
325                fio->ft_index, fio->ft_writable, fio->ft_nob);
326         /*
327          * If mapping is writeable, adjust kms to cover this page,
328          * but do not extend kms beyond actual file size.
329          * See bug 10919.
330          */
331         if (fio->ft_writable)
332                 osc_page_touch_at(env, ios->cis_obj,
333                                   fio->ft_index, fio->ft_nob);
334         RETURN(0);
335 }
336
337 static int osc_async_upcall(void *a, int rc)
338 {
339         struct osc_async_cbargs *args = a;
340
341         args->opc_rc = rc;
342         cfs_complete(&args->opc_sync);
343         return 0;
344 }
345
346 #if defined(__KERNEL__)
347 /**
348  * Checks that there are no pages being written in the extent being truncated.
349  */
350 static int trunc_check_cb(const struct lu_env *env, struct cl_io *io,
351                           struct cl_page *page, void *cbdata)
352 {
353         const struct cl_page_slice *slice;
354         struct osc_page *ops;
355         struct osc_async_page *oap;
356         __u64 start = *(__u64 *)cbdata;
357
358         slice = cl_page_at(page, &osc_device_type);
359         LASSERT(slice != NULL);
360         ops = cl2osc_page(slice);
361         oap = &ops->ops_oap;
362
363         if (oap->oap_cmd & OBD_BRW_WRITE &&
364             !cfs_list_empty(&oap->oap_pending_item))
365                 CL_PAGE_DEBUG(D_ERROR, env, page, "exists " LPU64 "/%s.\n",
366                                 start, current->comm);
367
368 #ifdef __linux__
369         {
370                 cfs_page_t *vmpage = cl_page_vmpage(env, page);
371                 if (PageLocked(vmpage))
372                         CDEBUG(D_CACHE, "page %p index %lu locked for %d.\n",
373                                ops, page->cp_index,
374                                (oap->oap_cmd & OBD_BRW_RWMASK));
375         }
376 #endif
377
378         return CLP_GANG_OKAY;
379 }
380
381 static void osc_trunc_check(const struct lu_env *env, struct cl_io *io,
382                             struct osc_io *oio, __u64 size)
383 {
384         struct cl_object *clob;
385         int     partial;
386         pgoff_t start;
387
388         clob    = oio->oi_cl.cis_obj;
389         start   = cl_index(clob, size);
390         partial = cl_offset(clob, start) < size;
391
392         /*
393          * Complain if there are pages in the truncated region.
394          */
395         cl_page_gang_lookup(env, clob, io, start + partial, CL_PAGE_EOF,
396                             trunc_check_cb, (void *)&size);
397 }
398 #else /* __KERNEL__ */
399 static void osc_trunc_check(const struct lu_env *env, struct cl_io *io,
400                             struct osc_io *oio, __u64 size)
401 {
402         return;
403 }
404 #endif
405
406 static int osc_io_setattr_start(const struct lu_env *env,
407                                 const struct cl_io_slice *slice)
408 {
409         struct cl_io            *io     = slice->cis_io;
410         struct osc_io           *oio    = cl2osc_io(env, slice);
411         struct cl_object        *obj    = slice->cis_obj;
412         struct lov_oinfo        *loi    = cl2osc(obj)->oo_oinfo;
413         struct cl_attr          *attr   = &osc_env_info(env)->oti_attr;
414         struct obdo             *oa     = &oio->oi_oa;
415         struct osc_async_cbargs *cbargs = &oio->oi_cbarg;
416         __u64                    size   = io->u.ci_setattr.sa_attr.lvb_size;
417         unsigned int             ia_valid = io->u.ci_setattr.sa_valid;
418         int                      result = 0;
419         struct obd_info          oinfo = { { { 0 } } };
420
421         /* truncate cache dirty pages first */
422         if (cl_io_is_trunc(io))
423                 result = osc_cache_truncate_start(env, oio, cl2osc(obj), size);
424
425         if (result == 0 && oio->oi_lockless == 0) {
426                 cl_object_attr_lock(obj);
427                 result = cl_object_attr_get(env, obj, attr);
428                 if (result == 0) {
429                         struct ost_lvb *lvb = &io->u.ci_setattr.sa_attr;
430                         unsigned int cl_valid = 0;
431
432                         if (ia_valid & ATTR_SIZE) {
433                                 attr->cat_size = attr->cat_kms = size;
434                                 cl_valid = (CAT_SIZE | CAT_KMS);
435                         }
436                         if (ia_valid & ATTR_MTIME_SET) {
437                                 attr->cat_mtime = lvb->lvb_mtime;
438                                 cl_valid |= CAT_MTIME;
439                         }
440                         if (ia_valid & ATTR_ATIME_SET) {
441                                 attr->cat_atime = lvb->lvb_atime;
442                                 cl_valid |= CAT_ATIME;
443                         }
444                         if (ia_valid & ATTR_CTIME_SET) {
445                                 attr->cat_ctime = lvb->lvb_ctime;
446                                 cl_valid |= CAT_CTIME;
447                         }
448                         result = cl_object_attr_set(env, obj, attr, cl_valid);
449                 }
450                 cl_object_attr_unlock(obj);
451         }
452         memset(oa, 0, sizeof(*oa));
453         if (result == 0) {
454                 oa->o_id = loi->loi_id;
455                 oa->o_seq = loi->loi_seq;
456                 oa->o_mtime = attr->cat_mtime;
457                 oa->o_atime = attr->cat_atime;
458                 oa->o_ctime = attr->cat_ctime;
459                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP | OBD_MD_FLATIME |
460                         OBD_MD_FLCTIME | OBD_MD_FLMTIME;
461                 if (ia_valid & ATTR_SIZE) {
462                         oa->o_size = size;
463                         oa->o_blocks = OBD_OBJECT_EOF;
464                         oa->o_valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
465
466                         if (oio->oi_lockless) {
467                                 oa->o_flags = OBD_FL_SRVLOCK;
468                                 oa->o_valid |= OBD_MD_FLFLAGS;
469                         }
470                 } else {
471                         LASSERT(oio->oi_lockless == 0);
472                 }
473
474                 oinfo.oi_oa = oa;
475                 oinfo.oi_capa = io->u.ci_setattr.sa_capa;
476                 cfs_init_completion(&cbargs->opc_sync);
477
478                 if (ia_valid & ATTR_SIZE)
479                         result = osc_punch_base(osc_export(cl2osc(obj)),
480                                                 &oinfo, osc_async_upcall,
481                                                 cbargs, PTLRPCD_SET);
482                 else
483                         result = osc_setattr_async_base(osc_export(cl2osc(obj)),
484                                                         &oinfo, NULL,
485                                                         osc_async_upcall,
486                                                         cbargs, PTLRPCD_SET);
487         }
488         return result;
489 }
490
491 static void osc_io_setattr_end(const struct lu_env *env,
492                                const struct cl_io_slice *slice)
493 {
494         struct cl_io     *io  = slice->cis_io;
495         struct osc_io    *oio = cl2osc_io(env, slice);
496         struct cl_object *obj = slice->cis_obj;
497         struct osc_async_cbargs *cbargs = &oio->oi_cbarg;
498         int result;
499
500         cfs_wait_for_completion(&cbargs->opc_sync);
501
502         result = io->ci_result = cbargs->opc_rc;
503         if (result == 0) {
504                 if (oio->oi_lockless) {
505                         /* lockless truncate */
506                         struct osc_device *osd = lu2osc_dev(obj->co_lu.lo_dev);
507
508                         LASSERT(cl_io_is_trunc(io));
509                         /* XXX: Need a lock. */
510                         osd->od_stats.os_lockless_truncates++;
511                 }
512         }
513
514         if (cl_io_is_trunc(io)) {
515                 __u64 size = io->u.ci_setattr.sa_attr.lvb_size;
516                 osc_trunc_check(env, io, oio, size);
517                 if (oio->oi_trunc != NULL) {
518                         osc_cache_truncate_end(env, oio, cl2osc(obj));
519                         oio->oi_trunc = NULL;
520                 }
521         }
522 }
523
524 static int osc_io_read_start(const struct lu_env *env,
525                              const struct cl_io_slice *slice)
526 {
527         struct osc_io    *oio   = cl2osc_io(env, slice);
528         struct cl_object *obj   = slice->cis_obj;
529         struct cl_attr   *attr  = &osc_env_info(env)->oti_attr;
530         int              result = 0;
531         ENTRY;
532
533         if (oio->oi_lockless == 0) {
534                 cl_object_attr_lock(obj);
535                 result = cl_object_attr_get(env, obj, attr);
536                 if (result == 0) {
537                         attr->cat_atime = LTIME_S(CFS_CURRENT_TIME);
538                         result = cl_object_attr_set(env, obj, attr,
539                                                     CAT_ATIME);
540                 }
541                 cl_object_attr_unlock(obj);
542         }
543         RETURN(result);
544 }
545
546 static int osc_io_write_start(const struct lu_env *env,
547                               const struct cl_io_slice *slice)
548 {
549         struct osc_io    *oio   = cl2osc_io(env, slice);
550         struct cl_object *obj   = slice->cis_obj;
551         struct cl_attr   *attr  = &osc_env_info(env)->oti_attr;
552         int              result = 0;
553         ENTRY;
554
555         if (oio->oi_lockless == 0) {
556                 cl_object_attr_lock(obj);
557                 result = cl_object_attr_get(env, obj, attr);
558                 if (result == 0) {
559                         attr->cat_mtime = attr->cat_ctime =
560                                 LTIME_S(CFS_CURRENT_TIME);
561                         result = cl_object_attr_set(env, obj, attr,
562                                                     CAT_MTIME | CAT_CTIME);
563                 }
564                 cl_object_attr_unlock(obj);
565         }
566         RETURN(result);
567 }
568
569 static int osc_fsync_ost(const struct lu_env *env, struct osc_object *obj,
570                          struct cl_fsync_io *fio)
571 {
572         struct osc_io    *oio   = osc_env_io(env);
573         struct obdo      *oa    = &oio->oi_oa;
574         struct obd_info  *oinfo = &oio->oi_info;
575         struct lov_oinfo *loi   = obj->oo_oinfo;
576         struct osc_async_cbargs *cbargs = &oio->oi_cbarg;
577         int rc = 0;
578         ENTRY;
579
580         memset(oa, 0, sizeof(*oa));
581         oa->o_id = loi->loi_id;
582         oa->o_seq = loi->loi_seq;
583         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
584
585         /* reload size abd blocks for start and end of sync range */
586         oa->o_size = fio->fi_start;
587         oa->o_blocks = fio->fi_end;
588         oa->o_valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
589
590         obdo_set_parent_fid(oa, fio->fi_fid);
591
592         memset(oinfo, 0, sizeof(*oinfo));
593         oinfo->oi_oa = oa;
594         oinfo->oi_capa = fio->fi_capa;
595         cfs_init_completion(&cbargs->opc_sync);
596
597         rc = osc_sync_base(osc_export(obj), oinfo, osc_async_upcall, cbargs,
598                            PTLRPCD_SET);
599         RETURN(rc);
600 }
601
602 static int osc_io_fsync_start(const struct lu_env *env,
603                               const struct cl_io_slice *slice)
604 {
605         struct cl_io       *io  = slice->cis_io;
606         struct cl_fsync_io *fio = &io->u.ci_fsync;
607         struct cl_object   *obj = slice->cis_obj;
608         struct osc_object  *osc = cl2osc(obj);
609         pgoff_t start  = cl_index(obj, fio->fi_start);
610         pgoff_t end    = cl_index(obj, fio->fi_end);
611         int     result = 0;
612         ENTRY;
613
614         if (fio->fi_end == OBD_OBJECT_EOF)
615                 end = CL_PAGE_EOF;
616
617         result = osc_cache_writeback_range(env, osc, start, end, 0,
618                                            fio->fi_mode == CL_FSYNC_DISCARD);
619         if (result > 0) {
620                 fio->fi_nr_written += result;
621                 result = 0;
622         }
623         if (fio->fi_mode == CL_FSYNC_ALL) {
624                 int rc;
625
626                 /* we have to wait for writeback to finish before we can
627                  * send OST_SYNC RPC. This is bad because it causes extents
628                  * to be written osc by osc. However, we usually start
629                  * writeback before CL_FSYNC_ALL so this won't have any real
630                  * problem. */
631                 rc = osc_cache_wait_range(env, osc, start, end);
632                 if (result == 0)
633                         result = rc;
634                 rc = osc_fsync_ost(env, osc, fio);
635                 if (result == 0)
636                         result = rc;
637         }
638
639         RETURN(result);
640 }
641
642 static void osc_io_fsync_end(const struct lu_env *env,
643                              const struct cl_io_slice *slice)
644 {
645         struct cl_fsync_io *fio = &slice->cis_io->u.ci_fsync;
646         struct cl_object   *obj = slice->cis_obj;
647         pgoff_t start = cl_index(obj, fio->fi_start);
648         pgoff_t end   = cl_index(obj, fio->fi_end);
649         int result = 0;
650
651         if (fio->fi_mode == CL_FSYNC_LOCAL) {
652                 result = osc_cache_wait_range(env, cl2osc(obj), start, end);
653         } else if (fio->fi_mode == CL_FSYNC_ALL) {
654                 struct osc_io           *oio    = cl2osc_io(env, slice);
655                 struct osc_async_cbargs *cbargs = &oio->oi_cbarg;
656
657                 cfs_wait_for_completion(&cbargs->opc_sync);
658                 if (result == 0)
659                         result = cbargs->opc_rc;
660         }
661         slice->cis_io->ci_result = result;
662 }
663
664 static void osc_io_end(const struct lu_env *env,
665                        const struct cl_io_slice *slice)
666 {
667         struct osc_io *oio = cl2osc_io(env, slice);
668
669         if (oio->oi_active) {
670                 osc_extent_release(env, oio->oi_active);
671                 oio->oi_active = NULL;
672         }
673 }
674
675 static const struct cl_io_operations osc_io_ops = {
676         .op = {
677                 [CIT_READ] = {
678                         .cio_start  = osc_io_read_start,
679                         .cio_fini   = osc_io_fini
680                 },
681                 [CIT_WRITE] = {
682                         .cio_start  = osc_io_write_start,
683                         .cio_end    = osc_io_end,
684                         .cio_fini   = osc_io_fini
685                 },
686                 [CIT_SETATTR] = {
687                         .cio_start  = osc_io_setattr_start,
688                         .cio_end    = osc_io_setattr_end
689                 },
690                 [CIT_FAULT] = {
691                         .cio_start  = osc_io_fault_start,
692                         .cio_end    = osc_io_end,
693                         .cio_fini   = osc_io_fini
694                 },
695                 [CIT_FSYNC] = {
696                         .cio_start  = osc_io_fsync_start,
697                         .cio_end    = osc_io_fsync_end,
698                         .cio_fini   = osc_io_fini
699                 },
700                 [CIT_MISC] = {
701                         .cio_fini   = osc_io_fini
702                 }
703         },
704         .req_op = {
705                  [CRT_READ] = {
706                          .cio_submit    = osc_io_submit
707                  },
708                  [CRT_WRITE] = {
709                          .cio_submit    = osc_io_submit
710                  }
711          },
712         .cio_prepare_write = osc_io_prepare_write,
713         .cio_commit_write  = osc_io_commit_write
714 };
715
716 /*****************************************************************************
717  *
718  * Transfer operations.
719  *
720  */
721
722 static int osc_req_prep(const struct lu_env *env,
723                         const struct cl_req_slice *slice)
724 {
725         return 0;
726 }
727
728 static void osc_req_completion(const struct lu_env *env,
729                                const struct cl_req_slice *slice, int ioret)
730 {
731         struct osc_req *or;
732
733         or = cl2osc_req(slice);
734         OBD_SLAB_FREE_PTR(or, osc_req_kmem);
735 }
736
737 /**
738  * Implementation of struct cl_req_operations::cro_attr_set() for osc
739  * layer. osc is responsible for struct obdo::o_id and struct obdo::o_seq
740  * fields.
741  */
742 static void osc_req_attr_set(const struct lu_env *env,
743                              const struct cl_req_slice *slice,
744                              const struct cl_object *obj,
745                              struct cl_req_attr *attr, obd_valid flags)
746 {
747         struct lov_oinfo *oinfo;
748         struct cl_req    *clerq;
749         struct cl_page   *apage; /* _some_ page in @clerq */
750         struct cl_lock   *lock;  /* _some_ lock protecting @apage */
751         struct osc_lock  *olck;
752         struct osc_page  *opg;
753         struct obdo      *oa;
754
755         oa = attr->cra_oa;
756         oinfo = cl2osc(obj)->oo_oinfo;
757         if (flags & OBD_MD_FLID) {
758                 oa->o_id = oinfo->loi_id;
759                 oa->o_valid |= OBD_MD_FLID;
760         }
761         if (flags & OBD_MD_FLGROUP) {
762                 oa->o_seq = oinfo->loi_seq;
763                 oa->o_valid |= OBD_MD_FLGROUP;
764         }
765         if (flags & OBD_MD_FLHANDLE) {
766                 clerq = slice->crs_req;
767                 LASSERT(!cfs_list_empty(&clerq->crq_pages));
768                 apage = container_of(clerq->crq_pages.next,
769                                      struct cl_page, cp_flight);
770                 opg = osc_cl_page_osc(apage);
771                 apage = opg->ops_cl.cpl_page; /* now apage is a sub-page */
772                 lock = cl_lock_at_page(env, apage->cp_obj, apage, NULL, 1, 1);
773                 if (lock == NULL) {
774                         struct cl_object_header *head;
775                         struct cl_lock          *scan;
776
777                         head = cl_object_header(apage->cp_obj);
778                         cfs_list_for_each_entry(scan, &head->coh_locks,
779                                                 cll_linkage)
780                                 CL_LOCK_DEBUG(D_ERROR, env, scan,
781                                               "no cover page!\n");
782                         CL_PAGE_DEBUG(D_ERROR, env, apage,
783                                       "dump uncover page!\n");
784                         libcfs_debug_dumpstack(NULL);
785                         LBUG();
786                 }
787
788                 olck = osc_lock_at(lock);
789                 LASSERT(olck != NULL);
790                 LASSERT(ergo(opg->ops_srvlock, olck->ols_lock == NULL));
791                 /* check for lockless io. */
792                 if (olck->ols_lock != NULL) {
793                         oa->o_handle = olck->ols_lock->l_remote_handle;
794                         oa->o_valid |= OBD_MD_FLHANDLE;
795                 }
796                 cl_lock_put(env, lock);
797         }
798 }
799
800 static const struct cl_req_operations osc_req_ops = {
801         .cro_prep       = osc_req_prep,
802         .cro_attr_set   = osc_req_attr_set,
803         .cro_completion = osc_req_completion
804 };
805
806
807 int osc_io_init(const struct lu_env *env,
808                 struct cl_object *obj, struct cl_io *io)
809 {
810         struct osc_io *oio = osc_env_io(env);
811
812         CL_IO_SLICE_CLEAN(oio, oi_cl);
813         cl_io_slice_add(io, &oio->oi_cl, obj, &osc_io_ops);
814         return 0;
815 }
816
817 int osc_req_init(const struct lu_env *env, struct cl_device *dev,
818                  struct cl_req *req)
819 {
820         struct osc_req *or;
821         int result;
822
823         OBD_SLAB_ALLOC_PTR_GFP(or, osc_req_kmem, CFS_ALLOC_IO);
824         if (or != NULL) {
825                 cl_req_slice_add(req, &or->or_cl, dev, &osc_req_ops);
826                 result = 0;
827         } else
828                 result = -ENOMEM;
829         return result;
830 }
831
832 /** @} osc */