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