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