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