Whamcloud - gitweb
12f620b23ec32aff8bce0eb4d23e5ddf2ad413f5
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * Implementation of cl_io for LOV layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  *   Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_LOV
43
44 #include "lov_cl_internal.h"
45
46 /** \addtogroup lov
47  *  @{
48  */
49
50 static inline void lov_sub_enter(struct lov_io_sub *sub)
51 {
52         sub->sub_reenter++;
53 }
54 static inline void lov_sub_exit(struct lov_io_sub *sub)
55 {
56         sub->sub_reenter--;
57 }
58
59 static void lov_io_sub_fini(const struct lu_env *env, struct lov_io *lio,
60                             struct lov_io_sub *sub)
61 {
62         ENTRY;
63         if (sub->sub_io != NULL) {
64                 if (sub->sub_io_initialized) {
65                         lov_sub_enter(sub);
66                         cl_io_fini(sub->sub_env, sub->sub_io);
67                         lov_sub_exit(sub);
68                         sub->sub_io_initialized = 0;
69                         lio->lis_active_subios--;
70                 }
71                 if (sub->sub_stripe == lio->lis_single_subio_index)
72                         lio->lis_single_subio_index = -1;
73                 else if (!sub->sub_borrowed)
74                         OBD_FREE_PTR(sub->sub_io);
75                 sub->sub_io = NULL;
76         }
77         if (sub->sub_env != NULL && !IS_ERR(sub->sub_env)) {
78                 if (!sub->sub_borrowed)
79                         cl_env_put(sub->sub_env, &sub->sub_refcheck);
80                 sub->sub_env = NULL;
81         }
82         EXIT;
83 }
84
85 static void lov_io_sub_inherit(struct cl_io *io, struct lov_io *lio,
86                                int stripe, loff_t start, loff_t end)
87 {
88         struct lov_stripe_md *lsm    = lio->lis_lsm;
89         struct cl_io         *parent = lio->lis_cl.cis_io;
90
91         switch(io->ci_type) {
92         case CIT_SETATTR: {
93                 io->u.ci_setattr.sa_attr = parent->u.ci_setattr.sa_attr;
94                 io->u.ci_setattr.sa_valid = parent->u.ci_setattr.sa_valid;
95                 io->u.ci_setattr.sa_capa = parent->u.ci_setattr.sa_capa;
96                 if (cl_io_is_trunc(io)) {
97                         loff_t new_size = parent->u.ci_setattr.sa_attr.lvb_size;
98
99                         new_size = lov_size_to_stripe(lsm, new_size, stripe);
100                         io->u.ci_setattr.sa_attr.lvb_size = new_size;
101                 }
102                 break;
103         }
104         case CIT_FAULT: {
105                 struct cl_object *obj = parent->ci_obj;
106                 loff_t off = cl_offset(obj, parent->u.ci_fault.ft_index);
107
108                 io->u.ci_fault = parent->u.ci_fault;
109                 off = lov_size_to_stripe(lsm, off, stripe);
110                 io->u.ci_fault.ft_index = cl_index(obj, off);
111                 break;
112         }
113         case CIT_FSYNC: {
114                 io->u.ci_fsync.fi_start = start;
115                 io->u.ci_fsync.fi_end = end;
116                 io->u.ci_fsync.fi_capa = parent->u.ci_fsync.fi_capa;
117                 io->u.ci_fsync.fi_fid = parent->u.ci_fsync.fi_fid;
118                 io->u.ci_fsync.fi_mode = parent->u.ci_fsync.fi_mode;
119                 break;
120         }
121         case CIT_READ:
122         case CIT_WRITE: {
123                 io->u.ci_wr.wr_sync = cl_io_is_sync_write(parent);
124                 if (cl_io_is_append(parent)) {
125                         io->u.ci_wr.wr_append = 1;
126                 } else {
127                         io->u.ci_rw.crw_pos = start;
128                         io->u.ci_rw.crw_count = end - start;
129                 }
130                 break;
131         }
132         default:
133                 break;
134         }
135 }
136
137 static int lov_io_sub_init(const struct lu_env *env, struct lov_io *lio,
138                            struct lov_io_sub *sub)
139 {
140         struct lov_object *lov = lio->lis_object;
141         struct lov_device *ld  = lu2lov_dev(lov2cl(lov)->co_lu.lo_dev);
142         struct cl_io      *sub_io;
143         struct cl_object  *sub_obj;
144         struct cl_io      *io  = lio->lis_cl.cis_io;
145
146         int stripe = sub->sub_stripe;
147         int result;
148
149         LASSERT(sub->sub_io == NULL);
150         LASSERT(sub->sub_env == NULL);
151         LASSERT(sub->sub_stripe < lio->lis_stripe_count);
152         ENTRY;
153
154         result = 0;
155         sub->sub_io_initialized = 0;
156         sub->sub_borrowed = 0;
157
158         if (lio->lis_mem_frozen) {
159                 LASSERT(cfs_mutex_is_locked(&ld->ld_mutex));
160                 sub->sub_io  = &ld->ld_emrg[stripe]->emrg_subio;
161                 sub->sub_env = ld->ld_emrg[stripe]->emrg_env;
162                 sub->sub_borrowed = 1;
163         } else {
164                 void *cookie;
165
166                 /* obtain new environment */
167                 cookie = cl_env_reenter();
168                 sub->sub_env = cl_env_get(&sub->sub_refcheck);
169                 cl_env_reexit(cookie);
170                 if (IS_ERR(sub->sub_env))
171                         result = PTR_ERR(sub->sub_env);
172
173                 if (result == 0) {
174                         /*
175                          * First sub-io. Use ->lis_single_subio to
176                          * avoid dynamic allocation.
177                          */
178                         if (lio->lis_active_subios == 0) {
179                                 sub->sub_io = &lio->lis_single_subio;
180                                 lio->lis_single_subio_index = stripe;
181                         } else {
182                                 OBD_ALLOC_PTR(sub->sub_io);
183                                 if (sub->sub_io == NULL)
184                                         result = -ENOMEM;
185                         }
186                 }
187         }
188
189         if (result == 0) {
190                 sub_obj = lovsub2cl(lov_r0(lov)->lo_sub[stripe]);
191                 sub_io  = sub->sub_io;
192
193                 sub_io->ci_obj    = sub_obj;
194                 sub_io->ci_result = 0;
195
196                 sub_io->ci_parent  = io;
197                 sub_io->ci_lockreq = io->ci_lockreq;
198                 sub_io->ci_type    = io->ci_type;
199                 sub_io->ci_no_srvlock = io->ci_no_srvlock;
200
201                 lov_sub_enter(sub);
202                 result = cl_io_sub_init(sub->sub_env, sub_io,
203                                         io->ci_type, sub_obj);
204                 lov_sub_exit(sub);
205                 if (result >= 0) {
206                         lio->lis_active_subios++;
207                         sub->sub_io_initialized = 1;
208                         result = 0;
209                 }
210         }
211         if (result != 0)
212                 lov_io_sub_fini(env, lio, sub);
213         RETURN(result);
214 }
215
216 struct lov_io_sub *lov_sub_get(const struct lu_env *env,
217                                struct lov_io *lio, int stripe)
218 {
219         int rc;
220         struct lov_io_sub *sub = &lio->lis_subs[stripe];
221
222         LASSERT(stripe < lio->lis_stripe_count);
223         ENTRY;
224
225         if (!sub->sub_io_initialized) {
226                 sub->sub_stripe = stripe;
227                 rc = lov_io_sub_init(env, lio, sub);
228         } else
229                 rc = 0;
230         if (rc == 0)
231                 lov_sub_enter(sub);
232         else
233                 sub = ERR_PTR(rc);
234         RETURN(sub);
235 }
236
237 void lov_sub_put(struct lov_io_sub *sub)
238 {
239         lov_sub_exit(sub);
240 }
241
242 /*****************************************************************************
243  *
244  * Lov io operations.
245  *
246  */
247
248 static int lov_page_stripe(const struct cl_page *page)
249 {
250         struct lovsub_object *subobj;
251
252         ENTRY;
253         subobj = lu2lovsub(
254                 lu_object_locate(page->cp_child->cp_obj->co_lu.lo_header,
255                                  &lovsub_device_type));
256         LASSERT(subobj != NULL);
257         RETURN(subobj->lso_index);
258 }
259
260 struct lov_io_sub *lov_page_subio(const struct lu_env *env, struct lov_io *lio,
261                                   const struct cl_page_slice *slice)
262 {
263         struct lov_stripe_md *lsm  = lio->lis_lsm;
264         struct cl_page       *page = slice->cpl_page;
265         int stripe;
266
267         LASSERT(lio->lis_cl.cis_io != NULL);
268         LASSERT(cl2lov(slice->cpl_obj) == lio->lis_object);
269         LASSERT(lsm != NULL);
270         LASSERT(lio->lis_nr_subios > 0);
271         ENTRY;
272
273         stripe = lov_page_stripe(page);
274         RETURN(lov_sub_get(env, lio, stripe));
275 }
276
277
278 static int lov_io_subio_init(const struct lu_env *env, struct lov_io *lio,
279                              struct cl_io *io)
280 {
281         struct lov_stripe_md *lsm = lio->lis_lsm;
282         int result;
283
284         LASSERT(lio->lis_object != NULL);
285         ENTRY;
286
287         /*
288          * Need to be optimized, we can't afford to allocate a piece of memory
289          * when writing a page. -jay
290          */
291         OBD_ALLOC_LARGE(lio->lis_subs,
292                         lsm->lsm_stripe_count * sizeof lio->lis_subs[0]);
293         if (lio->lis_subs != NULL) {
294                 lio->lis_nr_subios = lio->lis_stripe_count;
295                 lio->lis_single_subio_index = -1;
296                 lio->lis_active_subios = 0;
297                 result = 0;
298         } else
299                 result = -ENOMEM;
300         RETURN(result);
301 }
302
303 static void lov_io_slice_init(struct lov_io *lio,
304                               struct lov_object *obj, struct cl_io *io)
305 {
306         struct lov_stripe_md *lsm = lov_lsm_addref(obj);
307         ENTRY;
308
309         io->ci_result = 0;
310         lio->lis_object = obj;
311
312         LASSERT(lsm != NULL);
313         lio->lis_lsm = lsm; /* called inside lo_type_guard. */
314         lio->lis_stripe_count = lsm->lsm_stripe_count;
315
316         switch (io->ci_type) {
317         case CIT_READ:
318         case CIT_WRITE:
319                 lio->lis_pos = io->u.ci_rw.crw_pos;
320                 lio->lis_endpos = io->u.ci_rw.crw_pos + io->u.ci_rw.crw_count;
321                 lio->lis_io_endpos = lio->lis_endpos;
322                 if (cl_io_is_append(io)) {
323                         LASSERT(io->ci_type == CIT_WRITE);
324                         lio->lis_pos = 0;
325                         lio->lis_endpos = OBD_OBJECT_EOF;
326                 }
327                 break;
328
329         case CIT_SETATTR:
330                 if (cl_io_is_trunc(io))
331                         lio->lis_pos = io->u.ci_setattr.sa_attr.lvb_size;
332                 else
333                         lio->lis_pos = 0;
334                 lio->lis_endpos = OBD_OBJECT_EOF;
335                 break;
336
337         case CIT_FAULT: {
338                 pgoff_t index = io->u.ci_fault.ft_index;
339                 lio->lis_pos = cl_offset(io->ci_obj, index);
340                 lio->lis_endpos = cl_offset(io->ci_obj, index + 1);
341                 break;
342         }
343
344         case CIT_FSYNC: {
345                 lio->lis_pos = io->u.ci_fsync.fi_start;
346                 lio->lis_endpos = io->u.ci_fsync.fi_end;
347                 break;
348         }
349
350         case CIT_MISC:
351                 lio->lis_pos = 0;
352                 lio->lis_endpos = OBD_OBJECT_EOF;
353                 break;
354
355         default:
356                 LBUG();
357         }
358
359         EXIT;
360 }
361
362 static void lov_io_fini(const struct lu_env *env, const struct cl_io_slice *ios)
363 {
364         struct lov_io *lio = cl2lov_io(env, ios);
365         int i;
366
367         ENTRY;
368         if (lio->lis_subs != NULL) {
369                 for (i = 0; i < lio->lis_nr_subios; i++)
370                         lov_io_sub_fini(env, lio, &lio->lis_subs[i]);
371                 OBD_FREE_LARGE(lio->lis_subs,
372                          lio->lis_nr_subios * sizeof lio->lis_subs[0]);
373                 lio->lis_nr_subios = 0;
374         }
375         lov_lsm_decref(lio->lis_object, lio->lis_lsm);
376         lio->lis_lsm = NULL;
377         EXIT;
378 }
379
380 static obd_off lov_offset_mod(obd_off val, int delta)
381 {
382         if (val != OBD_OBJECT_EOF)
383                 val += delta;
384         return val;
385 }
386
387 static int lov_io_iter_init(const struct lu_env *env,
388                             const struct cl_io_slice *ios)
389 {
390         struct lov_io        *lio = cl2lov_io(env, ios);
391         struct lov_stripe_md *lsm = lio->lis_lsm;
392         struct lov_io_sub    *sub;
393         obd_off endpos;
394         obd_off start;
395         obd_off end;
396         int stripe;
397         int rc = 0;
398
399         ENTRY;
400         endpos = lov_offset_mod(lio->lis_endpos, -1);
401         for (stripe = 0; stripe < lio->lis_stripe_count; stripe++) {
402                 if (!lov_stripe_intersects(lsm, stripe, lio->lis_pos,
403                                            endpos, &start, &end))
404                         continue;
405
406                 end = lov_offset_mod(end, +1);
407                 sub = lov_sub_get(env, lio, stripe);
408                 if (!IS_ERR(sub)) {
409                         lov_io_sub_inherit(sub->sub_io, lio, stripe,
410                                            start, end);
411                         rc = cl_io_iter_init(sub->sub_env, sub->sub_io);
412                         lov_sub_put(sub);
413                         CDEBUG(D_VFSTRACE, "shrink: %d ["LPU64", "LPU64")\n",
414                                stripe, start, end);
415                 } else
416                         rc = PTR_ERR(sub);
417
418                 if (!rc)
419                         cfs_list_add_tail(&sub->sub_linkage, &lio->lis_active);
420                 else
421                         break;
422         }
423         RETURN(rc);
424 }
425
426 static int lov_io_rw_iter_init(const struct lu_env *env,
427                                const struct cl_io_slice *ios)
428 {
429         struct lov_io        *lio = cl2lov_io(env, ios);
430         struct cl_io         *io  = ios->cis_io;
431         struct lov_stripe_md *lsm = lio->lis_lsm;
432         loff_t start = io->u.ci_rw.crw_pos;
433         loff_t next;
434         unsigned long ssize = lsm->lsm_stripe_size;
435
436         LASSERT(io->ci_type == CIT_READ || io->ci_type == CIT_WRITE);
437         ENTRY;
438
439         /* fast path for common case. */
440         if (lio->lis_nr_subios != 1 && !cl_io_is_append(io)) {
441
442                 lov_do_div64(start, ssize);
443                 next = (start + 1) * ssize;
444                 if (next <= start * ssize)
445                         next = ~0ull;
446
447                 io->ci_continue = next < lio->lis_io_endpos;
448                 io->u.ci_rw.crw_count = min_t(loff_t, lio->lis_io_endpos,
449                                               next) - io->u.ci_rw.crw_pos;
450                 lio->lis_pos    = io->u.ci_rw.crw_pos;
451                 lio->lis_endpos = io->u.ci_rw.crw_pos + io->u.ci_rw.crw_count;
452                 CDEBUG(D_VFSTRACE, "stripe: "LPU64" chunk: ["LPU64", "LPU64") "
453                        LPU64"\n", (__u64)start, lio->lis_pos, lio->lis_endpos,
454                        (__u64)lio->lis_io_endpos);
455         }
456         /*
457          * XXX The following call should be optimized: we know, that
458          * [lio->lis_pos, lio->lis_endpos) intersects with exactly one stripe.
459          */
460         RETURN(lov_io_iter_init(env, ios));
461 }
462
463 static int lov_io_call(const struct lu_env *env, struct lov_io *lio,
464                        int (*iofunc)(const struct lu_env *, struct cl_io *))
465 {
466         struct cl_io *parent = lio->lis_cl.cis_io;
467         struct lov_io_sub *sub;
468         int rc = 0;
469
470         ENTRY;
471         cfs_list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
472                 lov_sub_enter(sub);
473                 rc = iofunc(sub->sub_env, sub->sub_io);
474                 lov_sub_exit(sub);
475                 if (rc)
476                         break;
477
478                 if (parent->ci_result == 0)
479                         parent->ci_result = sub->sub_io->ci_result;
480         }
481         RETURN(rc);
482 }
483
484 static int lov_io_lock(const struct lu_env *env, const struct cl_io_slice *ios)
485 {
486         ENTRY;
487         RETURN(lov_io_call(env, cl2lov_io(env, ios), cl_io_lock));
488 }
489
490 static int lov_io_start(const struct lu_env *env, const struct cl_io_slice *ios)
491 {
492         ENTRY;
493         RETURN(lov_io_call(env, cl2lov_io(env, ios), cl_io_start));
494 }
495
496 static int lov_io_end_wrapper(const struct lu_env *env, struct cl_io *io)
497 {
498         ENTRY;
499         /*
500          * It's possible that lov_io_start() wasn't called against this
501          * sub-io, either because previous sub-io failed, or upper layer
502          * completed IO.
503          */
504         if (io->ci_state == CIS_IO_GOING)
505                 cl_io_end(env, io);
506         else
507                 io->ci_state = CIS_IO_FINISHED;
508         RETURN(0);
509 }
510
511 static int lov_io_iter_fini_wrapper(const struct lu_env *env, struct cl_io *io)
512 {
513         cl_io_iter_fini(env, io);
514         RETURN(0);
515 }
516
517 static int lov_io_unlock_wrapper(const struct lu_env *env, struct cl_io *io)
518 {
519         cl_io_unlock(env, io);
520         RETURN(0);
521 }
522
523 static void lov_io_end(const struct lu_env *env, const struct cl_io_slice *ios)
524 {
525         int rc;
526
527         rc = lov_io_call(env, cl2lov_io(env, ios), lov_io_end_wrapper);
528         LASSERT(rc == 0);
529 }
530
531 static void lov_io_iter_fini(const struct lu_env *env,
532                              const struct cl_io_slice *ios)
533 {
534         struct lov_io *lio = cl2lov_io(env, ios);
535         int rc;
536
537         ENTRY;
538         rc = lov_io_call(env, lio, lov_io_iter_fini_wrapper);
539         LASSERT(rc == 0);
540         while (!cfs_list_empty(&lio->lis_active))
541                 cfs_list_del_init(lio->lis_active.next);
542         EXIT;
543 }
544
545 static void lov_io_unlock(const struct lu_env *env,
546                           const struct cl_io_slice *ios)
547 {
548         int rc;
549
550         ENTRY;
551         rc = lov_io_call(env, cl2lov_io(env, ios), lov_io_unlock_wrapper);
552         LASSERT(rc == 0);
553         EXIT;
554 }
555
556
557 static struct cl_page_list *lov_io_submit_qin(struct lov_device *ld,
558                                               struct cl_page_list *qin,
559                                               int idx, int alloc)
560 {
561         return alloc ? &qin[idx] : &ld->ld_emrg[idx]->emrg_page_list;
562 }
563
564 /**
565  * lov implementation of cl_operations::cio_submit() method. It takes a list
566  * of pages in \a queue, splits it into per-stripe sub-lists, invokes
567  * cl_io_submit() on underlying devices to submit sub-lists, and then splices
568  * everything back.
569  *
570  * Major complication of this function is a need to handle memory cleansing:
571  * cl_io_submit() is called to write out pages as a part of VM memory
572  * reclamation, and hence it may not fail due to memory shortages (system
573  * dead-locks otherwise). To deal with this, some resources (sub-lists,
574  * sub-environment, etc.) are allocated per-device on "startup" (i.e., in a
575  * not-memory cleansing context), and in case of memory shortage, these
576  * pre-allocated resources are used by lov_io_submit() under
577  * lov_device::ld_mutex mutex.
578  */
579 static int lov_io_submit(const struct lu_env *env,
580                          const struct cl_io_slice *ios,
581                          enum cl_req_type crt, struct cl_2queue *queue)
582 {
583         struct lov_io          *lio = cl2lov_io(env, ios);
584         struct lov_object      *obj = lio->lis_object;
585         struct lov_device       *ld = lu2lov_dev(lov2cl(obj)->co_lu.lo_dev);
586         struct cl_page_list    *qin = &queue->c2_qin;
587         struct cl_2queue      *cl2q = &lov_env_info(env)->lti_cl2q;
588         struct cl_page_list *stripes_qin = NULL;
589         struct cl_page *page;
590         struct cl_page *tmp;
591         int stripe;
592
593 #define QIN(stripe) lov_io_submit_qin(ld, stripes_qin, stripe, alloc)
594
595         int rc = 0;
596         int alloc =
597 #if defined(__KERNEL__) && defined(__linux__)
598                 !(current->flags & PF_MEMALLOC);
599 #else
600                 1;
601 #endif
602         ENTRY;
603         if (lio->lis_active_subios == 1) {
604                 int idx = lio->lis_single_subio_index;
605                 struct lov_io_sub *sub;
606
607                 LASSERT(idx < lio->lis_nr_subios);
608                 sub = lov_sub_get(env, lio, idx);
609                 LASSERT(!IS_ERR(sub));
610                 LASSERT(sub->sub_io == &lio->lis_single_subio);
611                 rc = cl_io_submit_rw(sub->sub_env, sub->sub_io,
612                                      crt, queue);
613                 lov_sub_put(sub);
614                 RETURN(rc);
615         }
616
617         LASSERT(lio->lis_subs != NULL);
618         if (alloc) {
619                 OBD_ALLOC_LARGE(stripes_qin,
620                                 sizeof(*stripes_qin) * lio->lis_nr_subios);
621                 if (stripes_qin == NULL)
622                         RETURN(-ENOMEM);
623
624                 for (stripe = 0; stripe < lio->lis_nr_subios; stripe++)
625                         cl_page_list_init(&stripes_qin[stripe]);
626         } else {
627                 /*
628                  * If we get here, it means pageout & swap doesn't help.
629                  * In order to not make things worse, even don't try to
630                  * allocate the memory with __GFP_NOWARN. -jay
631                  */
632                 cfs_mutex_lock(&ld->ld_mutex);
633                 lio->lis_mem_frozen = 1;
634         }
635
636         cl_2queue_init(cl2q);
637         cl_page_list_for_each_safe(page, tmp, qin) {
638                 stripe = lov_page_stripe(page);
639                 cl_page_list_move(QIN(stripe), qin, page);
640         }
641
642         for (stripe = 0; stripe < lio->lis_nr_subios; stripe++) {
643                 struct lov_io_sub   *sub;
644                 struct cl_page_list *sub_qin = QIN(stripe);
645
646                 if (cfs_list_empty(&sub_qin->pl_pages))
647                         continue;
648
649                 cl_page_list_splice(sub_qin, &cl2q->c2_qin);
650                 sub = lov_sub_get(env, lio, stripe);
651                 if (!IS_ERR(sub)) {
652                         rc = cl_io_submit_rw(sub->sub_env, sub->sub_io,
653                                              crt, cl2q);
654                         lov_sub_put(sub);
655                 } else
656                         rc = PTR_ERR(sub);
657                 cl_page_list_splice(&cl2q->c2_qin,  &queue->c2_qin);
658                 cl_page_list_splice(&cl2q->c2_qout, &queue->c2_qout);
659                 if (rc != 0)
660                         break;
661         }
662
663         for (stripe = 0; stripe < lio->lis_nr_subios; stripe++) {
664                 struct cl_page_list *sub_qin = QIN(stripe);
665
666                 if (cfs_list_empty(&sub_qin->pl_pages))
667                         continue;
668
669                 cl_page_list_splice(sub_qin, qin);
670         }
671
672         if (alloc) {
673                 OBD_FREE_LARGE(stripes_qin,
674                          sizeof(*stripes_qin) * lio->lis_nr_subios);
675         } else {
676                 int i;
677
678                 for (i = 0; i < lio->lis_nr_subios; i++) {
679                         struct cl_io *cio = lio->lis_subs[i].sub_io;
680
681                         if (cio && cio == &ld->ld_emrg[i]->emrg_subio)
682                                 lov_io_sub_fini(env, lio, &lio->lis_subs[i]);
683                 }
684                 lio->lis_mem_frozen = 0;
685                 cfs_mutex_unlock(&ld->ld_mutex);
686         }
687
688         RETURN(rc);
689 #undef QIN
690 }
691
692 static int lov_io_prepare_write(const struct lu_env *env,
693                                 const struct cl_io_slice *ios,
694                                 const struct cl_page_slice *slice,
695                                 unsigned from, unsigned to)
696 {
697         struct lov_io     *lio      = cl2lov_io(env, ios);
698         struct cl_page    *sub_page = lov_sub_page(slice);
699         struct lov_io_sub *sub;
700         int result;
701
702         ENTRY;
703         sub = lov_page_subio(env, lio, slice);
704         if (!IS_ERR(sub)) {
705                 result = cl_io_prepare_write(sub->sub_env, sub->sub_io,
706                                              sub_page, from, to);
707                 lov_sub_put(sub);
708         } else
709                 result = PTR_ERR(sub);
710         RETURN(result);
711 }
712
713 static int lov_io_commit_write(const struct lu_env *env,
714                                const struct cl_io_slice *ios,
715                                const struct cl_page_slice *slice,
716                                unsigned from, unsigned to)
717 {
718         struct lov_io     *lio      = cl2lov_io(env, ios);
719         struct cl_page    *sub_page = lov_sub_page(slice);
720         struct lov_io_sub *sub;
721         int result;
722
723         ENTRY;
724         sub = lov_page_subio(env, lio, slice);
725         if (!IS_ERR(sub)) {
726                 result = cl_io_commit_write(sub->sub_env, sub->sub_io,
727                                             sub_page, from, to);
728                 lov_sub_put(sub);
729         } else
730                 result = PTR_ERR(sub);
731         RETURN(result);
732 }
733
734 static int lov_io_fault_start(const struct lu_env *env,
735                               const struct cl_io_slice *ios)
736 {
737         struct cl_fault_io *fio;
738         struct lov_io      *lio;
739         struct lov_io_sub  *sub;
740
741         ENTRY;
742         fio = &ios->cis_io->u.ci_fault;
743         lio = cl2lov_io(env, ios);
744         sub = lov_sub_get(env, lio, lov_page_stripe(fio->ft_page));
745         sub->sub_io->u.ci_fault.ft_nob = fio->ft_nob;
746         lov_sub_put(sub);
747         RETURN(lov_io_start(env, ios));
748 }
749
750 static void lov_io_fsync_end(const struct lu_env *env,
751                              const struct cl_io_slice *ios)
752 {
753         struct lov_io *lio = cl2lov_io(env, ios);
754         struct lov_io_sub *sub;
755         unsigned int *written = &ios->cis_io->u.ci_fsync.fi_nr_written;
756         ENTRY;
757
758         *written = 0;
759         cfs_list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
760                 struct cl_io *subio = sub->sub_io;
761
762                 lov_sub_enter(sub);
763                 lov_io_end_wrapper(sub->sub_env, subio);
764                 lov_sub_exit(sub);
765
766                 if (subio->ci_result == 0)
767                         *written += subio->u.ci_fsync.fi_nr_written;
768         }
769         RETURN_EXIT;
770 }
771
772 static const struct cl_io_operations lov_io_ops = {
773         .op = {
774                 [CIT_READ] = {
775                         .cio_fini      = lov_io_fini,
776                         .cio_iter_init = lov_io_rw_iter_init,
777                         .cio_iter_fini = lov_io_iter_fini,
778                         .cio_lock      = lov_io_lock,
779                         .cio_unlock    = lov_io_unlock,
780                         .cio_start     = lov_io_start,
781                         .cio_end       = lov_io_end
782                 },
783                 [CIT_WRITE] = {
784                         .cio_fini      = lov_io_fini,
785                         .cio_iter_init = lov_io_rw_iter_init,
786                         .cio_iter_fini = lov_io_iter_fini,
787                         .cio_lock      = lov_io_lock,
788                         .cio_unlock    = lov_io_unlock,
789                         .cio_start     = lov_io_start,
790                         .cio_end       = lov_io_end
791                 },
792                 [CIT_SETATTR] = {
793                         .cio_fini      = lov_io_fini,
794                         .cio_iter_init = lov_io_iter_init,
795                         .cio_iter_fini = lov_io_iter_fini,
796                         .cio_lock      = lov_io_lock,
797                         .cio_unlock    = lov_io_unlock,
798                         .cio_start     = lov_io_start,
799                         .cio_end       = lov_io_end
800                 },
801                 [CIT_FAULT] = {
802                         .cio_fini      = lov_io_fini,
803                         .cio_iter_init = lov_io_iter_init,
804                         .cio_iter_fini = lov_io_iter_fini,
805                         .cio_lock      = lov_io_lock,
806                         .cio_unlock    = lov_io_unlock,
807                         .cio_start     = lov_io_fault_start,
808                         .cio_end       = lov_io_end
809                 },
810                 [CIT_FSYNC] = {
811                         .cio_fini      = lov_io_fini,
812                         .cio_iter_init = lov_io_iter_init,
813                         .cio_iter_fini = lov_io_iter_fini,
814                         .cio_lock      = lov_io_lock,
815                         .cio_unlock    = lov_io_unlock,
816                         .cio_start     = lov_io_start,
817                         .cio_end       = lov_io_fsync_end
818                 },
819                 [CIT_MISC] = {
820                         .cio_fini   = lov_io_fini
821                 }
822         },
823         .req_op = {
824                  [CRT_READ] = {
825                          .cio_submit    = lov_io_submit
826                  },
827                  [CRT_WRITE] = {
828                          .cio_submit    = lov_io_submit
829                  }
830          },
831         .cio_prepare_write = lov_io_prepare_write,
832         .cio_commit_write  = lov_io_commit_write
833 };
834
835 /*****************************************************************************
836  *
837  * Empty lov io operations.
838  *
839  */
840
841 static void lov_empty_io_fini(const struct lu_env *env,
842                               const struct cl_io_slice *ios)
843 {
844         ENTRY;
845         EXIT;
846 }
847
848 static void lov_empty_impossible(const struct lu_env *env,
849                                  struct cl_io_slice *ios)
850 {
851         LBUG();
852 }
853
854 #define LOV_EMPTY_IMPOSSIBLE ((void *)lov_empty_impossible)
855
856 /**
857  * An io operation vector for files without stripes.
858  */
859 static const struct cl_io_operations lov_empty_io_ops = {
860         .op = {
861                 [CIT_READ] = {
862 #if 0
863                         .cio_fini       = lov_empty_io_fini,
864                         .cio_iter_init  = LOV_EMPTY_IMPOSSIBLE,
865                         .cio_lock       = LOV_EMPTY_IMPOSSIBLE,
866                         .cio_start      = LOV_EMPTY_IMPOSSIBLE,
867                         .cio_end        = LOV_EMPTY_IMPOSSIBLE
868 #endif
869                 },
870                 [CIT_WRITE] = {
871                         .cio_fini      = lov_empty_io_fini,
872                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
873                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
874                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
875                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
876                 },
877                 [CIT_SETATTR] = {
878                         .cio_fini      = lov_empty_io_fini,
879                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
880                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
881                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
882                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
883                 },
884                 [CIT_FAULT] = {
885                         .cio_fini      = lov_empty_io_fini,
886                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
887                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
888                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
889                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
890                 },
891                 [CIT_FSYNC] = {
892                         .cio_fini   = lov_empty_io_fini
893                 },
894                 [CIT_MISC] = {
895                         .cio_fini   = lov_empty_io_fini
896                 }
897         },
898         .req_op = {
899                  [CRT_READ] = {
900                          .cio_submit    = LOV_EMPTY_IMPOSSIBLE
901                  },
902                  [CRT_WRITE] = {
903                          .cio_submit    = LOV_EMPTY_IMPOSSIBLE
904                  }
905          },
906         .cio_commit_write = LOV_EMPTY_IMPOSSIBLE
907 };
908
909 int lov_io_init_raid0(const struct lu_env *env, struct cl_object *obj,
910                       struct cl_io *io)
911 {
912         struct lov_io       *lio = lov_env_io(env);
913         struct lov_object   *lov = cl2lov(obj);
914
915         ENTRY;
916         CFS_INIT_LIST_HEAD(&lio->lis_active);
917         lov_io_slice_init(lio, lov, io);
918         if (io->ci_result == 0) {
919                 io->ci_result = lov_io_subio_init(env, lio, io);
920                 if (io->ci_result == 0)
921                         cl_io_slice_add(io, &lio->lis_cl, obj, &lov_io_ops);
922         }
923         RETURN(io->ci_result);
924 }
925
926 int lov_io_init_empty(const struct lu_env *env, struct cl_object *obj,
927                       struct cl_io *io)
928 {
929         struct lov_io *lio = lov_env_io(env);
930         int result;
931         ENTRY;
932
933         lio->lis_lsm = NULL;
934         switch (io->ci_type) {
935         default:
936                 LBUG();
937         case CIT_FSYNC:
938         case CIT_MISC:
939         case CIT_READ:
940                 result = 0;
941                 break;
942         case CIT_WRITE:
943         case CIT_SETATTR:
944                 result = -EBADF;
945                 break;
946         case CIT_FAULT:
947                 result = -EFAULT;
948                 CERROR("Page fault on a file without stripes: "DFID"\n",
949                        PFID(lu_object_fid(&obj->co_lu)));
950                 break;
951         }
952         if (result == 0)
953                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_empty_io_ops);
954         io->ci_result = result;
955         RETURN(result != 0);
956 }
957
958 /** @} lov */