Whamcloud - gitweb
4f70a684960d81e7dccc4e01fb7aea201846f223
[fs/lustre-release.git] / lustre / lov / lov_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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 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  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * Implementation of cl_io for LOV layer.
33  *
34  *   Author: Nikita Danilov <nikita.danilov@sun.com>
35  *   Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_LOV
39
40 #include "lov_cl_internal.h"
41
42 /** \addtogroup lov
43  *  @{
44  */
45
46 static inline struct lov_io_sub *lov_sub_alloc(struct lov_io *lio, int index)
47 {
48         struct lov_io_sub *sub;
49
50         if (lio->lis_nr_subios == 0) {
51                 LASSERT(lio->lis_single_subio_index == -1);
52                 sub = &lio->lis_single_subio;
53                 lio->lis_single_subio_index = index;
54                 memset(sub, 0, sizeof(*sub));
55         } else {
56                 OBD_ALLOC_PTR(sub);
57         }
58
59         if (sub) {
60                 INIT_LIST_HEAD(&sub->sub_list);
61                 INIT_LIST_HEAD(&sub->sub_linkage);
62                 sub->sub_subio_index = index;
63         }
64
65         return sub;
66 }
67
68 static inline void lov_sub_free(struct lov_io *lio, struct lov_io_sub *sub)
69 {
70         if (sub->sub_subio_index == lio->lis_single_subio_index) {
71                 LASSERT(sub == &lio->lis_single_subio);
72                 lio->lis_single_subio_index = -1;
73         } else {
74                 OBD_FREE_PTR(sub);
75         }
76 }
77
78 static void lov_io_sub_fini(const struct lu_env *env, struct lov_io *lio,
79                             struct lov_io_sub *sub)
80 {
81         ENTRY;
82
83         cl_io_fini(sub->sub_env, &sub->sub_io);
84
85         if (sub->sub_env && !IS_ERR(sub->sub_env)) {
86                 cl_env_put(sub->sub_env, &sub->sub_refcheck);
87                 sub->sub_env = NULL;
88         }
89         EXIT;
90 }
91
92 static inline bool
93 is_index_within_mirror(struct lov_object *lov, int index, int mirror_index)
94 {
95         struct lov_layout_composite *comp = &lov->u.composite;
96         struct lov_mirror_entry *lre = &comp->lo_mirrors[mirror_index];
97
98         return (index >= lre->lre_start && index <= lre->lre_end);
99 }
100
101 static int lov_io_sub_init(const struct lu_env *env, struct lov_io *lio,
102                            struct lov_io_sub *sub)
103 {
104         struct lov_object *lov = lio->lis_object;
105         struct cl_io *sub_io;
106         struct cl_object *sub_obj;
107         struct cl_io *io = lio->lis_cl.cis_io;
108         int index = lov_comp_entry(sub->sub_subio_index);
109         int stripe = lov_comp_stripe(sub->sub_subio_index);
110         int result = 0;
111         LASSERT(sub->sub_env == NULL);
112         ENTRY;
113
114         if (unlikely(!lov_r0(lov, index)->lo_sub ||
115                      !lov_r0(lov, index)->lo_sub[stripe]))
116                 RETURN(-EIO);
117
118         LASSERTF(is_index_within_mirror(lov, index, lio->lis_mirror_index),
119                  DFID "iot = %d, index = %d, mirror = %d\n",
120                  PFID(lu_object_fid(lov2lu(lov))), io->ci_type, index,
121                  lio->lis_mirror_index);
122
123         /* obtain new environment */
124         sub->sub_env = cl_env_get(&sub->sub_refcheck);
125         if (IS_ERR(sub->sub_env))
126                 result = PTR_ERR(sub->sub_env);
127
128         sub_obj = lovsub2cl(lov_r0(lov, index)->lo_sub[stripe]);
129         sub_io  = &sub->sub_io;
130
131         sub_io->ci_obj    = sub_obj;
132         sub_io->ci_result = 0;
133
134         sub_io->ci_parent  = io;
135         sub_io->ci_lockreq = io->ci_lockreq;
136         sub_io->ci_type    = io->ci_type;
137         sub_io->ci_no_srvlock = io->ci_no_srvlock;
138         sub_io->ci_noatime = io->ci_noatime;
139         sub_io->ci_pio = io->ci_pio;
140         sub_io->ci_lock_no_expand = io->ci_lock_no_expand;
141         sub_io->ci_ndelay = io->ci_ndelay;
142         sub_io->ci_layout_version = io->ci_layout_version;
143
144         result = cl_io_sub_init(sub->sub_env, sub_io, io->ci_type, sub_obj);
145
146         if (result < 0)
147                 lov_io_sub_fini(env, lio, sub);
148
149         RETURN(result);
150 }
151
152 struct lov_io_sub *lov_sub_get(const struct lu_env *env,
153                                struct lov_io *lio, int index)
154 {
155         struct lov_io_sub *sub;
156         int rc = 0;
157
158         ENTRY;
159
160         list_for_each_entry(sub, &lio->lis_subios, sub_list) {
161                 if (sub->sub_subio_index == index) {
162                         rc = 1;
163                         break;
164                 }
165         }
166
167         if (rc == 0) {
168                 sub = lov_sub_alloc(lio, index);
169                 if (!sub)
170                         GOTO(out, rc = -ENOMEM);
171
172                 rc = lov_io_sub_init(env, lio, sub);
173                 if (rc < 0) {
174                         lov_sub_free(lio, sub);
175                         GOTO(out, rc);
176                 }
177
178                 list_add_tail(&sub->sub_list, &lio->lis_subios);
179                 lio->lis_nr_subios++;
180         }
181 out:
182         if (rc < 0)
183                 sub = ERR_PTR(rc);
184         RETURN(sub);
185 }
186
187 /*****************************************************************************
188  *
189  * Lov io operations.
190  *
191  */
192
193 int lov_page_index(const struct cl_page *page)
194 {
195         const struct cl_page_slice *slice;
196         ENTRY;
197
198         slice = cl_page_at(page, &lov_device_type);
199         LASSERT(slice != NULL);
200         LASSERT(slice->cpl_obj != NULL);
201
202         RETURN(cl2lov_page(slice)->lps_index);
203 }
204
205 static int lov_io_subio_init(const struct lu_env *env, struct lov_io *lio,
206                              struct cl_io *io)
207 {
208         ENTRY;
209
210         LASSERT(lio->lis_object != NULL);
211
212         INIT_LIST_HEAD(&lio->lis_subios);
213         lio->lis_single_subio_index = -1;
214         lio->lis_nr_subios = 0;
215
216         RETURN(0);
217 }
218
219 /**
220  * Decide if it will need write intent RPC
221  */
222 static int lov_io_mirror_write_intent(struct lov_io *lio,
223         struct lov_object *obj, struct cl_io *io)
224 {
225         struct lov_layout_composite *comp = &obj->u.composite;
226         struct lu_extent *ext = &io->ci_write_intent;
227         struct lov_mirror_entry *lre;
228         struct lov_mirror_entry *primary;
229         struct lov_layout_entry *lle;
230         size_t count = 0;
231         ENTRY;
232
233         *ext = (typeof(*ext)) { lio->lis_pos, lio->lis_endpos };
234         io->ci_need_write_intent = 0;
235
236         if (!(io->ci_type == CIT_WRITE || cl_io_is_trunc(io) ||
237               cl_io_is_mkwrite(io)))
238                 RETURN(0);
239
240         /*
241          * FLR: check if it needs to send a write intent RPC to server.
242          * Writing to sync_pending file needs write intent RPC to change
243          * the file state back to write_pending, so that the layout version
244          * can be increased when the state changes to sync_pending at a later
245          * time. Otherwise there exists a chance that an evicted client may
246          * dirty the file data while resync client is working on it.
247          * Designated I/O is allowed for resync workload.
248          */
249         if (lov_flr_state(obj) == LCM_FL_RDONLY ||
250             (lov_flr_state(obj) == LCM_FL_SYNC_PENDING &&
251              io->ci_designated_mirror == 0)) {
252                 io->ci_need_write_intent = 1;
253                 RETURN(0);
254         }
255
256         LASSERT((lov_flr_state(obj) == LCM_FL_WRITE_PENDING));
257         LASSERT(comp->lo_preferred_mirror >= 0);
258
259         /*
260          * need to iterate all components to see if there are
261          * multiple components covering the writing component
262          */
263         primary = &comp->lo_mirrors[comp->lo_preferred_mirror];
264         LASSERT(!primary->lre_stale);
265         lov_foreach_mirror_layout_entry(obj, lle, primary) {
266                 LASSERT(lle->lle_valid);
267                 if (!lu_extent_is_overlapped(ext, lle->lle_extent))
268                         continue;
269
270                 ext->e_start = MIN(ext->e_start, lle->lle_extent->e_start);
271                 ext->e_end = MAX(ext->e_end, lle->lle_extent->e_end);
272                 ++count;
273         }
274         if (count == 0) {
275                 CERROR(DFID ": cannot find any valid components covering "
276                        "file extent "DEXT", mirror: %d\n",
277                        PFID(lu_object_fid(lov2lu(obj))), PEXT(ext),
278                        primary->lre_mirror_id);
279                 RETURN(-EIO);
280         }
281
282         count = 0;
283         lov_foreach_mirror_entry(obj, lre) {
284                 if (lre == primary)
285                         continue;
286
287                 lov_foreach_mirror_layout_entry(obj, lle, lre) {
288                         if (!lle->lle_valid)
289                                 continue;
290
291                         if (lu_extent_is_overlapped(ext, lle->lle_extent)) {
292                                 ++count;
293                                 break;
294                         }
295                 }
296         }
297
298         CDEBUG(D_VFSTRACE, DFID "there are %zd components to be staled to "
299                "modify file extent "DEXT", iot: %d\n",
300                PFID(lu_object_fid(lov2lu(obj))), count, PEXT(ext), io->ci_type);
301
302         io->ci_need_write_intent = count > 0;
303
304         RETURN(0);
305 }
306
307 static int lov_io_mirror_init(struct lov_io *lio, struct lov_object *obj,
308                                struct cl_io *io)
309 {
310         struct lov_layout_composite *comp = &obj->u.composite;
311         int index;
312         int i;
313         int result;
314         ENTRY;
315
316         if (!lov_is_flr(obj)) {
317                 LASSERT(comp->lo_preferred_mirror == 0);
318                 lio->lis_mirror_index = comp->lo_preferred_mirror;
319                 io->ci_ndelay = 0;
320                 RETURN(0);
321         }
322
323         /* transfer the layout version for verification */
324         if (io->ci_layout_version == 0)
325                 io->ci_layout_version = obj->lo_lsm->lsm_layout_gen;
326
327         /* find the corresponding mirror for designated mirror IO */
328         if (io->ci_designated_mirror > 0) {
329                 struct lov_mirror_entry *entry;
330
331                 LASSERT(!io->ci_ndelay);
332
333                 CDEBUG(D_LAYOUT, "designated I/O mirror state: %d\n",
334                       lov_flr_state(obj));
335
336                 if ((cl_io_is_trunc(io) || io->ci_type == CIT_WRITE) &&
337                     (io->ci_layout_version != obj->lo_lsm->lsm_layout_gen)) {
338                         /*
339                          * For resync I/O, the ci_layout_version was the layout
340                          * version when resync starts. If it doesn't match the
341                          * current object layout version, it means the layout
342                          * has been changed
343                          */
344                         RETURN(-ESTALE);
345                 }
346
347                 io->ci_layout_version |= LU_LAYOUT_RESYNC;
348
349                 index = 0;
350                 lio->lis_mirror_index = -1;
351                 lov_foreach_mirror_entry(obj, entry) {
352                         if (entry->lre_mirror_id ==
353                             io->ci_designated_mirror) {
354                                 lio->lis_mirror_index = index;
355                                 break;
356                         }
357
358                         index++;
359                 }
360
361                 RETURN(lio->lis_mirror_index < 0 ? -EINVAL : 0);
362         }
363
364         result = lov_io_mirror_write_intent(lio, obj, io);
365         if (result)
366                 RETURN(result);
367
368         if (io->ci_need_write_intent) {
369                 CDEBUG(D_VFSTRACE, DFID " need write intent for [%llu, %llu)\n",
370                        PFID(lu_object_fid(lov2lu(obj))),
371                        lio->lis_pos, lio->lis_endpos);
372
373                 if (cl_io_is_trunc(io)) {
374                         /**
375                          * for truncate, we uses [size, EOF) to judge whether
376                          * a write intent needs to be send, but we need to
377                          * restore the write extent to [0, size).
378                          */
379                         io->ci_write_intent.e_start = 0;
380                         io->ci_write_intent.e_end =
381                                         io->u.ci_setattr.sa_attr.lvb_size;
382                 }
383                 /* stop cl_io_init() loop */
384                 RETURN(1);
385         }
386
387         if (io->ci_ndelay_tried == 0 || /* first time to try */
388             /* reset the mirror index if layout has changed */
389             lio->lis_mirror_layout_gen != obj->lo_lsm->lsm_layout_gen) {
390                 lio->lis_mirror_layout_gen = obj->lo_lsm->lsm_layout_gen;
391                 index = lio->lis_mirror_index = comp->lo_preferred_mirror;
392         } else {
393                 index = lio->lis_mirror_index;
394                 LASSERT(index >= 0);
395
396                 /* move mirror index to the next one */
397                 index = (index + 1) % comp->lo_mirror_count;
398         }
399
400         for (i = 0; i < comp->lo_mirror_count; i++) {
401                 struct lu_extent ext = { .e_start = lio->lis_pos,
402                                          .e_end   = lio->lis_pos + 1 };
403                 struct lov_mirror_entry *lre;
404                 struct lov_layout_entry *lle;
405                 bool found = false;
406
407                 lre = &comp->lo_mirrors[(index + i) % comp->lo_mirror_count];
408                 if (!lre->lre_valid)
409                         continue;
410
411                 lov_foreach_mirror_layout_entry(obj, lle, lre) {
412                         if (!lle->lle_valid)
413                                 continue;
414
415                         if (lu_extent_is_overlapped(&ext, lle->lle_extent)) {
416                                 found = true;
417                                 break;
418                         }
419                 }
420
421                 if (found) {
422                         index = (index + i) % comp->lo_mirror_count;
423                         break;
424                 }
425         }
426         if (i == comp->lo_mirror_count) {
427                 CERROR(DFID": failed to find a component covering "
428                        "I/O region at %llu\n",
429                        PFID(lu_object_fid(lov2lu(obj))), lio->lis_pos);
430
431                 dump_lsm(D_ERROR, obj->lo_lsm);
432
433                 RETURN(-EIO);
434         }
435
436         CDEBUG(D_VFSTRACE, DFID ": flr state: %d, move mirror from %d to %d, "
437                "have retried: %d, mirror count: %d\n",
438                PFID(lu_object_fid(lov2lu(obj))), lov_flr_state(obj),
439                lio->lis_mirror_index, index, io->ci_ndelay_tried,
440                comp->lo_mirror_count);
441
442         lio->lis_mirror_index = index;
443
444         /*
445          * FLR: if all mirrors have been tried once, most likely the network
446          * of this client has been partitioned. We should relinquish CPU for
447          * a while before trying again.
448          */
449         ++io->ci_ndelay_tried;
450         if (io->ci_ndelay && io->ci_ndelay_tried >= comp->lo_mirror_count) {
451                 set_current_state(TASK_INTERRUPTIBLE);
452                 schedule_timeout(msecs_to_jiffies(MSEC_PER_SEC)); /* 10ms */
453                 if (signal_pending(current))
454                         RETURN(-EINTR);
455
456                 /* reset retry counter */
457                 io->ci_ndelay_tried = 1;
458         }
459
460         CDEBUG(D_VFSTRACE, "use %sdelayed RPC state for this IO\n",
461                io->ci_ndelay ? "non-" : "");
462
463         RETURN(0);
464 }
465
466 static int lov_io_slice_init(struct lov_io *lio,
467                              struct lov_object *obj, struct cl_io *io)
468 {
469         int index;
470         int result = 0;
471         ENTRY;
472
473         io->ci_result = 0;
474         lio->lis_object = obj;
475
476         LASSERT(obj->lo_lsm != NULL);
477
478         switch (io->ci_type) {
479         case CIT_READ:
480         case CIT_WRITE:
481                 lio->lis_pos = io->u.ci_rw.rw_range.cir_pos;
482                 lio->lis_endpos = lio->lis_pos + io->u.ci_rw.rw_range.cir_count;
483                 lio->lis_io_endpos = lio->lis_endpos;
484                 if (cl_io_is_append(io)) {
485                         LASSERT(io->ci_type == CIT_WRITE);
486
487                         /*
488                          * If there is LOV EA hole, then we may cannot locate
489                          * the current file-tail exactly.
490                          */
491                         if (unlikely(obj->lo_lsm->lsm_entries[0]->lsme_pattern &
492                                      LOV_PATTERN_F_HOLE))
493                                 GOTO(out, result = -EIO);
494
495                         lio->lis_pos = 0;
496                         lio->lis_endpos = OBD_OBJECT_EOF;
497                 }
498                 break;
499
500         case CIT_SETATTR:
501                 if (cl_io_is_trunc(io))
502                         lio->lis_pos = io->u.ci_setattr.sa_attr.lvb_size;
503                 else
504                         lio->lis_pos = 0;
505                 lio->lis_endpos = OBD_OBJECT_EOF;
506                 break;
507
508         case CIT_DATA_VERSION:
509                 lio->lis_pos = 0;
510                 lio->lis_endpos = OBD_OBJECT_EOF;
511                 break;
512
513         case CIT_FAULT: {
514                 pgoff_t index = io->u.ci_fault.ft_index;
515
516                 lio->lis_pos = cl_offset(io->ci_obj, index);
517                 lio->lis_endpos = cl_offset(io->ci_obj, index + 1);
518                 break;
519         }
520
521         case CIT_FSYNC: {
522                 lio->lis_pos = io->u.ci_fsync.fi_start;
523                 lio->lis_endpos = io->u.ci_fsync.fi_end;
524                 break;
525         }
526
527         case CIT_LADVISE: {
528                 lio->lis_pos = io->u.ci_ladvise.li_start;
529                 lio->lis_endpos = io->u.ci_ladvise.li_end;
530                 break;
531         }
532
533         case CIT_GLIMPSE:
534                 lio->lis_pos = 0;
535                 lio->lis_endpos = OBD_OBJECT_EOF;
536
537                 if (lov_flr_state(obj) == LCM_FL_RDONLY &&
538                     !OBD_FAIL_CHECK(OBD_FAIL_FLR_GLIMPSE_IMMUTABLE))
539                         /* SoM is accurate, no need glimpse */
540                         GOTO(out, result = 1);
541                 break;
542
543         case CIT_MISC:
544                 lio->lis_pos = 0;
545                 lio->lis_endpos = OBD_OBJECT_EOF;
546                 break;
547
548         default:
549                 LBUG();
550         }
551
552         result = lov_io_mirror_init(lio, obj, io);
553         if (result)
554                 GOTO(out, result);
555
556         /* check if it needs to instantiate layout */
557         if (!(io->ci_type == CIT_WRITE || cl_io_is_mkwrite(io) ||
558               (cl_io_is_trunc(io) && io->u.ci_setattr.sa_attr.lvb_size > 0)))
559                 GOTO(out, result = 0);
560
561         /*
562          * for truncate, it only needs to instantiate the components
563          * before the truncated size.
564          */
565         if (cl_io_is_trunc(io)) {
566                 io->ci_write_intent.e_start = 0;
567                 io->ci_write_intent.e_end = io->u.ci_setattr.sa_attr.lvb_size;
568         } else {
569                 io->ci_write_intent.e_start = lio->lis_pos;
570                 io->ci_write_intent.e_end = lio->lis_endpos;
571         }
572
573         index = 0;
574         lov_foreach_io_layout(index, lio, &io->ci_write_intent) {
575                 if (!lsm_entry_inited(obj->lo_lsm, index)) {
576                         io->ci_need_write_intent = 1;
577                         break;
578                 }
579         }
580
581         if (io->ci_need_write_intent && io->ci_designated_mirror > 0) {
582                 /*
583                  * REINT_SYNC RPC has already tried to instantiate all of the
584                  * components involved, obviously it didn't succeed. Skip this
585                  * mirror for now. The server won't be able to figure out
586                  * which mirror it should instantiate components
587                  */
588                 CERROR(DFID": trying to instantiate components for designated "
589                        "I/O, file state: %d\n",
590                        PFID(lu_object_fid(lov2lu(obj))), lov_flr_state(obj));
591
592                 io->ci_need_write_intent = 0;
593                 GOTO(out, result = -EIO);
594         }
595
596         if (io->ci_need_write_intent)
597                 GOTO(out, result = 1);
598
599         EXIT;
600
601 out:
602         return result;
603 }
604
605 static void lov_io_fini(const struct lu_env *env, const struct cl_io_slice *ios)
606 {
607         struct lov_io *lio = cl2lov_io(env, ios);
608         struct lov_object *lov = cl2lov(ios->cis_obj);
609
610         ENTRY;
611
612         LASSERT(list_empty(&lio->lis_active));
613
614         while (!list_empty(&lio->lis_subios)) {
615                 struct lov_io_sub *sub = list_entry(lio->lis_subios.next,
616                                                     struct lov_io_sub,
617                                                     sub_list);
618
619                 list_del_init(&sub->sub_list);
620                 lio->lis_nr_subios--;
621
622                 lov_io_sub_fini(env, lio, sub);
623                 lov_sub_free(lio, sub);
624         }
625         LASSERT(lio->lis_nr_subios == 0);
626
627         LASSERT(atomic_read(&lov->lo_active_ios) > 0);
628         if (atomic_dec_and_test(&lov->lo_active_ios))
629                 wake_up_all(&lov->lo_waitq);
630         EXIT;
631 }
632
633 static void lov_io_sub_inherit(struct lov_io_sub *sub, struct lov_io *lio,
634                                loff_t start, loff_t end)
635 {
636         struct cl_io *io = &sub->sub_io;
637         struct lov_stripe_md *lsm = lio->lis_object->lo_lsm;
638         struct cl_io *parent = lio->lis_cl.cis_io;
639         int index = lov_comp_entry(sub->sub_subio_index);
640         int stripe = lov_comp_stripe(sub->sub_subio_index);
641
642         io->ci_pio = parent->ci_pio;
643         switch (io->ci_type) {
644         case CIT_SETATTR: {
645                 io->u.ci_setattr.sa_attr = parent->u.ci_setattr.sa_attr;
646                 io->u.ci_setattr.sa_attr_flags =
647                         parent->u.ci_setattr.sa_attr_flags;
648                 io->u.ci_setattr.sa_avalid = parent->u.ci_setattr.sa_avalid;
649                 io->u.ci_setattr.sa_xvalid = parent->u.ci_setattr.sa_xvalid;
650                 io->u.ci_setattr.sa_stripe_index = stripe;
651                 io->u.ci_setattr.sa_parent_fid =
652                                         parent->u.ci_setattr.sa_parent_fid;
653                 if (cl_io_is_trunc(io)) {
654                         loff_t new_size = parent->u.ci_setattr.sa_attr.lvb_size;
655
656                         new_size = lov_size_to_stripe(lsm, index, new_size,
657                                                       stripe);
658                         io->u.ci_setattr.sa_attr.lvb_size = new_size;
659                 }
660                 lov_lsm2layout(lsm, lsm->lsm_entries[index],
661                                &io->u.ci_setattr.sa_layout);
662                 break;
663         }
664         case CIT_DATA_VERSION: {
665                 io->u.ci_data_version.dv_data_version = 0;
666                 io->u.ci_data_version.dv_flags =
667                         parent->u.ci_data_version.dv_flags;
668                 break;
669         }
670         case CIT_FAULT: {
671                 struct cl_object *obj = parent->ci_obj;
672                 loff_t off = cl_offset(obj, parent->u.ci_fault.ft_index);
673
674                 io->u.ci_fault = parent->u.ci_fault;
675                 off = lov_size_to_stripe(lsm, index, off, stripe);
676                 io->u.ci_fault.ft_index = cl_index(obj, off);
677                 break;
678         }
679         case CIT_FSYNC: {
680                 io->u.ci_fsync.fi_start = start;
681                 io->u.ci_fsync.fi_end = end;
682                 io->u.ci_fsync.fi_fid = parent->u.ci_fsync.fi_fid;
683                 io->u.ci_fsync.fi_mode = parent->u.ci_fsync.fi_mode;
684                 break;
685         }
686         case CIT_READ:
687         case CIT_WRITE: {
688                 io->u.ci_rw.rw_ptask = parent->u.ci_rw.rw_ptask;
689                 io->u.ci_rw.rw_iter = parent->u.ci_rw.rw_iter;
690                 io->u.ci_rw.rw_iocb = parent->u.ci_rw.rw_iocb;
691                 io->u.ci_rw.rw_file = parent->u.ci_rw.rw_file;
692                 io->u.ci_rw.rw_sync = parent->u.ci_rw.rw_sync;
693                 if (cl_io_is_append(parent)) {
694                         io->u.ci_rw.rw_append = 1;
695                 } else {
696                         io->u.ci_rw.rw_range.cir_pos = start;
697                         io->u.ci_rw.rw_range.cir_count = end - start;
698                 }
699                 break;
700         }
701         case CIT_LADVISE: {
702                 io->u.ci_ladvise.li_start = start;
703                 io->u.ci_ladvise.li_end = end;
704                 io->u.ci_ladvise.li_fid = parent->u.ci_ladvise.li_fid;
705                 io->u.ci_ladvise.li_advice = parent->u.ci_ladvise.li_advice;
706                 io->u.ci_ladvise.li_flags = parent->u.ci_ladvise.li_flags;
707                 break;
708         }
709         case CIT_GLIMPSE:
710         case CIT_MISC:
711         default:
712                 break;
713         }
714 }
715
716 static loff_t lov_offset_mod(loff_t val, int delta)
717 {
718         if (val != OBD_OBJECT_EOF)
719                 val += delta;
720         return val;
721 }
722
723 static int lov_io_iter_init(const struct lu_env *env,
724                             const struct cl_io_slice *ios)
725 {
726         struct lov_io *lio = cl2lov_io(env, ios);
727         struct lov_stripe_md *lsm = lio->lis_object->lo_lsm;
728         struct lov_io_sub *sub;
729         struct lu_extent ext;
730         int index;
731         int rc = 0;
732
733         ENTRY;
734
735         ext.e_start = lio->lis_pos;
736         ext.e_end = lio->lis_endpos;
737
738         lov_foreach_io_layout(index, lio, &ext) {
739                 struct lov_layout_entry *le = lov_entry(lio->lis_object, index);
740                 struct lov_layout_raid0 *r0 = &le->lle_raid0;
741                 u64 start;
742                 u64 end;
743                 int stripe;
744
745                 CDEBUG(D_VFSTRACE, "component[%d] flags %#x\n",
746                        index, lsm->lsm_entries[index]->lsme_flags);
747                 if (!lsm_entry_inited(lsm, index)) {
748                         /*
749                          * Read from uninitialized components should return
750                          * zero filled pages.
751                          */
752                         continue;
753                 }
754
755                 if (!le->lle_valid && !ios->cis_io->ci_designated_mirror) {
756                         CERROR("I/O to invalid component: %d, mirror: %d\n",
757                                index, lio->lis_mirror_index);
758                         RETURN(-EIO);
759                 }
760
761                 for (stripe = 0; stripe < r0->lo_nr; stripe++) {
762                         if (!lov_stripe_intersects(lsm, index, stripe,
763                                                    &ext, &start, &end))
764                                 continue;
765
766                         if (unlikely(!r0->lo_sub[stripe])) {
767                                 if (ios->cis_io->ci_type == CIT_READ ||
768                                     ios->cis_io->ci_type == CIT_WRITE ||
769                                     ios->cis_io->ci_type == CIT_FAULT)
770                                         RETURN(-EIO);
771
772                                 continue;
773                         }
774
775                         end = lov_offset_mod(end, 1);
776                         sub = lov_sub_get(env, lio,
777                                           lov_comp_index(index, stripe));
778                         if (IS_ERR(sub)) {
779                                 rc = PTR_ERR(sub);
780                                 break;
781                         }
782
783                         lov_io_sub_inherit(sub, lio, start, end);
784                         rc = cl_io_iter_init(sub->sub_env, &sub->sub_io);
785                         if (rc != 0)
786                                 cl_io_iter_fini(sub->sub_env, &sub->sub_io);
787                         if (rc != 0)
788                                 break;
789
790                         CDEBUG(D_VFSTRACE,
791                                 "shrink stripe: {%d, %d} range: [%llu, %llu)\n",
792                                 index, stripe, start, end);
793
794                         list_add_tail(&sub->sub_linkage, &lio->lis_active);
795                 }
796                 if (rc != 0)
797                         break;
798         }
799         RETURN(rc);
800 }
801
802 static int lov_io_rw_iter_init(const struct lu_env *env,
803                                const struct cl_io_slice *ios)
804 {
805         struct cl_io *io = ios->cis_io;
806         struct lov_io *lio = cl2lov_io(env, ios);
807         struct lov_stripe_md_entry *lse;
808         struct cl_io_range *range = &io->u.ci_rw.rw_range;
809         loff_t start = range->cir_pos;
810         loff_t next;
811         int index;
812
813         LASSERT(io->ci_type == CIT_READ || io->ci_type == CIT_WRITE);
814         ENTRY;
815
816         if (cl_io_is_append(io))
817                 RETURN(lov_io_iter_init(env, ios));
818
819         index = lov_io_layout_at(lio, range->cir_pos);
820         if (index < 0) { /* non-existing layout component */
821                 if (io->ci_type == CIT_READ) {
822                         /*
823                          * TODO: it needs to detect the next component and
824                          * then set the next pos
825                          */
826                         io->ci_continue = 0;
827                         /* execute it in main thread */
828                         io->ci_pio = 0;
829
830                         RETURN(lov_io_iter_init(env, ios));
831                 }
832
833                 RETURN(-ENODATA);
834         }
835
836         if (!lov_entry(lio->lis_object, index)->lle_valid &&
837             !io->ci_designated_mirror)
838                 RETURN(io->ci_type == CIT_READ ? -EAGAIN : -EIO);
839
840         lse = lov_lse(lio->lis_object, index);
841
842         next = MAX_LFS_FILESIZE;
843         if (lse->lsme_stripe_count > 1) {
844                 unsigned long ssize = lse->lsme_stripe_size;
845
846                 lov_do_div64(start, ssize);
847                 next = (start + 1) * ssize;
848                 if (next <= start * ssize)
849                         next = MAX_LFS_FILESIZE;
850         }
851
852         LASSERTF(range->cir_pos >= lse->lsme_extent.e_start,
853                  "pos %lld, [%lld, %lld)\n", range->cir_pos,
854                  lse->lsme_extent.e_start, lse->lsme_extent.e_end);
855         next = min_t(__u64, next, lse->lsme_extent.e_end);
856         next = min_t(loff_t, next, lio->lis_io_endpos);
857
858         io->ci_continue  = next < lio->lis_io_endpos;
859         range->cir_count = next - range->cir_pos;
860         lio->lis_pos     = range->cir_pos;
861         lio->lis_endpos  = range->cir_pos + range->cir_count;
862         CDEBUG(D_VFSTRACE,
863                "stripe: {%d, %llu} range: [%llu, %llu) end: %llu, count: %zd\n",
864                index, start, lio->lis_pos, lio->lis_endpos,
865                lio->lis_io_endpos, range->cir_count);
866
867         if (!io->ci_continue) {
868                 /* the last piece of IO, execute it in main thread */
869                 io->ci_pio = 0;
870         }
871
872         if (io->ci_pio)
873                 RETURN(0);
874
875         /*
876          * XXX The following call should be optimized: we know, that
877          * [lio->lis_pos, lio->lis_endpos) intersects with exactly one stripe.
878          */
879         RETURN(lov_io_iter_init(env, ios));
880 }
881
882 static int lov_io_setattr_iter_init(const struct lu_env *env,
883                                     const struct cl_io_slice *ios)
884 {
885         struct lov_io *lio = cl2lov_io(env, ios);
886         struct cl_io *io = ios->cis_io;
887         int index;
888         ENTRY;
889
890         if (cl_io_is_trunc(io) && lio->lis_pos > 0) {
891                 index = lov_io_layout_at(lio, lio->lis_pos - 1);
892                 /* no entry found for such offset */
893                 if (index < 0)
894                         RETURN(io->ci_result = -ENODATA);
895         }
896
897         RETURN(lov_io_iter_init(env, ios));
898 }
899
900 static int lov_io_call(const struct lu_env *env, struct lov_io *lio,
901                        int (*iofunc)(const struct lu_env *, struct cl_io *))
902 {
903         struct cl_io *parent = lio->lis_cl.cis_io;
904         struct lov_io_sub *sub;
905         int rc = 0;
906
907         ENTRY;
908         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
909                 rc = iofunc(sub->sub_env, &sub->sub_io);
910                 if (rc)
911                         break;
912
913                 if (parent->ci_result == 0)
914                         parent->ci_result = sub->sub_io.ci_result;
915         }
916         RETURN(rc);
917 }
918
919 static int lov_io_lock(const struct lu_env *env, const struct cl_io_slice *ios)
920 {
921         ENTRY;
922         RETURN(lov_io_call(env, cl2lov_io(env, ios), cl_io_lock));
923 }
924
925 static int lov_io_start(const struct lu_env *env, const struct cl_io_slice *ios)
926 {
927         ENTRY;
928         RETURN(lov_io_call(env, cl2lov_io(env, ios), cl_io_start));
929 }
930
931 static int lov_io_end_wrapper(const struct lu_env *env, struct cl_io *io)
932 {
933         ENTRY;
934         /*
935          * It's possible that lov_io_start() wasn't called against this
936          * sub-io, either because previous sub-io failed, or upper layer
937          * completed IO.
938          */
939         if (io->ci_state == CIS_IO_GOING)
940                 cl_io_end(env, io);
941         else
942                 io->ci_state = CIS_IO_FINISHED;
943         RETURN(0);
944 }
945
946 static int lov_io_iter_fini_wrapper(const struct lu_env *env, struct cl_io *io)
947 {
948         cl_io_iter_fini(env, io);
949         RETURN(0);
950 }
951
952 static int lov_io_unlock_wrapper(const struct lu_env *env, struct cl_io *io)
953 {
954         cl_io_unlock(env, io);
955         RETURN(0);
956 }
957
958 static void lov_io_end(const struct lu_env *env, const struct cl_io_slice *ios)
959 {
960         int rc;
961
962         rc = lov_io_call(env, cl2lov_io(env, ios), lov_io_end_wrapper);
963         LASSERT(rc == 0);
964 }
965
966 static void
967 lov_io_data_version_end(const struct lu_env *env, const struct cl_io_slice *ios)
968 {
969         struct lov_io *lio = cl2lov_io(env, ios);
970         struct cl_io *parent = lio->lis_cl.cis_io;
971         struct cl_data_version_io *pdv = &parent->u.ci_data_version;
972         struct lov_io_sub *sub;
973
974         ENTRY;
975         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
976                 struct cl_data_version_io *sdv = &sub->sub_io.u.ci_data_version;
977
978                 lov_io_end_wrapper(sub->sub_env, &sub->sub_io);
979
980                 pdv->dv_data_version += sdv->dv_data_version;
981                 if (pdv->dv_layout_version > sdv->dv_layout_version)
982                         pdv->dv_layout_version = sdv->dv_layout_version;
983
984                 if (parent->ci_result == 0)
985                         parent->ci_result = sub->sub_io.ci_result;
986         }
987
988         EXIT;
989 }
990
991 static void lov_io_iter_fini(const struct lu_env *env,
992                              const struct cl_io_slice *ios)
993 {
994         struct lov_io *lio = cl2lov_io(env, ios);
995         int rc;
996
997         ENTRY;
998         rc = lov_io_call(env, lio, lov_io_iter_fini_wrapper);
999         LASSERT(rc == 0);
1000         while (!list_empty(&lio->lis_active))
1001                 list_del_init(lio->lis_active.next);
1002         EXIT;
1003 }
1004
1005 static void lov_io_unlock(const struct lu_env *env,
1006                           const struct cl_io_slice *ios)
1007 {
1008         int rc;
1009
1010         ENTRY;
1011         rc = lov_io_call(env, cl2lov_io(env, ios), lov_io_unlock_wrapper);
1012         LASSERT(rc == 0);
1013         EXIT;
1014 }
1015
1016 static int lov_io_read_ahead(const struct lu_env *env,
1017                              const struct cl_io_slice *ios,
1018                              pgoff_t start, struct cl_read_ahead *ra)
1019 {
1020         struct lov_io           *lio = cl2lov_io(env, ios);
1021         struct lov_object       *loo = lio->lis_object;
1022         struct cl_object        *obj = lov2cl(loo);
1023         struct lov_layout_raid0 *r0;
1024         struct lov_io_sub       *sub;
1025         loff_t                   offset;
1026         loff_t                   suboff;
1027         pgoff_t                  ra_end;
1028         unsigned int             pps; /* pages per stripe */
1029         int                      stripe;
1030         int                      index;
1031         int                      rc;
1032         ENTRY;
1033
1034         offset = cl_offset(obj, start);
1035         index = lov_io_layout_at(lio, offset);
1036         if (index < 0 || !lsm_entry_inited(loo->lo_lsm, index))
1037                 RETURN(-ENODATA);
1038
1039         /* avoid readahead to expand to stale components */
1040         if (!lov_entry(loo, index)->lle_valid)
1041                 RETURN(-EIO);
1042
1043         stripe = lov_stripe_number(loo->lo_lsm, index, offset);
1044
1045         r0 = lov_r0(loo, index);
1046         if (unlikely(!r0->lo_sub[stripe]))
1047                 RETURN(-EIO);
1048
1049         sub = lov_sub_get(env, lio, lov_comp_index(index, stripe));
1050         if (IS_ERR(sub))
1051                 RETURN(PTR_ERR(sub));
1052
1053         lov_stripe_offset(loo->lo_lsm, index, offset, stripe, &suboff);
1054         rc = cl_io_read_ahead(sub->sub_env, &sub->sub_io,
1055                               cl_index(lovsub2cl(r0->lo_sub[stripe]), suboff),
1056                               ra);
1057
1058         CDEBUG(D_READA, DFID " cra_end = %lu, stripes = %d, rc = %d\n",
1059                PFID(lu_object_fid(lov2lu(loo))), ra->cra_end, r0->lo_nr, rc);
1060         if (rc != 0)
1061                 RETURN(rc);
1062
1063         /**
1064          * Adjust the stripe index by layout of comp. ra->cra_end is the
1065          * maximum page index covered by an underlying DLM lock.
1066          * This function converts cra_end from stripe level to file level, and
1067          * make sure it's not beyond stripe and component boundary.
1068          */
1069
1070         /* cra_end is stripe level, convert it into file level */
1071         ra_end = ra->cra_end;
1072         if (ra_end != CL_PAGE_EOF)
1073                 ra->cra_end = lov_stripe_pgoff(loo->lo_lsm, index,
1074                                                ra_end, stripe);
1075
1076         /* boundary of current component */
1077         ra_end = cl_index(obj, (loff_t)lov_io_extent(lio, index)->e_end);
1078         if (ra_end != CL_PAGE_EOF && ra->cra_end >= ra_end)
1079                 ra->cra_end = ra_end - 1;
1080
1081         if (r0->lo_nr == 1) /* single stripe file */
1082                 RETURN(0);
1083
1084         pps = lov_lse(loo, index)->lsme_stripe_size >> PAGE_SHIFT;
1085
1086         CDEBUG(D_READA, DFID " max_index = %lu, pps = %u, index = %u, "
1087                "stripe_size = %u, stripe no = %u, start index = %lu\n",
1088                PFID(lu_object_fid(lov2lu(loo))), ra->cra_end, pps, index,
1089                lov_lse(loo, index)->lsme_stripe_size, stripe, start);
1090
1091         /* never exceed the end of the stripe */
1092         ra->cra_end = min_t(pgoff_t,
1093                             ra->cra_end, start + pps - start % pps - 1);
1094         RETURN(0);
1095 }
1096
1097 /**
1098  * lov implementation of cl_operations::cio_submit() method. It takes a list
1099  * of pages in \a queue, splits it into per-stripe sub-lists, invokes
1100  * cl_io_submit() on underlying devices to submit sub-lists, and then splices
1101  * everything back.
1102  *
1103  * Major complication of this function is a need to handle memory cleansing:
1104  * cl_io_submit() is called to write out pages as a part of VM memory
1105  * reclamation, and hence it may not fail due to memory shortages (system
1106  * dead-locks otherwise). To deal with this, some resources (sub-lists,
1107  * sub-environment, etc.) are allocated per-device on "startup" (i.e., in a
1108  * not-memory cleansing context), and in case of memory shortage, these
1109  * pre-allocated resources are used by lov_io_submit() under
1110  * lov_device::ld_mutex mutex.
1111  */
1112 static int lov_io_submit(const struct lu_env *env,
1113                          const struct cl_io_slice *ios,
1114                          enum cl_req_type crt, struct cl_2queue *queue)
1115 {
1116         struct cl_page_list     *qin = &queue->c2_qin;
1117         struct lov_io           *lio = cl2lov_io(env, ios);
1118         struct lov_io_sub       *sub;
1119         struct cl_page_list     *plist = &lov_env_info(env)->lti_plist;
1120         struct cl_page          *page;
1121         int index;
1122         int rc = 0;
1123         ENTRY;
1124
1125         cl_page_list_init(plist);
1126         while (qin->pl_nr > 0) {
1127                 struct cl_2queue  *cl2q = &lov_env_info(env)->lti_cl2q;
1128
1129                 page = cl_page_list_first(qin);
1130                 if (lov_page_is_empty(page)) {
1131                         cl_page_list_move(&queue->c2_qout, qin, page);
1132
1133                         /*
1134                          * it could only be mirror read to get here therefore
1135                          * the pages will be transient. We don't care about
1136                          * the return code of cl_page_prep() at all.
1137                          */
1138                         (void) cl_page_prep(env, ios->cis_io, page, crt);
1139                         cl_page_completion(env, page, crt, 0);
1140                         continue;
1141                 }
1142
1143                 cl_2queue_init(cl2q);
1144                 cl_page_list_move(&cl2q->c2_qin, qin, page);
1145
1146                 index = lov_page_index(page);
1147                 while (qin->pl_nr > 0) {
1148                         page = cl_page_list_first(qin);
1149                         if (index != lov_page_index(page))
1150                                 break;
1151
1152                         cl_page_list_move(&cl2q->c2_qin, qin, page);
1153                 }
1154
1155                 sub = lov_sub_get(env, lio, index);
1156                 if (!IS_ERR(sub)) {
1157                         rc = cl_io_submit_rw(sub->sub_env, &sub->sub_io,
1158                                              crt, cl2q);
1159                 } else {
1160                         rc = PTR_ERR(sub);
1161                 }
1162
1163                 cl_page_list_splice(&cl2q->c2_qin, plist);
1164                 cl_page_list_splice(&cl2q->c2_qout, &queue->c2_qout);
1165                 cl_2queue_fini(env, cl2q);
1166
1167                 if (rc != 0)
1168                         break;
1169         }
1170
1171         cl_page_list_splice(plist, qin);
1172         cl_page_list_fini(env, plist);
1173
1174         RETURN(rc);
1175 }
1176
1177 static int lov_io_commit_async(const struct lu_env *env,
1178                                const struct cl_io_slice *ios,
1179                                struct cl_page_list *queue, int from, int to,
1180                                cl_commit_cbt cb)
1181 {
1182         struct cl_page_list *plist = &lov_env_info(env)->lti_plist;
1183         struct lov_io *lio = cl2lov_io(env, ios);
1184         struct lov_io_sub *sub;
1185         struct cl_page *page;
1186         int rc = 0;
1187         ENTRY;
1188
1189         if (lio->lis_nr_subios == 1) {
1190                 int idx = lio->lis_single_subio_index;
1191
1192                 LASSERT(!lov_page_is_empty(cl_page_list_first(queue)));
1193
1194                 sub = lov_sub_get(env, lio, idx);
1195                 LASSERT(!IS_ERR(sub));
1196                 LASSERT(sub == &lio->lis_single_subio);
1197                 rc = cl_io_commit_async(sub->sub_env, &sub->sub_io, queue,
1198                                         from, to, cb);
1199                 RETURN(rc);
1200         }
1201
1202         cl_page_list_init(plist);
1203         while (queue->pl_nr > 0) {
1204                 int stripe_to = to;
1205                 int index;
1206
1207                 LASSERT(plist->pl_nr == 0);
1208                 page = cl_page_list_first(queue);
1209                 LASSERT(!lov_page_is_empty(page));
1210
1211                 cl_page_list_move(plist, queue, page);
1212
1213                 index = lov_page_index(page);
1214                 while (queue->pl_nr > 0) {
1215                         page = cl_page_list_first(queue);
1216                         if (index != lov_page_index(page))
1217                                 break;
1218
1219                         cl_page_list_move(plist, queue, page);
1220                 }
1221
1222                 if (queue->pl_nr > 0) /* still has more pages */
1223                         stripe_to = PAGE_SIZE;
1224
1225                 sub = lov_sub_get(env, lio, index);
1226                 if (!IS_ERR(sub)) {
1227                         rc = cl_io_commit_async(sub->sub_env, &sub->sub_io,
1228                                                 plist, from, stripe_to, cb);
1229                 } else {
1230                         rc = PTR_ERR(sub);
1231                         break;
1232                 }
1233
1234                 if (plist->pl_nr > 0) /* short write */
1235                         break;
1236
1237                 from = 0;
1238         }
1239
1240         /* for error case, add the page back into the qin list */
1241         LASSERT(ergo(rc == 0, plist->pl_nr == 0));
1242         while (plist->pl_nr > 0) {
1243                 /* error occurred, add the uncommitted pages back into queue */
1244                 page = cl_page_list_last(plist);
1245                 cl_page_list_move_head(queue, plist, page);
1246         }
1247
1248         RETURN(rc);
1249 }
1250
1251 static int lov_io_fault_start(const struct lu_env *env,
1252                               const struct cl_io_slice *ios)
1253 {
1254         struct cl_fault_io *fio;
1255         struct lov_io      *lio;
1256         struct lov_io_sub  *sub;
1257
1258         ENTRY;
1259
1260         fio = &ios->cis_io->u.ci_fault;
1261         lio = cl2lov_io(env, ios);
1262         sub = lov_sub_get(env, lio, lov_page_index(fio->ft_page));
1263         sub->sub_io.u.ci_fault.ft_nob = fio->ft_nob;
1264
1265         RETURN(lov_io_start(env, ios));
1266 }
1267
1268 static void lov_io_fsync_end(const struct lu_env *env,
1269                              const struct cl_io_slice *ios)
1270 {
1271         struct lov_io *lio = cl2lov_io(env, ios);
1272         struct lov_io_sub *sub;
1273         unsigned int *written = &ios->cis_io->u.ci_fsync.fi_nr_written;
1274         ENTRY;
1275
1276         *written = 0;
1277         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
1278                 struct cl_io *subio = &sub->sub_io;
1279
1280                 lov_io_end_wrapper(sub->sub_env, subio);
1281
1282                 if (subio->ci_result == 0)
1283                         *written += subio->u.ci_fsync.fi_nr_written;
1284         }
1285         RETURN_EXIT;
1286 }
1287
1288 static const struct cl_io_operations lov_io_ops = {
1289         .op = {
1290                 [CIT_READ] = {
1291                         .cio_fini      = lov_io_fini,
1292                         .cio_iter_init = lov_io_rw_iter_init,
1293                         .cio_iter_fini = lov_io_iter_fini,
1294                         .cio_lock      = lov_io_lock,
1295                         .cio_unlock    = lov_io_unlock,
1296                         .cio_start     = lov_io_start,
1297                         .cio_end       = lov_io_end
1298                 },
1299                 [CIT_WRITE] = {
1300                         .cio_fini      = lov_io_fini,
1301                         .cio_iter_init = lov_io_rw_iter_init,
1302                         .cio_iter_fini = lov_io_iter_fini,
1303                         .cio_lock      = lov_io_lock,
1304                         .cio_unlock    = lov_io_unlock,
1305                         .cio_start     = lov_io_start,
1306                         .cio_end       = lov_io_end
1307                 },
1308                 [CIT_SETATTR] = {
1309                         .cio_fini      = lov_io_fini,
1310                         .cio_iter_init = lov_io_setattr_iter_init,
1311                         .cio_iter_fini = lov_io_iter_fini,
1312                         .cio_lock      = lov_io_lock,
1313                         .cio_unlock    = lov_io_unlock,
1314                         .cio_start     = lov_io_start,
1315                         .cio_end       = lov_io_end
1316                 },
1317                 [CIT_DATA_VERSION] = {
1318                         .cio_fini       = lov_io_fini,
1319                         .cio_iter_init  = lov_io_iter_init,
1320                         .cio_iter_fini  = lov_io_iter_fini,
1321                         .cio_lock       = lov_io_lock,
1322                         .cio_unlock     = lov_io_unlock,
1323                         .cio_start      = lov_io_start,
1324                         .cio_end        = lov_io_data_version_end,
1325                 },
1326                 [CIT_FAULT] = {
1327                         .cio_fini      = lov_io_fini,
1328                         .cio_iter_init = lov_io_iter_init,
1329                         .cio_iter_fini = lov_io_iter_fini,
1330                         .cio_lock      = lov_io_lock,
1331                         .cio_unlock    = lov_io_unlock,
1332                         .cio_start     = lov_io_fault_start,
1333                         .cio_end       = lov_io_end
1334                 },
1335                 [CIT_FSYNC] = {
1336                         .cio_fini      = lov_io_fini,
1337                         .cio_iter_init = lov_io_iter_init,
1338                         .cio_iter_fini = lov_io_iter_fini,
1339                         .cio_lock      = lov_io_lock,
1340                         .cio_unlock    = lov_io_unlock,
1341                         .cio_start     = lov_io_start,
1342                         .cio_end       = lov_io_fsync_end
1343                 },
1344                 [CIT_LADVISE] = {
1345                         .cio_fini      = lov_io_fini,
1346                         .cio_iter_init = lov_io_iter_init,
1347                         .cio_iter_fini = lov_io_iter_fini,
1348                         .cio_lock      = lov_io_lock,
1349                         .cio_unlock    = lov_io_unlock,
1350                         .cio_start     = lov_io_start,
1351                         .cio_end       = lov_io_end
1352                 },
1353                 [CIT_GLIMPSE] = {
1354                         .cio_fini      = lov_io_fini,
1355                 },
1356                 [CIT_MISC] = {
1357                         .cio_fini      = lov_io_fini
1358                 }
1359         },
1360         .cio_read_ahead                = lov_io_read_ahead,
1361         .cio_submit                    = lov_io_submit,
1362         .cio_commit_async              = lov_io_commit_async,
1363 };
1364
1365 /*****************************************************************************
1366  *
1367  * Empty lov io operations.
1368  *
1369  */
1370
1371 static void lov_empty_io_fini(const struct lu_env *env,
1372                               const struct cl_io_slice *ios)
1373 {
1374         struct lov_object *lov = cl2lov(ios->cis_obj);
1375         ENTRY;
1376
1377         if (atomic_dec_and_test(&lov->lo_active_ios))
1378                 wake_up_all(&lov->lo_waitq);
1379         EXIT;
1380 }
1381
1382 static int lov_empty_io_submit(const struct lu_env *env,
1383                                const struct cl_io_slice *ios,
1384                                enum cl_req_type crt, struct cl_2queue *queue)
1385 {
1386         return -EBADF;
1387 }
1388
1389 static void lov_empty_impossible(const struct lu_env *env,
1390                                  struct cl_io_slice *ios)
1391 {
1392         LBUG();
1393 }
1394
1395 #define LOV_EMPTY_IMPOSSIBLE ((void *)lov_empty_impossible)
1396
1397 /**
1398  * An io operation vector for files without stripes.
1399  */
1400 static const struct cl_io_operations lov_empty_io_ops = {
1401         .op = {
1402                 [CIT_READ] = {
1403                         .cio_fini       = lov_empty_io_fini,
1404 #if 0
1405                         .cio_iter_init  = LOV_EMPTY_IMPOSSIBLE,
1406                         .cio_lock       = LOV_EMPTY_IMPOSSIBLE,
1407                         .cio_start      = LOV_EMPTY_IMPOSSIBLE,
1408                         .cio_end        = LOV_EMPTY_IMPOSSIBLE
1409 #endif
1410                 },
1411                 [CIT_WRITE] = {
1412                         .cio_fini      = lov_empty_io_fini,
1413                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
1414                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
1415                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
1416                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
1417                 },
1418                 [CIT_SETATTR] = {
1419                         .cio_fini      = lov_empty_io_fini,
1420                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
1421                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
1422                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
1423                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
1424                 },
1425                 [CIT_FAULT] = {
1426                         .cio_fini      = lov_empty_io_fini,
1427                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
1428                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
1429                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
1430                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
1431                 },
1432                 [CIT_FSYNC] = {
1433                         .cio_fini      = lov_empty_io_fini
1434                 },
1435                 [CIT_LADVISE] = {
1436                         .cio_fini   = lov_empty_io_fini
1437                 },
1438                 [CIT_GLIMPSE] = {
1439                         .cio_fini      = lov_empty_io_fini
1440                 },
1441                 [CIT_MISC] = {
1442                         .cio_fini      = lov_empty_io_fini
1443                 }
1444         },
1445         .cio_submit                    = lov_empty_io_submit,
1446         .cio_commit_async              = LOV_EMPTY_IMPOSSIBLE
1447 };
1448
1449 int lov_io_init_composite(const struct lu_env *env, struct cl_object *obj,
1450                           struct cl_io *io)
1451 {
1452         struct lov_io *lio = lov_env_io(env);
1453         struct lov_object *lov = cl2lov(obj);
1454         int result;
1455
1456         ENTRY;
1457
1458         INIT_LIST_HEAD(&lio->lis_active);
1459         result = lov_io_slice_init(lio, lov, io);
1460         if (result)
1461                 GOTO(out, result);
1462
1463         result = lov_io_subio_init(env, lio, io);
1464         if (!result) {
1465                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_io_ops);
1466                 atomic_inc(&lov->lo_active_ios);
1467         }
1468         EXIT;
1469 out:
1470         io->ci_result = result < 0 ? result : 0;
1471         return result;
1472 }
1473
1474 int lov_io_init_empty(const struct lu_env *env, struct cl_object *obj,
1475                       struct cl_io *io)
1476 {
1477         struct lov_object *lov = cl2lov(obj);
1478         struct lov_io *lio = lov_env_io(env);
1479         int result;
1480         ENTRY;
1481
1482         lio->lis_object = lov;
1483         switch (io->ci_type) {
1484         default:
1485                 LBUG();
1486         case CIT_MISC:
1487         case CIT_GLIMPSE:
1488         case CIT_READ:
1489                 result = 0;
1490                 break;
1491         case CIT_FSYNC:
1492         case CIT_LADVISE:
1493         case CIT_SETATTR:
1494         case CIT_DATA_VERSION:
1495                 result = +1;
1496                 break;
1497         case CIT_WRITE:
1498                 result = -EBADF;
1499                 break;
1500         case CIT_FAULT:
1501                 result = -EFAULT;
1502                 CERROR("Page fault on a file without stripes: "DFID"\n",
1503                        PFID(lu_object_fid(&obj->co_lu)));
1504                 break;
1505         }
1506         if (result == 0) {
1507                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_empty_io_ops);
1508                 atomic_inc(&lov->lo_active_ios);
1509         }
1510
1511         io->ci_result = result < 0 ? result : 0;
1512         RETURN(result);
1513 }
1514
1515 int lov_io_init_released(const struct lu_env *env, struct cl_object *obj,
1516                         struct cl_io *io)
1517 {
1518         struct lov_object *lov = cl2lov(obj);
1519         struct lov_io *lio = lov_env_io(env);
1520         int result;
1521         ENTRY;
1522
1523         LASSERT(lov->lo_lsm != NULL);
1524         lio->lis_object = lov;
1525
1526         switch (io->ci_type) {
1527         default:
1528                 LASSERTF(0, "invalid type %d\n", io->ci_type);
1529                 result = -EOPNOTSUPP;
1530                 break;
1531         case CIT_GLIMPSE:
1532         case CIT_MISC:
1533         case CIT_FSYNC:
1534         case CIT_LADVISE:
1535         case CIT_DATA_VERSION:
1536                 result = 1;
1537                 break;
1538         case CIT_SETATTR:
1539                 /*
1540                  * the truncate to 0 is managed by MDT:
1541                  * - in open, for open O_TRUNC
1542                  * - in setattr, for truncate
1543                  */
1544                 /* the truncate is for size > 0 so triggers a restore */
1545                 if (cl_io_is_trunc(io)) {
1546                         io->ci_restore_needed = 1;
1547                         result = -ENODATA;
1548                 } else
1549                         result = 1;
1550                 break;
1551         case CIT_READ:
1552         case CIT_WRITE:
1553         case CIT_FAULT:
1554                 io->ci_restore_needed = 1;
1555                 result = -ENODATA;
1556                 break;
1557         }
1558
1559         if (result == 0) {
1560                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_empty_io_ops);
1561                 atomic_inc(&lov->lo_active_ios);
1562         }
1563
1564         io->ci_result = result < 0 ? result : 0;
1565         RETURN(result);
1566 }
1567
1568 /**
1569  * Return the index in composite:lo_entries by the file offset
1570  */
1571 int lov_io_layout_at(struct lov_io *lio, __u64 offset)
1572 {
1573         struct lov_object *lov = lio->lis_object;
1574         struct lov_layout_composite *comp = &lov->u.composite;
1575         int start_index = 0;
1576         int end_index = comp->lo_entry_count - 1;
1577         int i;
1578
1579         LASSERT(lov->lo_type == LLT_COMP);
1580
1581         /* This is actual file offset so nothing can cover eof. */
1582         if (offset == LUSTRE_EOF)
1583                 return -1;
1584
1585         if (lov_is_flr(lov)) {
1586                 struct lov_mirror_entry *lre;
1587
1588                 LASSERT(lio->lis_mirror_index >= 0);
1589
1590                 lre = &comp->lo_mirrors[lio->lis_mirror_index];
1591                 start_index = lre->lre_start;
1592                 end_index = lre->lre_end;
1593         }
1594
1595         for (i = start_index; i <= end_index; i++) {
1596                 struct lov_layout_entry *lle = lov_entry(lov, i);
1597
1598                 if ((offset >= lle->lle_extent->e_start &&
1599                      offset < lle->lle_extent->e_end) ||
1600                     (offset == OBD_OBJECT_EOF &&
1601                      lle->lle_extent->e_end == OBD_OBJECT_EOF))
1602                         return i;
1603         }
1604
1605         return -1;
1606 }
1607
1608 /** @} lov */