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