Whamcloud - gitweb
b3fd6d887fa256237524c104dd62b35cd6ae4cb2
[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  *
31  * Implementation of cl_io for LOV layer.
32  *
33  *   Author: Nikita Danilov <nikita.danilov@sun.com>
34  *   Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_LOV
38
39 #include "lov_cl_internal.h"
40
41 /** \addtogroup lov
42  *  @{
43  */
44
45 static inline struct lov_io_sub *lov_sub_alloc(struct lov_io *lio, int index)
46 {
47         struct lov_io_sub *sub;
48
49         if (lio->lis_nr_subios == 0) {
50                 LASSERT(lio->lis_single_subio_index == -1);
51                 sub = &lio->lis_single_subio;
52                 lio->lis_single_subio_index = index;
53                 memset(sub, 0, sizeof(*sub));
54         } else {
55                 OBD_ALLOC_PTR(sub);
56         }
57
58         if (sub) {
59                 INIT_LIST_HEAD(&sub->sub_list);
60                 INIT_LIST_HEAD(&sub->sub_linkage);
61                 sub->sub_subio_index = index;
62         }
63
64         return sub;
65 }
66
67 static inline void lov_sub_free(struct lov_io *lio, struct lov_io_sub *sub)
68 {
69         if (sub->sub_subio_index == lio->lis_single_subio_index) {
70                 LASSERT(sub == &lio->lis_single_subio);
71                 lio->lis_single_subio_index = -1;
72         } else {
73                 OBD_FREE_PTR(sub);
74         }
75 }
76
77 static void lov_io_sub_fini(const struct lu_env *env, struct lov_io *lio,
78                             struct lov_io_sub *sub)
79 {
80         ENTRY;
81
82         cl_io_fini(sub->sub_env, &sub->sub_io);
83
84         if (sub->sub_env && !IS_ERR(sub->sub_env)) {
85                 cl_env_put(sub->sub_env, &sub->sub_refcheck);
86                 sub->sub_env = NULL;
87         }
88         EXIT;
89 }
90
91 static inline bool
92 is_index_within_mirror(struct lov_object *lov, int index, int mirror_index)
93 {
94         struct lov_layout_composite *comp = &lov->u.composite;
95         struct lov_mirror_entry *lre = &comp->lo_mirrors[mirror_index];
96
97         return (index >= lre->lre_start && index <= lre->lre_end);
98 }
99
100 static int lov_io_sub_init(const struct lu_env *env, struct lov_io *lio,
101                            struct lov_io_sub *sub)
102 {
103         struct lov_object *lov = lio->lis_object;
104         struct cl_io *sub_io;
105         struct cl_object *sub_obj;
106         struct cl_io *io = lio->lis_cl.cis_io;
107         int index = lov_comp_entry(sub->sub_subio_index);
108         int stripe = lov_comp_stripe(sub->sub_subio_index);
109         int result = 0;
110         LASSERT(sub->sub_env == NULL);
111         ENTRY;
112
113         if (unlikely(!lov_r0(lov, index)->lo_sub ||
114                      !lov_r0(lov, index)->lo_sub[stripe]))
115                 RETURN(-EIO);
116
117         LASSERTF(ergo(lov_is_flr(lov),
118                       is_index_within_mirror(lov, index,
119                                              lio->lis_mirror_index)),
120                  DFID "iot = %d, index = %d, mirror = %d\n",
121                  PFID(lu_object_fid(lov2lu(lov))), io->ci_type, index,
122                  lio->lis_mirror_index);
123
124         /* obtain new environment */
125         sub->sub_env = cl_env_get(&sub->sub_refcheck);
126         if (IS_ERR(sub->sub_env)) {
127                 result = PTR_ERR(sub->sub_env);
128                 RETURN(result);
129         }
130
131         sub_obj = lovsub2cl(lov_r0(lov, index)->lo_sub[stripe]);
132         sub_io  = &sub->sub_io;
133
134         sub_io->ci_obj    = sub_obj;
135         sub_io->ci_result = 0;
136
137         sub_io->ci_parent  = io;
138         sub_io->ci_lockreq = io->ci_lockreq;
139         sub_io->ci_type    = io->ci_type;
140         sub_io->ci_no_srvlock = io->ci_no_srvlock;
141         sub_io->ci_noatime = io->ci_noatime;
142         sub_io->ci_async_readahead = io->ci_async_readahead;
143         sub_io->ci_lock_no_expand = io->ci_lock_no_expand;
144         sub_io->ci_ndelay = io->ci_ndelay;
145         sub_io->ci_layout_version = io->ci_layout_version;
146         sub_io->ci_tried_all_mirrors = io->ci_tried_all_mirrors;
147
148         result = cl_io_sub_init(sub->sub_env, sub_io, io->ci_type, sub_obj);
149
150         if (result < 0)
151                 lov_io_sub_fini(env, lio, sub);
152
153         RETURN(result);
154 }
155
156 struct lov_io_sub *lov_sub_get(const struct lu_env *env,
157                                struct lov_io *lio, int index)
158 {
159         struct lov_io_sub *sub;
160         int rc = 0;
161
162         ENTRY;
163
164         list_for_each_entry(sub, &lio->lis_subios, sub_list) {
165                 if (sub->sub_subio_index == index) {
166                         rc = 1;
167                         break;
168                 }
169         }
170
171         if (rc == 0) {
172                 sub = lov_sub_alloc(lio, index);
173                 if (!sub)
174                         GOTO(out, rc = -ENOMEM);
175
176                 rc = lov_io_sub_init(env, lio, sub);
177                 if (rc < 0) {
178                         lov_sub_free(lio, sub);
179                         GOTO(out, rc);
180                 }
181
182                 list_add_tail(&sub->sub_list, &lio->lis_subios);
183                 lio->lis_nr_subios++;
184         }
185 out:
186         if (rc < 0)
187                 sub = ERR_PTR(rc);
188         else
189                 sub->sub_io.ci_noquota = lio->lis_cl.cis_io->ci_noquota;
190         RETURN(sub);
191 }
192
193 /*****************************************************************************
194  *
195  * Lov io operations.
196  *
197  */
198 static int lov_io_subio_init(const struct lu_env *env, struct lov_io *lio,
199                              struct cl_io *io)
200 {
201         ENTRY;
202
203         LASSERT(lio->lis_object != NULL);
204
205         INIT_LIST_HEAD(&lio->lis_subios);
206         lio->lis_single_subio_index = -1;
207         lio->lis_nr_subios = 0;
208
209         RETURN(0);
210 }
211
212 /**
213  * Decide if it will need write intent RPC
214  */
215 static int lov_io_mirror_write_intent(struct lov_io *lio,
216         struct lov_object *obj, struct cl_io *io)
217 {
218         struct lov_layout_composite *comp = &obj->u.composite;
219         struct lu_extent *ext = &io->ci_write_intent;
220         struct lov_mirror_entry *lre;
221         struct lov_mirror_entry *primary;
222         struct lov_layout_entry *lle;
223         size_t count = 0;
224         ENTRY;
225
226         *ext = (typeof(*ext)) { lio->lis_pos, lio->lis_endpos };
227         io->ci_need_write_intent = 0;
228
229         if (!(io->ci_type == CIT_WRITE || cl_io_is_mkwrite(io) ||
230               cl_io_is_fallocate(io) || cl_io_is_trunc(io)))
231                 RETURN(0);
232
233         /*
234          * FLR: check if it needs to send a write intent RPC to server.
235          * Writing to sync_pending file needs write intent RPC to change
236          * the file state back to write_pending, so that the layout version
237          * can be increased when the state changes to sync_pending at a later
238          * time. Otherwise there exists a chance that an evicted client may
239          * dirty the file data while resync client is working on it.
240          * Designated I/O is allowed for resync workload.
241          */
242         if (lov_flr_state(obj) == LCM_FL_RDONLY ||
243             (lov_flr_state(obj) == LCM_FL_SYNC_PENDING &&
244              io->ci_designated_mirror == 0)) {
245                 io->ci_need_write_intent = 1;
246                 RETURN(0);
247         }
248
249         LASSERT((lov_flr_state(obj) == LCM_FL_WRITE_PENDING));
250         LASSERT(comp->lo_preferred_mirror >= 0);
251
252         /*
253          * need to iterate all components to see if there are
254          * multiple components covering the writing component
255          */
256         primary = &comp->lo_mirrors[comp->lo_preferred_mirror];
257         LASSERT(!primary->lre_stale);
258         lov_foreach_mirror_layout_entry(obj, lle, primary) {
259                 LASSERT(lle->lle_valid);
260                 if (!lu_extent_is_overlapped(ext, lle->lle_extent))
261                         continue;
262
263                 ext->e_start = min(ext->e_start, lle->lle_extent->e_start);
264                 ext->e_end = max(ext->e_end, lle->lle_extent->e_end);
265                 ++count;
266         }
267         if (count == 0) {
268                 CERROR(DFID ": cannot find any valid components covering "
269                        "file extent "DEXT", mirror: %d\n",
270                        PFID(lu_object_fid(lov2lu(obj))), PEXT(ext),
271                        primary->lre_mirror_id);
272                 RETURN(-EIO);
273         }
274
275         count = 0;
276         lov_foreach_mirror_entry(obj, lre) {
277                 if (lre == primary)
278                         continue;
279
280                 lov_foreach_mirror_layout_entry(obj, lle, lre) {
281                         if (!lle->lle_valid)
282                                 continue;
283
284                         if (lu_extent_is_overlapped(ext, lle->lle_extent)) {
285                                 ++count;
286                                 break;
287                         }
288                 }
289         }
290
291         CDEBUG(D_VFSTRACE, DFID "there are %zd components to be staled to "
292                "modify file extent "DEXT", iot: %d\n",
293                PFID(lu_object_fid(lov2lu(obj))), count, PEXT(ext), io->ci_type);
294
295         io->ci_need_write_intent = count > 0;
296
297         RETURN(0);
298 }
299
300 static int lov_io_mirror_init(struct lov_io *lio, struct lov_object *obj,
301                                struct cl_io *io)
302 {
303         struct lov_layout_composite *comp = &obj->u.composite;
304         int index;
305         int i;
306         int result;
307         ENTRY;
308
309         if (!lov_is_flr(obj)) {
310                 /* only locks/pages are manipulated for CIT_MISC op, no
311                  * cl_io_loop() will be called, don't check/set mirror info.
312                  */
313                 if (io->ci_type != CIT_MISC) {
314                         LASSERT(comp->lo_preferred_mirror == 0);
315                         lio->lis_mirror_index = comp->lo_preferred_mirror;
316                 }
317                 io->ci_ndelay = 0;
318                 RETURN(0);
319         }
320
321         /* transfer the layout version for verification */
322         if (io->ci_layout_version == 0)
323                 io->ci_layout_version = obj->lo_lsm->lsm_layout_gen;
324
325         /* find the corresponding mirror for designated mirror IO */
326         if (io->ci_designated_mirror > 0) {
327                 struct lov_mirror_entry *entry;
328
329                 LASSERT(!io->ci_ndelay);
330
331                 CDEBUG(D_LAYOUT, "designated I/O mirror state: %d\n",
332                       lov_flr_state(obj));
333
334                 if ((cl_io_is_trunc(io) || io->ci_type == CIT_WRITE ||
335                      cl_io_is_fallocate(io)) &&
336                     (io->ci_layout_version != obj->lo_lsm->lsm_layout_gen)) {
337                         /*
338                          * For resync I/O, the ci_layout_version was the layout
339                          * version when resync starts. If it doesn't match the
340                          * current object layout version, it means the layout
341                          * has been changed
342                          */
343                         RETURN(-ESTALE);
344                 }
345
346                 io->ci_layout_version |= LU_LAYOUT_RESYNC;
347
348                 index = 0;
349                 lio->lis_mirror_index = -1;
350                 lov_foreach_mirror_entry(obj, entry) {
351                         if (entry->lre_mirror_id ==
352                             io->ci_designated_mirror) {
353                                 lio->lis_mirror_index = index;
354                                 break;
355                         }
356
357                         index++;
358                 }
359
360                 RETURN(lio->lis_mirror_index < 0 ? -EINVAL : 0);
361         }
362
363         result = lov_io_mirror_write_intent(lio, obj, io);
364         if (result)
365                 RETURN(result);
366
367         if (io->ci_need_write_intent) {
368                 CDEBUG(D_VFSTRACE, DFID " need write intent for [%llu, %llu)\n",
369                        PFID(lu_object_fid(lov2lu(obj))),
370                        lio->lis_pos, lio->lis_endpos);
371
372                 if (cl_io_is_trunc(io)) {
373                         /**
374                          * for truncate, we uses [size, EOF) to judge whether
375                          * a write intent needs to be send, but we need to
376                          * restore the write extent to [0, size], in truncate,
377                          * the byte in the size position is accessed.
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 + 1;
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                 if (lre->lre_foreign)
412                         continue;
413
414                 lov_foreach_mirror_layout_entry(obj, lle, lre) {
415                         if (!lle->lle_valid)
416                                 continue;
417
418                         if (lu_extent_is_overlapped(&ext, lle->lle_extent)) {
419                                 found = true;
420                                 break;
421                         }
422                 } /* each component of the mirror */
423                 if (found) {
424                         index = (index + i) % comp->lo_mirror_count;
425                         break;
426                 }
427         } /* each mirror */
428
429         if (i == comp->lo_mirror_count) {
430                 CERROR(DFID": failed to find a component covering "
431                        "I/O region at %llu\n",
432                        PFID(lu_object_fid(lov2lu(obj))), lio->lis_pos);
433
434                 dump_lsm(D_ERROR, obj->lo_lsm);
435
436                 RETURN(-EIO);
437         }
438
439         CDEBUG(D_VFSTRACE, DFID ": flr state: %d, move mirror from %d to %d, "
440                "have retried: %d, mirror count: %d\n",
441                PFID(lu_object_fid(lov2lu(obj))), lov_flr_state(obj),
442                lio->lis_mirror_index, index, io->ci_ndelay_tried,
443                comp->lo_mirror_count);
444
445         lio->lis_mirror_index = index;
446
447         /*
448          * FLR: if all mirrors have been tried once, most likely the network
449          * of this client has been partitioned. We should relinquish CPU for
450          * a while before trying again.
451          */
452         if (io->ci_ndelay && io->ci_ndelay_tried > 0 &&
453             (io->ci_ndelay_tried % comp->lo_mirror_count == 0)) {
454                 schedule_timeout_interruptible(cfs_time_seconds(1) / 100);
455                 if (signal_pending(current))
456                         RETURN(-EINTR);
457
458                 /**
459                  * we'd set ci_tried_all_mirrors to turn off fast mirror
460                  * switching for read after we've tried all mirrors several
461                  * rounds.
462                  */
463                 io->ci_tried_all_mirrors = io->ci_ndelay_tried %
464                                            (comp->lo_mirror_count * 4) == 0;
465         }
466         ++io->ci_ndelay_tried;
467
468         CDEBUG(D_VFSTRACE, "use %sdelayed RPC state for this IO\n",
469                io->ci_ndelay ? "non-" : "");
470
471         RETURN(0);
472 }
473
474 static int lov_io_slice_init(struct lov_io *lio,
475                              struct lov_object *obj, struct cl_io *io)
476 {
477         int index;
478         int result = 0;
479         ENTRY;
480
481         io->ci_result = 0;
482         lio->lis_object = obj;
483
484         switch (io->ci_type) {
485         case CIT_READ:
486         case CIT_WRITE:
487                 lio->lis_pos = io->u.ci_rw.crw_pos;
488                 lio->lis_endpos = io->u.ci_rw.crw_pos + io->u.ci_rw.crw_count;
489                 lio->lis_io_endpos = lio->lis_endpos;
490                 if (cl_io_is_append(io)) {
491                         LASSERT(io->ci_type == CIT_WRITE);
492
493                         /*
494                          * If there is LOV EA hole, then we may cannot locate
495                          * the current file-tail exactly.
496                          */
497                         if (unlikely(obj->lo_lsm->lsm_entries[0]->lsme_pattern &
498                                      LOV_PATTERN_F_HOLE))
499                                 GOTO(out, result = -EIO);
500
501                         lio->lis_pos = 0;
502                         lio->lis_endpos = OBD_OBJECT_EOF;
503                 }
504                 break;
505
506         case CIT_SETATTR:
507                 if (cl_io_is_fallocate(io)) {
508                         lio->lis_pos = io->u.ci_setattr.sa_falloc_offset;
509                         lio->lis_endpos = io->u.ci_setattr.sa_falloc_end;
510                 } else if (cl_io_is_trunc(io)) {
511                         lio->lis_pos = io->u.ci_setattr.sa_attr.lvb_size;
512                         lio->lis_endpos = OBD_OBJECT_EOF;
513                 } else {
514                         lio->lis_pos = 0;
515                         lio->lis_endpos = OBD_OBJECT_EOF;
516                 }
517                 break;
518
519         case CIT_DATA_VERSION:
520                 lio->lis_pos = 0;
521                 lio->lis_endpos = OBD_OBJECT_EOF;
522                 break;
523
524         case CIT_FAULT: {
525                 pgoff_t index = io->u.ci_fault.ft_index;
526
527                 lio->lis_pos = cl_offset(io->ci_obj, index);
528                 lio->lis_endpos = cl_offset(io->ci_obj, index + 1);
529                 break;
530         }
531
532         case CIT_FSYNC: {
533                 lio->lis_pos = io->u.ci_fsync.fi_start;
534                 lio->lis_endpos = io->u.ci_fsync.fi_end;
535                 break;
536         }
537
538         case CIT_LADVISE: {
539                 lio->lis_pos = io->u.ci_ladvise.li_start;
540                 lio->lis_endpos = io->u.ci_ladvise.li_end;
541                 break;
542         }
543
544         case CIT_LSEEK: {
545                 lio->lis_pos = io->u.ci_lseek.ls_start;
546                 lio->lis_endpos = OBD_OBJECT_EOF;
547                 break;
548         }
549
550         case CIT_GLIMPSE:
551                 lio->lis_pos = 0;
552                 lio->lis_endpos = OBD_OBJECT_EOF;
553
554                 if (lov_flr_state(obj) == LCM_FL_RDONLY &&
555                     !OBD_FAIL_CHECK(OBD_FAIL_FLR_GLIMPSE_IMMUTABLE))
556                         /* SoM is accurate, no need glimpse */
557                         GOTO(out, result = 1);
558                 break;
559
560         case CIT_MISC:
561                 lio->lis_pos = 0;
562                 lio->lis_endpos = OBD_OBJECT_EOF;
563                 break;
564
565         default:
566                 LBUG();
567         }
568
569         /*
570          * CIT_MISC + ci_ignore_layout can identify the I/O from the OSC layer,
571          * it won't care/access lov layout related info.
572          */
573         if (io->ci_ignore_layout && io->ci_type == CIT_MISC)
574                 GOTO(out, result = 0);
575
576         LASSERT(obj->lo_lsm != NULL);
577
578         result = lov_io_mirror_init(lio, obj, io);
579         if (result)
580                 GOTO(out, result);
581
582         /* check if it needs to instantiate layout */
583         if (!(io->ci_type == CIT_WRITE || cl_io_is_mkwrite(io) ||
584               cl_io_is_fallocate(io) ||
585               (cl_io_is_trunc(io) && io->u.ci_setattr.sa_attr.lvb_size > 0)))
586                 GOTO(out, result = 0);
587
588         /*
589          * for truncate, it only needs to instantiate the components
590          * before the truncated size.
591          */
592         if (cl_io_is_trunc(io)) {
593                 io->ci_write_intent.e_start = 0;
594                 /* for writes, e_end is endpos, the location of the file
595                  * pointer after the write is completed, so it is not accessed.
596                  * For truncate, 'end' is the size, and *is* acccessed.
597                  * In other words, writes are [start, end), but truncate is
598                  * [start, size], where both are included.  So add 1 to the
599                  * size when creating the write intent to account for this.
600                  */
601                 io->ci_write_intent.e_end =
602                         io->u.ci_setattr.sa_attr.lvb_size + 1;
603         } else {
604                 io->ci_write_intent.e_start = lio->lis_pos;
605                 io->ci_write_intent.e_end = lio->lis_endpos;
606         }
607
608         index = 0;
609         lov_foreach_io_layout(index, lio, &io->ci_write_intent) {
610                 if (!lsm_entry_inited(obj->lo_lsm, index)) {
611                         io->ci_need_write_intent = 1;
612                         break;
613                 }
614         }
615
616         if (io->ci_need_write_intent && io->ci_designated_mirror > 0) {
617                 /*
618                  * REINT_SYNC RPC has already tried to instantiate all of the
619                  * components involved, obviously it didn't succeed. Skip this
620                  * mirror for now. The server won't be able to figure out
621                  * which mirror it should instantiate components
622                  */
623                 CERROR(DFID": trying to instantiate components for designated "
624                        "I/O, file state: %d\n",
625                        PFID(lu_object_fid(lov2lu(obj))), lov_flr_state(obj));
626
627                 io->ci_need_write_intent = 0;
628                 GOTO(out, result = -EIO);
629         }
630
631         if (io->ci_need_write_intent)
632                 GOTO(out, result = 1);
633
634         EXIT;
635
636 out:
637         return result;
638 }
639
640 static void lov_io_fini(const struct lu_env *env, const struct cl_io_slice *ios)
641 {
642         struct lov_io *lio = cl2lov_io(env, ios);
643         struct lov_object *lov = cl2lov(ios->cis_obj);
644         struct lov_io_sub *sub;
645
646         ENTRY;
647         LASSERT(list_empty(&lio->lis_active));
648
649         while ((sub = list_first_entry_or_null(&lio->lis_subios,
650                                                struct lov_io_sub,
651                                                sub_list)) != NULL) {
652                 list_del_init(&sub->sub_list);
653                 lio->lis_nr_subios--;
654
655                 lov_io_sub_fini(env, lio, sub);
656                 lov_sub_free(lio, sub);
657         }
658         LASSERT(lio->lis_nr_subios == 0);
659
660         LASSERT(atomic_read(&lov->lo_active_ios) > 0);
661         if (atomic_dec_and_test(&lov->lo_active_ios))
662                 wake_up(&lov->lo_waitq);
663         EXIT;
664 }
665
666 static void lov_io_sub_inherit(struct lov_io_sub *sub, struct lov_io *lio,
667                                loff_t start, loff_t end)
668 {
669         struct cl_io *io = &sub->sub_io;
670         struct lov_stripe_md *lsm = lio->lis_object->lo_lsm;
671         struct cl_io *parent = lio->lis_cl.cis_io;
672         int index = lov_comp_entry(sub->sub_subio_index);
673         int stripe = lov_comp_stripe(sub->sub_subio_index);
674
675         switch (io->ci_type) {
676         case CIT_SETATTR: {
677                 io->u.ci_setattr.sa_attr = parent->u.ci_setattr.sa_attr;
678                 io->u.ci_setattr.sa_attr_flags =
679                         parent->u.ci_setattr.sa_attr_flags;
680                 io->u.ci_setattr.sa_avalid = parent->u.ci_setattr.sa_avalid;
681                 io->u.ci_setattr.sa_xvalid = parent->u.ci_setattr.sa_xvalid;
682                 io->u.ci_setattr.sa_falloc_mode =
683                         parent->u.ci_setattr.sa_falloc_mode;
684                 io->u.ci_setattr.sa_stripe_index = stripe;
685                 io->u.ci_setattr.sa_parent_fid =
686                                         parent->u.ci_setattr.sa_parent_fid;
687                 /* For SETATTR(fallocate) pass the subtype to lower IO */
688                 io->u.ci_setattr.sa_subtype = parent->u.ci_setattr.sa_subtype;
689                 if (cl_io_is_fallocate(io)) {
690                         io->u.ci_setattr.sa_falloc_offset = start;
691                         io->u.ci_setattr.sa_falloc_end = end;
692                 }
693                 if (cl_io_is_trunc(io)) {
694                         loff_t new_size = parent->u.ci_setattr.sa_attr.lvb_size;
695
696                         new_size = lov_size_to_stripe(lsm, index, new_size,
697                                                       stripe);
698                         io->u.ci_setattr.sa_attr.lvb_size = new_size;
699                 }
700                 lov_lsm2layout(lsm, lsm->lsm_entries[index],
701                                &io->u.ci_setattr.sa_layout);
702                 break;
703         }
704         case CIT_DATA_VERSION: {
705                 io->u.ci_data_version.dv_data_version = 0;
706                 io->u.ci_data_version.dv_flags =
707                         parent->u.ci_data_version.dv_flags;
708                 break;
709         }
710         case CIT_FAULT: {
711                 struct cl_object *obj = parent->ci_obj;
712                 loff_t off = cl_offset(obj, parent->u.ci_fault.ft_index);
713
714                 io->u.ci_fault = parent->u.ci_fault;
715                 off = lov_size_to_stripe(lsm, index, off, stripe);
716                 io->u.ci_fault.ft_index = cl_index(obj, off);
717                 break;
718         }
719         case CIT_FSYNC: {
720                 io->u.ci_fsync.fi_start = start;
721                 io->u.ci_fsync.fi_end = end;
722                 io->u.ci_fsync.fi_fid = parent->u.ci_fsync.fi_fid;
723                 io->u.ci_fsync.fi_mode = parent->u.ci_fsync.fi_mode;
724                 break;
725         }
726         case CIT_READ:
727         case CIT_WRITE: {
728                 io->u.ci_wr.wr_sync = cl_io_is_sync_write(parent);
729                 io->ci_tried_all_mirrors = parent->ci_tried_all_mirrors;
730                 if (cl_io_is_append(parent)) {
731                         io->u.ci_wr.wr_append = 1;
732                 } else {
733                         io->u.ci_rw.crw_pos = start;
734                         io->u.ci_rw.crw_count = end - start;
735                 }
736                 break;
737         }
738         case CIT_LADVISE: {
739                 io->u.ci_ladvise.li_start = start;
740                 io->u.ci_ladvise.li_end = end;
741                 io->u.ci_ladvise.li_fid = parent->u.ci_ladvise.li_fid;
742                 io->u.ci_ladvise.li_advice = parent->u.ci_ladvise.li_advice;
743                 io->u.ci_ladvise.li_flags = parent->u.ci_ladvise.li_flags;
744                 break;
745         }
746         case CIT_LSEEK: {
747                 io->u.ci_lseek.ls_start = start;
748                 io->u.ci_lseek.ls_whence = parent->u.ci_lseek.ls_whence;
749                 io->u.ci_lseek.ls_result = parent->u.ci_lseek.ls_result;
750                 break;
751         }
752         case CIT_GLIMPSE:
753         case CIT_MISC:
754         default:
755                 break;
756         }
757 }
758
759 static loff_t lov_offset_mod(loff_t val, int delta)
760 {
761         if (val != OBD_OBJECT_EOF)
762                 val += delta;
763         return val;
764 }
765
766 static int lov_io_add_sub(const struct lu_env *env, struct lov_io *lio,
767                           struct lov_io_sub *sub, u64 start, u64 end)
768 {
769         int rc;
770
771         end = lov_offset_mod(end, 1);
772         lov_io_sub_inherit(sub, lio, start, end);
773         rc = cl_io_iter_init(sub->sub_env, &sub->sub_io);
774         if (rc != 0) {
775                 cl_io_iter_fini(sub->sub_env, &sub->sub_io);
776                 return rc;
777         }
778
779         list_add_tail(&sub->sub_linkage, &lio->lis_active);
780
781         return rc;
782 }
783 static int lov_io_iter_init(const struct lu_env *env,
784                             const struct cl_io_slice *ios)
785 {
786         struct lov_io *lio = cl2lov_io(env, ios);
787         struct lov_stripe_md *lsm = lio->lis_object->lo_lsm;
788         struct lov_io_sub *sub;
789         struct lu_extent ext;
790         int index;
791         int rc = 0;
792
793         ENTRY;
794
795         ext.e_start = lio->lis_pos;
796         ext.e_end = lio->lis_endpos;
797
798         lov_foreach_io_layout(index, lio, &ext) {
799                 struct lov_layout_entry *le = lov_entry(lio->lis_object, index);
800                 struct lov_layout_raid0 *r0 = &le->lle_raid0;
801                 u64 start;
802                 u64 end;
803                 int stripe;
804                 bool tested_trunc_stripe = false;
805
806                 r0->lo_trunc_stripeno = -1;
807
808                 CDEBUG(D_VFSTRACE, "component[%d] flags %#x\n",
809                        index, lsm->lsm_entries[index]->lsme_flags);
810                 if (!lsm_entry_inited(lsm, index)) {
811                         /*
812                          * Read from uninitialized components should return
813                          * zero filled pages.
814                          */
815                         continue;
816                 }
817
818                 if (lsm_entry_is_foreign(lsm, index))
819                         continue;
820
821                 if (!le->lle_valid && !ios->cis_io->ci_designated_mirror) {
822                         CERROR("I/O to invalid component: %d, mirror: %d\n",
823                                index, lio->lis_mirror_index);
824                         RETURN(-EIO);
825                 }
826
827                 for (stripe = 0; stripe < r0->lo_nr; stripe++) {
828                         if (!lov_stripe_intersects(lsm, index, stripe,
829                                                    &ext, &start, &end))
830                                 continue;
831
832                         if (unlikely(!r0->lo_sub[stripe])) {
833                                 if (ios->cis_io->ci_type == CIT_READ ||
834                                     ios->cis_io->ci_type == CIT_WRITE ||
835                                     ios->cis_io->ci_type == CIT_FAULT)
836                                         RETURN(-EIO);
837
838                                 continue;
839                         }
840
841                         if (cl_io_is_trunc(ios->cis_io) &&
842                             !tested_trunc_stripe) {
843                                 int prev;
844                                 u64 tr_start;
845
846                                 prev = (stripe == 0) ? r0->lo_nr - 1 :
847                                                         stripe - 1;
848                                 /**
849                                  * Only involving previous stripe if the
850                                  * truncate in this component is at the
851                                  * beginning of this stripe.
852                                  */
853                                 tested_trunc_stripe = true;
854                                 if (ext.e_start < lsm->lsm_entries[index]->
855                                                         lsme_extent.e_start) {
856                                         /* need previous stripe involvement */
857                                         r0->lo_trunc_stripeno = prev;
858                                 } else {
859                                         tr_start = ext.e_start;
860                                         tr_start = lov_do_div64(tr_start,
861                                                       stripe_width(lsm, index));
862                                         /* tr_start %= stripe_swidth */
863                                         if (tr_start == stripe * lsm->
864                                                         lsm_entries[index]->
865                                                         lsme_stripe_size)
866                                                 r0->lo_trunc_stripeno = prev;
867                                 }
868                         }
869
870                         /* if the last stripe is the trunc stripeno */
871                         if (r0->lo_trunc_stripeno == stripe)
872                                 r0->lo_trunc_stripeno = -1;
873
874                         sub = lov_sub_get(env, lio,
875                                           lov_comp_index(index, stripe));
876                         if (IS_ERR(sub))
877                                 return PTR_ERR(sub);
878
879                         rc = lov_io_add_sub(env, lio, sub, start, end);
880                         if (rc != 0)
881                                 break;
882                 }
883                 if (rc != 0)
884                         break;
885
886                 if (r0->lo_trunc_stripeno != -1) {
887                         stripe = r0->lo_trunc_stripeno;
888                         if (unlikely(!r0->lo_sub[stripe])) {
889                                 r0->lo_trunc_stripeno = -1;
890                                 continue;
891                         }
892                         sub = lov_sub_get(env, lio,
893                                           lov_comp_index(index, stripe));
894                         if (IS_ERR(sub))
895                                 return PTR_ERR(sub);
896
897                         /**
898                          * the prev sub could be used by another truncate, we'd
899                          * skip it. LU-14128 happends when expand truncate +
900                          * read get wrong kms.
901                          */
902                         if (!list_empty(&sub->sub_linkage)) {
903                                 r0->lo_trunc_stripeno = -1;
904                                 continue;
905                         }
906
907                         (void)lov_stripe_intersects(lsm, index, stripe, &ext,
908                                                     &start, &end);
909                         rc = lov_io_add_sub(env, lio, sub, start, end);
910                         if (rc != 0)
911                                 break;
912
913                 }
914         }
915         RETURN(rc);
916 }
917
918 static int lov_io_rw_iter_init(const struct lu_env *env,
919                                const struct cl_io_slice *ios)
920 {
921         struct lov_io *lio = cl2lov_io(env, ios);
922         struct cl_io *io = ios->cis_io;
923         struct lov_stripe_md_entry *lse;
924         loff_t start = io->u.ci_rw.crw_pos;
925         loff_t next;
926         int index;
927
928         LASSERT(io->ci_type == CIT_READ || io->ci_type == CIT_WRITE);
929         ENTRY;
930
931         if (cl_io_is_append(io))
932                 RETURN(lov_io_iter_init(env, ios));
933
934         index = lov_io_layout_at(lio, io->u.ci_rw.crw_pos);
935         if (index < 0) { /* non-existing layout component */
936                 if (io->ci_type == CIT_READ) {
937                         /*
938                          * TODO: it needs to detect the next component and
939                          * then set the next pos
940                          */
941                         io->ci_continue = 0;
942
943                         RETURN(lov_io_iter_init(env, ios));
944                 }
945
946                 RETURN(-ENODATA);
947         }
948
949         if (!lov_entry(lio->lis_object, index)->lle_valid &&
950             !io->ci_designated_mirror)
951                 RETURN(io->ci_type == CIT_READ ? -EAGAIN : -EIO);
952
953         lse = lov_lse(lio->lis_object, index);
954
955         if (lsme_is_foreign(lse))
956                 RETURN(-EINVAL);
957
958         next = MAX_LFS_FILESIZE;
959         if (lse->lsme_stripe_count > 1) {
960                 unsigned long ssize = lse->lsme_stripe_size;
961
962                 lov_do_div64(start, ssize);
963                 next = (start + 1) * ssize;
964                 if (next <= start * ssize)
965                         next = MAX_LFS_FILESIZE;
966         }
967
968         LASSERTF(io->u.ci_rw.crw_pos >= lse->lsme_extent.e_start,
969                  "pos %lld, [%lld, %lld)\n", io->u.ci_rw.crw_pos,
970                  lse->lsme_extent.e_start, lse->lsme_extent.e_end);
971         next = min_t(__u64, next, lse->lsme_extent.e_end);
972         next = min_t(loff_t, next, lio->lis_io_endpos);
973
974         io->ci_continue = next < lio->lis_io_endpos;
975         io->u.ci_rw.crw_count = next - io->u.ci_rw.crw_pos;
976         lio->lis_pos    = io->u.ci_rw.crw_pos;
977         lio->lis_endpos = io->u.ci_rw.crw_pos + io->u.ci_rw.crw_count;
978         CDEBUG(D_VFSTRACE,
979                "stripe: %llu chunk: [%llu, %llu) %llu, %zd\n",
980                (__u64)start, lio->lis_pos, lio->lis_endpos,
981                (__u64)lio->lis_io_endpos, io->u.ci_rw.crw_count);
982
983         /*
984          * XXX The following call should be optimized: we know, that
985          * [lio->lis_pos, lio->lis_endpos) intersects with exactly one stripe.
986          */
987         RETURN(lov_io_iter_init(env, ios));
988 }
989
990 static int lov_io_setattr_iter_init(const struct lu_env *env,
991                                     const struct cl_io_slice *ios)
992 {
993         struct lov_io *lio = cl2lov_io(env, ios);
994         struct cl_io *io = ios->cis_io;
995         int index;
996         ENTRY;
997
998         if (cl_io_is_trunc(io) && lio->lis_pos > 0) {
999                 index = lov_io_layout_at(lio, lio->lis_pos - 1);
1000                 /* no entry found for such offset */
1001                 if (index < 0)
1002                         RETURN(io->ci_result = -ENODATA);
1003         }
1004
1005         RETURN(lov_io_iter_init(env, ios));
1006 }
1007
1008 static int lov_io_call(const struct lu_env *env, struct lov_io *lio,
1009                        int (*iofunc)(const struct lu_env *, struct cl_io *))
1010 {
1011         struct cl_io *parent = lio->lis_cl.cis_io;
1012         struct lov_io_sub *sub;
1013         int rc = 0;
1014
1015         ENTRY;
1016         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
1017                 rc = iofunc(sub->sub_env, &sub->sub_io);
1018                 if (rc)
1019                         break;
1020
1021                 if (parent->ci_result == 0)
1022                         parent->ci_result = sub->sub_io.ci_result;
1023         }
1024         RETURN(rc);
1025 }
1026
1027 static int lov_io_lock(const struct lu_env *env, const struct cl_io_slice *ios)
1028 {
1029         ENTRY;
1030         RETURN(lov_io_call(env, cl2lov_io(env, ios), cl_io_lock));
1031 }
1032
1033 static int lov_io_start(const struct lu_env *env, const struct cl_io_slice *ios)
1034 {
1035         ENTRY;
1036         RETURN(lov_io_call(env, cl2lov_io(env, ios), cl_io_start));
1037 }
1038
1039 static int lov_io_end_wrapper(const struct lu_env *env, struct cl_io *io)
1040 {
1041         ENTRY;
1042         /*
1043          * It's possible that lov_io_start() wasn't called against this
1044          * sub-io, either because previous sub-io failed, or upper layer
1045          * completed IO.
1046          */
1047         if (io->ci_state == CIS_IO_GOING)
1048                 cl_io_end(env, io);
1049         else
1050                 io->ci_state = CIS_IO_FINISHED;
1051         RETURN(0);
1052 }
1053
1054 static int lov_io_iter_fini_wrapper(const struct lu_env *env, struct cl_io *io)
1055 {
1056         cl_io_iter_fini(env, io);
1057         RETURN(0);
1058 }
1059
1060 static int lov_io_unlock_wrapper(const struct lu_env *env, struct cl_io *io)
1061 {
1062         cl_io_unlock(env, io);
1063         RETURN(0);
1064 }
1065
1066 static void lov_io_end(const struct lu_env *env, const struct cl_io_slice *ios)
1067 {
1068         int rc;
1069
1070         rc = lov_io_call(env, cl2lov_io(env, ios), lov_io_end_wrapper);
1071         LASSERT(rc == 0);
1072 }
1073
1074 static void
1075 lov_io_data_version_end(const struct lu_env *env, const struct cl_io_slice *ios)
1076 {
1077         struct lov_io *lio = cl2lov_io(env, ios);
1078         struct cl_io *parent = lio->lis_cl.cis_io;
1079         struct cl_data_version_io *pdv = &parent->u.ci_data_version;
1080         struct lov_io_sub *sub;
1081
1082         ENTRY;
1083         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
1084                 struct cl_data_version_io *sdv = &sub->sub_io.u.ci_data_version;
1085
1086                 lov_io_end_wrapper(sub->sub_env, &sub->sub_io);
1087
1088                 pdv->dv_data_version += sdv->dv_data_version;
1089                 if (pdv->dv_layout_version > sdv->dv_layout_version)
1090                         pdv->dv_layout_version = sdv->dv_layout_version;
1091
1092                 if (parent->ci_result == 0)
1093                         parent->ci_result = sub->sub_io.ci_result;
1094         }
1095
1096         EXIT;
1097 }
1098
1099 static void lov_io_iter_fini(const struct lu_env *env,
1100                              const struct cl_io_slice *ios)
1101 {
1102         struct lov_io *lio = cl2lov_io(env, ios);
1103         int rc;
1104
1105         ENTRY;
1106         rc = lov_io_call(env, lio, lov_io_iter_fini_wrapper);
1107         LASSERT(rc == 0);
1108         while (!list_empty(&lio->lis_active))
1109                 list_del_init(lio->lis_active.next);
1110         EXIT;
1111 }
1112
1113 static void lov_io_unlock(const struct lu_env *env,
1114                           const struct cl_io_slice *ios)
1115 {
1116         int rc;
1117
1118         ENTRY;
1119         rc = lov_io_call(env, cl2lov_io(env, ios), lov_io_unlock_wrapper);
1120         LASSERT(rc == 0);
1121         EXIT;
1122 }
1123
1124 static int lov_io_read_ahead(const struct lu_env *env,
1125                              const struct cl_io_slice *ios,
1126                              pgoff_t start, struct cl_read_ahead *ra)
1127 {
1128         struct lov_io           *lio = cl2lov_io(env, ios);
1129         struct lov_object       *loo = lio->lis_object;
1130         struct cl_object        *obj = lov2cl(loo);
1131         struct lov_layout_raid0 *r0;
1132         struct lov_io_sub       *sub;
1133         loff_t                   offset;
1134         loff_t                   suboff;
1135         pgoff_t                  ra_end;
1136         unsigned int             pps; /* pages per stripe */
1137         int                      stripe;
1138         int                      index;
1139         int                      rc;
1140         ENTRY;
1141
1142         offset = cl_offset(obj, start);
1143         index = lov_io_layout_at(lio, offset);
1144         if (index < 0 || !lsm_entry_inited(loo->lo_lsm, index) ||
1145             lsm_entry_is_foreign(loo->lo_lsm, index))
1146                 RETURN(-ENODATA);
1147
1148         /* avoid readahead to expand to stale components */
1149         if (!lov_entry(loo, index)->lle_valid)
1150                 RETURN(-EIO);
1151
1152         stripe = lov_stripe_number(loo->lo_lsm, index, offset);
1153
1154         r0 = lov_r0(loo, index);
1155         if (unlikely(!r0->lo_sub[stripe]))
1156                 RETURN(-EIO);
1157
1158         sub = lov_sub_get(env, lio, lov_comp_index(index, stripe));
1159         if (IS_ERR(sub))
1160                 RETURN(PTR_ERR(sub));
1161
1162         lov_stripe_offset(loo->lo_lsm, index, offset, stripe, &suboff);
1163         rc = cl_io_read_ahead(sub->sub_env, &sub->sub_io,
1164                               cl_index(lovsub2cl(r0->lo_sub[stripe]), suboff),
1165                               ra);
1166
1167         CDEBUG(D_READA, DFID " cra_end = %lu, stripes = %d, rc = %d\n",
1168                PFID(lu_object_fid(lov2lu(loo))), ra->cra_end_idx,
1169                     r0->lo_nr, rc);
1170         if (rc != 0)
1171                 RETURN(rc);
1172
1173         /**
1174          * Adjust the stripe index by layout of comp. ra->cra_end is the
1175          * maximum page index covered by an underlying DLM lock.
1176          * This function converts cra_end from stripe level to file level, and
1177          * make sure it's not beyond stripe and component boundary.
1178          */
1179
1180         /* cra_end is stripe level, convert it into file level */
1181         ra_end = ra->cra_end_idx;
1182         if (ra_end != CL_PAGE_EOF)
1183                 ra->cra_end_idx = lov_stripe_pgoff(loo->lo_lsm, index,
1184                                                    ra_end, stripe);
1185
1186         /* boundary of current component */
1187         ra_end = cl_index(obj, (loff_t)lov_io_extent(lio, index)->e_end);
1188         if (ra_end != CL_PAGE_EOF && ra->cra_end_idx >= ra_end)
1189                 ra->cra_end_idx = ra_end - 1;
1190
1191         if (r0->lo_nr == 1) /* single stripe file */
1192                 RETURN(0);
1193
1194         pps = lov_lse(loo, index)->lsme_stripe_size >> PAGE_SHIFT;
1195
1196         CDEBUG(D_READA, DFID " max_index = %lu, pps = %u, index = %d, "
1197                "stripe_size = %u, stripe no = %u, start index = %lu\n",
1198                PFID(lu_object_fid(lov2lu(loo))), ra->cra_end_idx, pps, index,
1199                lov_lse(loo, index)->lsme_stripe_size, stripe, start);
1200
1201         /* never exceed the end of the stripe */
1202         ra->cra_end_idx = min_t(pgoff_t, ra->cra_end_idx,
1203                                 start + pps - start % pps - 1);
1204         RETURN(0);
1205 }
1206
1207 int lov_io_lru_reserve(const struct lu_env *env,
1208                        const struct cl_io_slice *ios, loff_t pos, size_t bytes)
1209 {
1210         struct lov_io *lio = cl2lov_io(env, ios);
1211         struct lov_stripe_md *lsm = lio->lis_object->lo_lsm;
1212         struct lov_io_sub *sub;
1213         struct lu_extent ext;
1214         int index;
1215         int rc = 0;
1216
1217         ENTRY;
1218
1219         ext.e_start = pos;
1220         ext.e_end = pos + bytes;
1221         lov_foreach_io_layout(index, lio, &ext) {
1222                 struct lov_layout_entry *le = lov_entry(lio->lis_object, index);
1223                 struct lov_layout_raid0 *r0 = &le->lle_raid0;
1224                 u64 start;
1225                 u64 end;
1226                 int stripe;
1227
1228                 if (!lsm_entry_inited(lsm, index))
1229                         continue;
1230
1231                 if (!le->lle_valid && !ios->cis_io->ci_designated_mirror) {
1232                         CERROR(DFID": I/O to invalid component: %d, mirror: %d\n",
1233                                PFID(lu_object_fid(lov2lu(lio->lis_object))),
1234                                index, lio->lis_mirror_index);
1235                         RETURN(-EIO);
1236                 }
1237
1238                 for (stripe = 0; stripe < r0->lo_nr; stripe++) {
1239                         if (!lov_stripe_intersects(lsm, index, stripe,
1240                                                    &ext, &start, &end))
1241                                 continue;
1242
1243                         if (unlikely(!r0->lo_sub[stripe]))
1244                                 RETURN(-EIO);
1245
1246                         sub = lov_sub_get(env, lio,
1247                                           lov_comp_index(index, stripe));
1248                         if (IS_ERR(sub))
1249                                 return PTR_ERR(sub);
1250
1251                         rc = cl_io_lru_reserve(sub->sub_env, &sub->sub_io, start,
1252                                                end - start + 1);
1253                         if (rc != 0)
1254                                 RETURN(rc);
1255                 }
1256         }
1257
1258         RETURN(0);
1259 }
1260
1261 /**
1262  * lov implementation of cl_operations::cio_submit() method. It takes a list
1263  * of pages in \a queue, splits it into per-stripe sub-lists, invokes
1264  * cl_io_submit() on underlying devices to submit sub-lists, and then splices
1265  * everything back.
1266  *
1267  * Major complication of this function is a need to handle memory cleansing:
1268  * cl_io_submit() is called to write out pages as a part of VM memory
1269  * reclamation, and hence it may not fail due to memory shortages (system
1270  * dead-locks otherwise). To deal with this, some resources (sub-lists,
1271  * sub-environment, etc.) are allocated per-device on "startup" (i.e., in a
1272  * not-memory cleansing context), and in case of memory shortage, these
1273  * pre-allocated resources are used by lov_io_submit() under
1274  * lov_device::ld_mutex mutex.
1275  */
1276 static int lov_io_submit(const struct lu_env *env,
1277                          const struct cl_io_slice *ios,
1278                          enum cl_req_type crt, struct cl_2queue *queue)
1279 {
1280         struct cl_page_list     *qin = &queue->c2_qin;
1281         struct lov_io           *lio = cl2lov_io(env, ios);
1282         struct lov_io_sub       *sub;
1283         struct cl_page_list     *plist = &lov_env_info(env)->lti_plist;
1284         struct cl_page          *page = cl_page_list_first(qin);
1285         struct cl_page          *tmp;
1286         bool dio = false;
1287         int index;
1288         int rc = 0;
1289         ENTRY;
1290
1291         if (page->cp_type == CPT_TRANSIENT)
1292                 dio = true;
1293
1294         cl_page_list_init(plist);
1295         while (qin->pl_nr > 0) {
1296                 struct cl_2queue  *cl2q = &lov_env_info(env)->lti_cl2q;
1297
1298                 page = cl_page_list_first(qin);
1299                 if (lov_page_is_empty(page)) {
1300                         cl_page_list_move(&queue->c2_qout, qin, page);
1301
1302                         /*
1303                          * it could only be mirror read to get here therefore
1304                          * the pages will be transient. We don't care about
1305                          * the return code of cl_page_prep() at all.
1306                          */
1307                         (void) cl_page_prep(env, ios->cis_io, page, crt);
1308                         cl_page_completion(env, page, crt, 0);
1309                         continue;
1310                 }
1311
1312                 cl_2queue_init(cl2q);
1313                 cl_page_list_move(&cl2q->c2_qin, qin, page);
1314
1315                 index = page->cp_lov_index;
1316                 /* DIO is already split by stripe */
1317                 if (!dio) {
1318                         cl_page_list_for_each_safe(page, tmp, qin) {
1319                                 /* this page is not on this stripe */
1320                                 if (index != page->cp_lov_index)
1321                                         continue;
1322
1323                                 cl_page_list_move(&cl2q->c2_qin, qin, page);
1324                         }
1325                 } else {
1326                         cl_page_list_splice(qin, &cl2q->c2_qin);
1327                 }
1328
1329                 sub = lov_sub_get(env, lio, index);
1330                 if (!IS_ERR(sub)) {
1331                         rc = cl_io_submit_rw(sub->sub_env, &sub->sub_io,
1332                                              crt, cl2q);
1333                 } else {
1334                         rc = PTR_ERR(sub);
1335                 }
1336
1337                 cl_page_list_splice(&cl2q->c2_qin, plist);
1338                 cl_page_list_splice(&cl2q->c2_qout, &queue->c2_qout);
1339                 cl_2queue_fini(env, cl2q);
1340
1341                 if (rc != 0)
1342                         break;
1343         }
1344
1345         cl_page_list_splice(plist, qin);
1346         cl_page_list_fini(env, plist);
1347
1348         RETURN(rc);
1349 }
1350
1351 static int lov_io_commit_async(const struct lu_env *env,
1352                                const struct cl_io_slice *ios,
1353                                struct cl_page_list *queue, int from, int to,
1354                                cl_commit_cbt cb)
1355 {
1356         struct cl_page_list *plist = &lov_env_info(env)->lti_plist;
1357         struct lov_io *lio = cl2lov_io(env, ios);
1358         struct lov_io_sub *sub;
1359         struct cl_page *page;
1360         int rc = 0;
1361         ENTRY;
1362
1363         if (lio->lis_nr_subios == 1) {
1364                 int idx = lio->lis_single_subio_index;
1365
1366                 LASSERT(!lov_page_is_empty(cl_page_list_first(queue)));
1367
1368                 sub = lov_sub_get(env, lio, idx);
1369                 LASSERT(!IS_ERR(sub));
1370                 LASSERT(sub == &lio->lis_single_subio);
1371                 rc = cl_io_commit_async(sub->sub_env, &sub->sub_io, queue,
1372                                         from, to, cb);
1373                 RETURN(rc);
1374         }
1375
1376         cl_page_list_init(plist);
1377         while (queue->pl_nr > 0) {
1378                 int stripe_to = to;
1379                 int index;
1380
1381                 LASSERT(plist->pl_nr == 0);
1382                 page = cl_page_list_first(queue);
1383                 LASSERT(!lov_page_is_empty(page));
1384
1385                 cl_page_list_move(plist, queue, page);
1386
1387                 index = page->cp_lov_index;
1388                 while (queue->pl_nr > 0) {
1389                         page = cl_page_list_first(queue);
1390                         if (index != page->cp_lov_index)
1391                                 break;
1392
1393                         cl_page_list_move(plist, queue, page);
1394                 }
1395
1396                 if (queue->pl_nr > 0) /* still has more pages */
1397                         stripe_to = PAGE_SIZE;
1398
1399                 sub = lov_sub_get(env, lio, index);
1400                 if (!IS_ERR(sub)) {
1401                         rc = cl_io_commit_async(sub->sub_env, &sub->sub_io,
1402                                                 plist, from, stripe_to, cb);
1403                 } else {
1404                         rc = PTR_ERR(sub);
1405                         break;
1406                 }
1407
1408                 if (plist->pl_nr > 0) /* short write */
1409                         break;
1410
1411                 from = 0;
1412
1413                 if (lov_comp_entry(index) !=
1414                     lov_comp_entry(page->cp_lov_index))
1415                         cl_io_extent_release(sub->sub_env, &sub->sub_io);
1416         }
1417
1418         /* for error case, add the page back into the qin list */
1419         LASSERT(ergo(rc == 0, plist->pl_nr == 0));
1420         while (plist->pl_nr > 0) {
1421                 /* error occurred, add the uncommitted pages back into queue */
1422                 page = cl_page_list_last(plist);
1423                 cl_page_list_move_head(queue, plist, page);
1424         }
1425
1426         RETURN(rc);
1427 }
1428
1429 static int lov_io_fault_start(const struct lu_env *env,
1430                               const struct cl_io_slice *ios)
1431 {
1432         struct cl_fault_io *fio;
1433         struct lov_io      *lio;
1434         struct lov_io_sub  *sub;
1435         loff_t offset;
1436         int entry;
1437         int stripe;
1438
1439         ENTRY;
1440
1441         fio = &ios->cis_io->u.ci_fault;
1442         lio = cl2lov_io(env, ios);
1443
1444         /**
1445          * LU-14502: ft_page could be an existing cl_page associated with
1446          * the vmpage covering the fault index, and the page may still
1447          * refer to another mirror of an old IO.
1448          */
1449         if (lov_is_flr(lio->lis_object)) {
1450                 offset = cl_offset(ios->cis_obj, fio->ft_index);
1451                 entry = lov_io_layout_at(lio, offset);
1452                 if (entry < 0) {
1453                         CERROR(DFID": page fault index %lu invalid component: "
1454                                "%d, mirror: %d\n",
1455                                PFID(lu_object_fid(&ios->cis_obj->co_lu)),
1456                                fio->ft_index, entry,
1457                                lio->lis_mirror_index);
1458                         RETURN(-EIO);
1459                 }
1460                 stripe = lov_stripe_number(lio->lis_object->lo_lsm,
1461                                            entry, offset);
1462
1463                 if (fio->ft_page->cp_lov_index !=
1464                     lov_comp_index(entry, stripe)) {
1465                         CDEBUG(D_INFO, DFID": page fault at index %lu, "
1466                                "at mirror %u comp entry %u stripe %u, "
1467                                "been used with comp entry %u stripe %u\n",
1468                                PFID(lu_object_fid(&ios->cis_obj->co_lu)),
1469                                fio->ft_index, lio->lis_mirror_index,
1470                                entry, stripe,
1471                                lov_comp_entry(fio->ft_page->cp_lov_index),
1472                                lov_comp_stripe(fio->ft_page->cp_lov_index));
1473
1474                         fio->ft_page->cp_lov_index =
1475                                         lov_comp_index(entry, stripe);
1476                 }
1477         }
1478
1479         sub = lov_sub_get(env, lio, fio->ft_page->cp_lov_index);
1480         sub->sub_io.u.ci_fault.ft_nob = fio->ft_nob;
1481
1482         RETURN(lov_io_start(env, ios));
1483 }
1484
1485 static int lov_io_setattr_start(const struct lu_env *env,
1486                                 const struct cl_io_slice *ios)
1487 {
1488         struct lov_io *lio = cl2lov_io(env, ios);
1489         struct cl_io *parent = ios->cis_io;
1490         struct lov_io_sub *sub;
1491         struct lov_stripe_md *lsm = lio->lis_object->lo_lsm;
1492
1493         ENTRY;
1494
1495         if (cl_io_is_fallocate(parent)) {
1496                 list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
1497                         loff_t size = parent->u.ci_setattr.sa_attr.lvb_size;
1498                         int index = lov_comp_entry(sub->sub_subio_index);
1499                         int stripe = lov_comp_stripe(sub->sub_subio_index);
1500
1501                         size = lov_size_to_stripe(lsm, index, size, stripe);
1502                         sub->sub_io.u.ci_setattr.sa_attr.lvb_size = size;
1503                         sub->sub_io.u.ci_setattr.sa_avalid =
1504                                                 parent->u.ci_setattr.sa_avalid;
1505                 }
1506         }
1507
1508         RETURN(lov_io_start(env, ios));
1509 }
1510
1511 static void lov_io_fsync_end(const struct lu_env *env,
1512                              const struct cl_io_slice *ios)
1513 {
1514         struct lov_io *lio = cl2lov_io(env, ios);
1515         struct lov_io_sub *sub;
1516         unsigned int *written = &ios->cis_io->u.ci_fsync.fi_nr_written;
1517         ENTRY;
1518
1519         *written = 0;
1520         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
1521                 struct cl_io *subio = &sub->sub_io;
1522
1523                 lov_io_end_wrapper(sub->sub_env, subio);
1524
1525                 if (subio->ci_result == 0)
1526                         *written += subio->u.ci_fsync.fi_nr_written;
1527         }
1528         RETURN_EXIT;
1529 }
1530
1531 static void lov_io_lseek_end(const struct lu_env *env,
1532                              const struct cl_io_slice *ios)
1533 {
1534         struct lov_io *lio = cl2lov_io(env, ios);
1535         struct cl_io *io = lio->lis_cl.cis_io;
1536         struct lov_stripe_md *lsm = lio->lis_object->lo_lsm;
1537         struct lov_io_sub *sub;
1538         loff_t offset = -ENXIO;
1539         __u64 hole_off = 0;
1540         bool seek_hole = io->u.ci_lseek.ls_whence == SEEK_HOLE;
1541
1542         ENTRY;
1543
1544         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
1545                 struct cl_io *subio = &sub->sub_io;
1546                 int index = lov_comp_entry(sub->sub_subio_index);
1547                 int stripe = lov_comp_stripe(sub->sub_subio_index);
1548                 loff_t sub_off, lov_off;
1549                 __u64 comp_end = lsm->lsm_entries[index]->lsme_extent.e_end;
1550
1551                 lov_io_end_wrapper(sub->sub_env, subio);
1552
1553                 if (io->ci_result == 0)
1554                         io->ci_result = sub->sub_io.ci_result;
1555
1556                 if (io->ci_result)
1557                         continue;
1558
1559                 CDEBUG(D_INFO, DFID": entry %x stripe %u: SEEK_%s from %lld\n",
1560                        PFID(lu_object_fid(lov2lu(lio->lis_object))),
1561                        index, stripe, seek_hole ? "HOLE" : "DATA",
1562                        subio->u.ci_lseek.ls_start);
1563
1564                 /* first subio with positive result is what we need */
1565                 sub_off = subio->u.ci_lseek.ls_result;
1566                 /* Expected error, offset is out of stripe file size */
1567                 if (sub_off == -ENXIO)
1568                         continue;
1569                 /* Any other errors are not expected with ci_result == 0 */
1570                 if (sub_off < 0) {
1571                         CDEBUG(D_INFO, "unexpected error: rc = %lld\n",
1572                                sub_off);
1573                         io->ci_result = sub_off;
1574                         continue;
1575                 }
1576                 lov_off = lov_stripe_size(lsm, index, sub_off + 1, stripe) - 1;
1577                 if (lov_off < 0) {
1578                         /* the only way to get negatove lov_off here is too big
1579                          * result. Return -EOVERFLOW then.
1580                          */
1581                         io->ci_result = -EOVERFLOW;
1582                         CDEBUG(D_INFO, "offset %llu is too big: rc = %d\n",
1583                                (u64)lov_off, io->ci_result);
1584                         continue;
1585                 }
1586                 if (lov_off < io->u.ci_lseek.ls_start) {
1587                         io->ci_result = -EINVAL;
1588                         CDEBUG(D_INFO, "offset %lld < start %lld: rc = %d\n",
1589                                sub_off, io->u.ci_lseek.ls_start, io->ci_result);
1590                         continue;
1591                 }
1592                 /* resulting offset can be out of component range if stripe
1593                  * object is full and its file size was returned as virtual
1594                  * hole start. Skip this result, the next component will give
1595                  * us correct lseek result but keep possible hole offset in
1596                  * case there is no more components ahead
1597                  */
1598                 if (lov_off >= comp_end) {
1599                         /* must be SEEK_HOLE case */
1600                         if (likely(seek_hole)) {
1601                                 /* save comp end as potential hole offset */
1602                                 hole_off = max_t(__u64, comp_end, hole_off);
1603                         } else {
1604                                 io->ci_result = -EINVAL;
1605                                 CDEBUG(D_INFO,
1606                                        "off %lld >= comp_end %llu: rc = %d\n",
1607                                        lov_off, comp_end, io->ci_result);
1608                         }
1609                         continue;
1610                 }
1611
1612                 CDEBUG(D_INFO, "SEEK_%s: %lld->%lld/%lld: rc = %d\n",
1613                        seek_hole ? "HOLE" : "DATA",
1614                        subio->u.ci_lseek.ls_start, sub_off, lov_off,
1615                        sub->sub_io.ci_result);
1616                 offset = min_t(__u64, offset, lov_off);
1617         }
1618         /* no result but some component returns hole as component end */
1619         if (seek_hole && offset == -ENXIO && hole_off > 0)
1620                 offset = hole_off;
1621
1622         io->u.ci_lseek.ls_result = offset;
1623         RETURN_EXIT;
1624 }
1625
1626 static const struct cl_io_operations lov_io_ops = {
1627         .op = {
1628                 [CIT_READ] = {
1629                         .cio_fini      = lov_io_fini,
1630                         .cio_iter_init = lov_io_rw_iter_init,
1631                         .cio_iter_fini = lov_io_iter_fini,
1632                         .cio_lock      = lov_io_lock,
1633                         .cio_unlock    = lov_io_unlock,
1634                         .cio_start     = lov_io_start,
1635                         .cio_end       = lov_io_end
1636                 },
1637                 [CIT_WRITE] = {
1638                         .cio_fini      = lov_io_fini,
1639                         .cio_iter_init = lov_io_rw_iter_init,
1640                         .cio_iter_fini = lov_io_iter_fini,
1641                         .cio_lock      = lov_io_lock,
1642                         .cio_unlock    = lov_io_unlock,
1643                         .cio_start     = lov_io_start,
1644                         .cio_end       = lov_io_end
1645                 },
1646                 [CIT_SETATTR] = {
1647                         .cio_fini      = lov_io_fini,
1648                         .cio_iter_init = lov_io_setattr_iter_init,
1649                         .cio_iter_fini = lov_io_iter_fini,
1650                         .cio_lock      = lov_io_lock,
1651                         .cio_unlock    = lov_io_unlock,
1652                         .cio_start     = lov_io_setattr_start,
1653                         .cio_end       = lov_io_end
1654                 },
1655                 [CIT_DATA_VERSION] = {
1656                         .cio_fini       = lov_io_fini,
1657                         .cio_iter_init  = lov_io_iter_init,
1658                         .cio_iter_fini  = lov_io_iter_fini,
1659                         .cio_lock       = lov_io_lock,
1660                         .cio_unlock     = lov_io_unlock,
1661                         .cio_start      = lov_io_start,
1662                         .cio_end        = lov_io_data_version_end,
1663                 },
1664                 [CIT_FAULT] = {
1665                         .cio_fini      = lov_io_fini,
1666                         .cio_iter_init = lov_io_iter_init,
1667                         .cio_iter_fini = lov_io_iter_fini,
1668                         .cio_lock      = lov_io_lock,
1669                         .cio_unlock    = lov_io_unlock,
1670                         .cio_start     = lov_io_fault_start,
1671                         .cio_end       = lov_io_end
1672                 },
1673                 [CIT_FSYNC] = {
1674                         .cio_fini      = lov_io_fini,
1675                         .cio_iter_init = lov_io_iter_init,
1676                         .cio_iter_fini = lov_io_iter_fini,
1677                         .cio_lock      = lov_io_lock,
1678                         .cio_unlock    = lov_io_unlock,
1679                         .cio_start     = lov_io_start,
1680                         .cio_end       = lov_io_fsync_end
1681                 },
1682                 [CIT_LADVISE] = {
1683                         .cio_fini      = lov_io_fini,
1684                         .cio_iter_init = lov_io_iter_init,
1685                         .cio_iter_fini = lov_io_iter_fini,
1686                         .cio_lock      = lov_io_lock,
1687                         .cio_unlock    = lov_io_unlock,
1688                         .cio_start     = lov_io_start,
1689                         .cio_end       = lov_io_end
1690                 },
1691                 [CIT_LSEEK] = {
1692                         .cio_fini      = lov_io_fini,
1693                         .cio_iter_init = lov_io_iter_init,
1694                         .cio_iter_fini = lov_io_iter_fini,
1695                         .cio_lock      = lov_io_lock,
1696                         .cio_unlock    = lov_io_unlock,
1697                         .cio_start     = lov_io_start,
1698                         .cio_end       = lov_io_lseek_end
1699                 },
1700                 [CIT_GLIMPSE] = {
1701                         .cio_fini      = lov_io_fini,
1702                 },
1703                 [CIT_MISC] = {
1704                         .cio_fini      = lov_io_fini
1705                 }
1706         },
1707         .cio_read_ahead                = lov_io_read_ahead,
1708         .cio_lru_reserve               = lov_io_lru_reserve,
1709         .cio_submit                    = lov_io_submit,
1710         .cio_commit_async              = lov_io_commit_async,
1711 };
1712
1713 /*****************************************************************************
1714  *
1715  * Empty lov io operations.
1716  *
1717  */
1718
1719 static void lov_empty_io_fini(const struct lu_env *env,
1720                               const struct cl_io_slice *ios)
1721 {
1722         struct lov_object *lov = cl2lov(ios->cis_obj);
1723         ENTRY;
1724
1725         if (atomic_dec_and_test(&lov->lo_active_ios))
1726                 wake_up(&lov->lo_waitq);
1727         EXIT;
1728 }
1729
1730 static int lov_empty_io_submit(const struct lu_env *env,
1731                                const struct cl_io_slice *ios,
1732                                enum cl_req_type crt, struct cl_2queue *queue)
1733 {
1734         return -EBADF;
1735 }
1736
1737 static void lov_empty_impossible(const struct lu_env *env,
1738                                  struct cl_io_slice *ios)
1739 {
1740         LBUG();
1741 }
1742
1743 #define LOV_EMPTY_IMPOSSIBLE ((void *)lov_empty_impossible)
1744
1745 /**
1746  * An io operation vector for files without stripes.
1747  */
1748 static const struct cl_io_operations lov_empty_io_ops = {
1749         .op = {
1750                 [CIT_READ] = {
1751                         .cio_fini       = lov_empty_io_fini,
1752 #if 0
1753                         .cio_iter_init  = LOV_EMPTY_IMPOSSIBLE,
1754                         .cio_lock       = LOV_EMPTY_IMPOSSIBLE,
1755                         .cio_start      = LOV_EMPTY_IMPOSSIBLE,
1756                         .cio_end        = LOV_EMPTY_IMPOSSIBLE
1757 #endif
1758                 },
1759                 [CIT_WRITE] = {
1760                         .cio_fini      = lov_empty_io_fini,
1761                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
1762                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
1763                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
1764                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
1765                 },
1766                 [CIT_SETATTR] = {
1767                         .cio_fini      = lov_empty_io_fini,
1768                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
1769                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
1770                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
1771                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
1772                 },
1773                 [CIT_FAULT] = {
1774                         .cio_fini      = lov_empty_io_fini,
1775                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
1776                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
1777                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
1778                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
1779                 },
1780                 [CIT_FSYNC] = {
1781                         .cio_fini      = lov_empty_io_fini
1782                 },
1783                 [CIT_LADVISE] = {
1784                         .cio_fini   = lov_empty_io_fini
1785                 },
1786                 [CIT_GLIMPSE] = {
1787                         .cio_fini      = lov_empty_io_fini
1788                 },
1789                 [CIT_MISC] = {
1790                         .cio_fini      = lov_empty_io_fini
1791                 }
1792         },
1793         .cio_submit                    = lov_empty_io_submit,
1794         .cio_commit_async              = LOV_EMPTY_IMPOSSIBLE
1795 };
1796
1797 int lov_io_init_composite(const struct lu_env *env, struct cl_object *obj,
1798                           struct cl_io *io)
1799 {
1800         struct lov_io *lio = lov_env_io(env);
1801         struct lov_object *lov = cl2lov(obj);
1802         int result;
1803
1804         ENTRY;
1805
1806         INIT_LIST_HEAD(&lio->lis_active);
1807         result = lov_io_slice_init(lio, lov, io);
1808         if (result)
1809                 GOTO(out, result);
1810
1811         result = lov_io_subio_init(env, lio, io);
1812         if (!result) {
1813                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_io_ops);
1814                 atomic_inc(&lov->lo_active_ios);
1815         }
1816         EXIT;
1817 out:
1818         io->ci_result = result < 0 ? result : 0;
1819         return result;
1820 }
1821
1822 int lov_io_init_empty(const struct lu_env *env, struct cl_object *obj,
1823                       struct cl_io *io)
1824 {
1825         struct lov_object *lov = cl2lov(obj);
1826         struct lov_io *lio = lov_env_io(env);
1827         int result;
1828         ENTRY;
1829
1830         lio->lis_object = lov;
1831         switch (io->ci_type) {
1832         default:
1833                 LBUG();
1834         case CIT_MISC:
1835         case CIT_GLIMPSE:
1836         case CIT_READ:
1837                 result = 0;
1838                 break;
1839         case CIT_FSYNC:
1840         case CIT_LADVISE:
1841         case CIT_LSEEK:
1842         case CIT_SETATTR:
1843         case CIT_DATA_VERSION:
1844                 result = +1;
1845                 break;
1846         case CIT_WRITE:
1847                 result = -EBADF;
1848                 break;
1849         case CIT_FAULT:
1850                 result = -EFAULT;
1851                 CERROR("Page fault on a file without stripes: "DFID"\n",
1852                        PFID(lu_object_fid(&obj->co_lu)));
1853                 break;
1854         }
1855         if (result == 0) {
1856                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_empty_io_ops);
1857                 atomic_inc(&lov->lo_active_ios);
1858         }
1859
1860         io->ci_result = result < 0 ? result : 0;
1861         RETURN(result);
1862 }
1863
1864 int lov_io_init_released(const struct lu_env *env, struct cl_object *obj,
1865                         struct cl_io *io)
1866 {
1867         struct lov_object *lov = cl2lov(obj);
1868         struct lov_io *lio = lov_env_io(env);
1869         int result;
1870         ENTRY;
1871
1872         LASSERT(lov->lo_lsm != NULL);
1873         lio->lis_object = lov;
1874
1875         switch (io->ci_type) {
1876         default:
1877                 LASSERTF(0, "invalid type %d\n", io->ci_type);
1878                 result = -EOPNOTSUPP;
1879                 break;
1880         case CIT_GLIMPSE:
1881         case CIT_MISC:
1882         case CIT_FSYNC:
1883         case CIT_LADVISE:
1884         case CIT_DATA_VERSION:
1885                 result = 1;
1886                 break;
1887         case CIT_SETATTR:
1888                 /*
1889                  * the truncate to 0 is managed by MDT:
1890                  * - in open, for open O_TRUNC
1891                  * - in setattr, for truncate
1892                  */
1893                 /*
1894                  * the truncate is for size > 0 so triggers a restore,
1895                  * also trigger a restore for prealloc/punch
1896                  */
1897                 if (cl_io_is_trunc(io) || cl_io_is_fallocate(io)) {
1898                         io->ci_restore_needed = 1;
1899                         result = -ENODATA;
1900                 } else
1901                         result = 1;
1902                 break;
1903         case CIT_READ:
1904         case CIT_WRITE:
1905         case CIT_FAULT:
1906         case CIT_LSEEK:
1907                 io->ci_restore_needed = 1;
1908                 result = -ENODATA;
1909                 break;
1910         }
1911
1912         if (result == 0) {
1913                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_empty_io_ops);
1914                 atomic_inc(&lov->lo_active_ios);
1915         }
1916
1917         io->ci_result = result < 0 ? result : 0;
1918         RETURN(result);
1919 }
1920
1921 /**
1922  * Return the index in composite:lo_entries by the file offset
1923  */
1924 int lov_io_layout_at(struct lov_io *lio, __u64 offset)
1925 {
1926         struct lov_object *lov = lio->lis_object;
1927         struct lov_layout_composite *comp = &lov->u.composite;
1928         int start_index = 0;
1929         int end_index = comp->lo_entry_count - 1;
1930         int i;
1931
1932         LASSERT(lov->lo_type == LLT_COMP);
1933
1934         /* This is actual file offset so nothing can cover eof. */
1935         if (offset == LUSTRE_EOF)
1936                 return -1;
1937
1938         if (lov_is_flr(lov)) {
1939                 struct lov_mirror_entry *lre;
1940
1941                 LASSERT(lio->lis_mirror_index >= 0);
1942
1943                 lre = &comp->lo_mirrors[lio->lis_mirror_index];
1944                 start_index = lre->lre_start;
1945                 end_index = lre->lre_end;
1946         }
1947
1948         for (i = start_index; i <= end_index; i++) {
1949                 struct lov_layout_entry *lle = lov_entry(lov, i);
1950
1951                 LASSERT(!lsme_is_foreign(lle->lle_lsme));
1952
1953                 if ((offset >= lle->lle_extent->e_start &&
1954                      offset < lle->lle_extent->e_end) ||
1955                     (offset == OBD_OBJECT_EOF &&
1956                      lle->lle_extent->e_end == OBD_OBJECT_EOF))
1957                         return i;
1958         }
1959
1960         return -1;
1961 }
1962
1963 /** @} lov */