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