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