Whamcloud - gitweb
Revert "b=19427 correct lmm_object_id and reserve fids for fid-on-OST."
[fs/lustre-release.git] / lustre / liblustre / llite_cl.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *   Copyright (c) 2007 Cluster File Systems, Inc.
5  *   Author: Nikita Danilov <nikita@clusterfs.com>
6  *
7  *   This file is part of Lustre, http://www.lustre.org.
8  *
9  *   Lustre is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Lustre is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Lustre; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 #define DEBUG_SUBSYSTEM S_LLITE
24
25 #include <stdlib.h>
26 #include <string.h>
27 #include <assert.h>
28 #include <time.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <fcntl.h>
32 #include <sys/queue.h>
33 #ifndef __CYGWIN__
34 # include <sys/statvfs.h>
35 #else
36 # include <sys/statfs.h>
37 #endif
38
39 #include <sysio.h>
40 #ifdef HAVE_XTIO_H
41 #include <xtio.h>
42 #endif
43 #include <fs.h>
44 #include <mount.h>
45 #include <inode.h>
46 #ifdef HAVE_FILE_H
47 #include <file.h>
48 #endif
49 #include <liblustre.h>
50
51 #include <obd.h>
52 #include <obd_support.h>
53 #include <lustre_fid.h>
54 #include <lustre_lite.h>
55 #include <lustre_dlm.h>
56 #include <lustre_ver.h>
57 #include <lustre_mdc.h>
58 #include <cl_object.h>
59
60 #include "llite_lib.h"
61
62 /*
63  * slp_ prefix stands for "Sysio Library Posix". It corresponds to historical
64  * "llu_" prefix.
65  */
66
67 static int   slp_type_init     (struct lu_device_type *t);
68 static void  slp_type_fini     (struct lu_device_type *t);
69
70 static struct cl_page * slp_page_init(const struct lu_env *env,
71                                      struct cl_object *obj,
72                                      struct cl_page *page, cfs_page_t *vmpage);
73 static int   slp_attr_get     (const struct lu_env *env, struct cl_object *obj,
74                                struct cl_attr *attr);
75
76 static struct lu_device  *slp_device_alloc(const struct lu_env *env,
77                                            struct lu_device_type *t,
78                                            struct lustre_cfg *cfg);
79
80 static int slp_io_init(const struct lu_env *env, struct cl_object *obj,
81                        struct cl_io *io);
82 static struct slp_io *cl2slp_io(const struct lu_env *env,
83                                 const struct cl_io_slice *slice);
84
85
86 static void llu_free_user_page(struct page *page);
87
88 static const struct lu_object_operations      slp_lu_obj_ops;
89 static const struct lu_device_operations      slp_lu_ops;
90 static const struct cl_device_operations      slp_cl_ops;
91 static const struct cl_io_operations          ccc_io_ops;
92 static const struct lu_device_type_operations slp_device_type_ops;
93              //struct lu_device_type            slp_device_type;
94 static const struct cl_page_operations        slp_page_ops;
95 static const struct cl_page_operations        slp_transient_page_ops;
96 static const struct cl_lock_operations        slp_lock_ops;
97
98
99 /*****************************************************************************
100  *
101  * Slp device and device type functions.
102  *
103  */
104
105 void *slp_session_key_init(const struct lu_context *ctx,
106                                   struct lu_context_key *key)
107 {
108         struct slp_session *session;
109
110         OBD_ALLOC_PTR(session);
111         if (session == NULL)
112                 session = ERR_PTR(-ENOMEM);
113         return session;
114 }
115
116 void slp_session_key_fini(const struct lu_context *ctx,
117                                  struct lu_context_key *key, void *data)
118 {
119         struct slp_session *session = data;
120         OBD_FREE_PTR(session);
121 }
122
123 struct lu_context_key slp_session_key = {
124         .lct_tags = LCT_SESSION,
125         .lct_init = slp_session_key_init,
126         .lct_fini = slp_session_key_fini
127 };
128
129 /* type constructor/destructor: slp_type_{init,fini,start,stop}(). */
130 LU_TYPE_INIT_FINI(slp, &ccc_key, &ccc_session_key, &slp_session_key);
131
132 static struct lu_device *slp_device_alloc(const struct lu_env *env,
133                                           struct lu_device_type *t,
134                                           struct lustre_cfg *cfg)
135 {
136         return ccc_device_alloc(env, t, cfg, &slp_lu_ops, &slp_cl_ops);
137 }
138
139 static int slp_lock_init(const struct lu_env *env,
140                          struct cl_object *obj, struct cl_lock *lock,
141                          const struct cl_io *io)
142 {
143         return ccc_lock_init(env, obj, lock, io, &slp_lock_ops);
144 }
145
146 static const struct cl_object_operations slp_ops = {
147         .coo_page_init = slp_page_init,
148         .coo_lock_init = slp_lock_init,
149         .coo_io_init   = slp_io_init,
150         .coo_attr_get  = slp_attr_get,
151         .coo_attr_set  = ccc_attr_set,
152         .coo_conf_set  = ccc_conf_set,
153         .coo_glimpse   = ccc_object_glimpse
154 };
155
156 static int slp_object_print(const struct lu_env *env, void *cookie,
157                             lu_printer_t p, const struct lu_object *o)
158 {
159         struct ccc_object *obj   = lu2ccc(o);
160         struct inode      *inode = obj->cob_inode;
161         struct intnl_stat *st = NULL;
162
163         if (inode)
164                 st = llu_i2stat(inode);
165
166         return (*p)(env, cookie, LUSTRE_SLP_NAME"-object@%p(%p:%lu/%u)",
167                     obj, inode,
168                     st ? (unsigned long)st->st_ino : 0UL,
169                     inode ? (unsigned int)llu_i2info(inode)->lli_st_generation
170                     : 0);
171 }
172
173 static const struct lu_object_operations slp_lu_obj_ops = {
174         .loo_object_init      = ccc_object_init,
175         .loo_object_start     = NULL,
176         .loo_object_delete    = NULL,
177         .loo_object_release   = NULL,
178         .loo_object_free      = ccc_object_free,
179         .loo_object_print     = slp_object_print,
180         .loo_object_invariant = NULL
181 };
182
183 static struct lu_object *slp_object_alloc(const struct lu_env *env,
184                                           const struct lu_object_header *hdr,
185                                           struct lu_device *dev)
186 {
187         return ccc_object_alloc(env, hdr, dev, &slp_ops, &slp_lu_obj_ops);
188 }
189
190 static const struct lu_device_operations slp_lu_ops = {
191         .ldo_object_alloc      = slp_object_alloc
192 };
193
194 static const struct cl_device_operations slp_cl_ops = {
195         .cdo_req_init = ccc_req_init
196 };
197
198 static const struct lu_device_type_operations slp_device_type_ops = {
199         .ldto_init = slp_type_init,
200         .ldto_fini = slp_type_fini,
201
202         .ldto_start = slp_type_start,
203         .ldto_stop  = slp_type_stop,
204
205         .ldto_device_alloc = slp_device_alloc,
206         .ldto_device_free  = ccc_device_free,
207         .ldto_device_init  = ccc_device_init,
208         .ldto_device_fini  = ccc_device_fini
209 };
210
211 struct lu_device_type slp_device_type = {
212         .ldt_tags     = LU_DEVICE_CL,
213         .ldt_name     = LUSTRE_SLP_NAME,
214         .ldt_ops      = &slp_device_type_ops,
215         .ldt_ctx_tags = LCT_CL_THREAD
216 };
217
218 int slp_global_init(void)
219 {
220         int result;
221
222         result = ccc_global_init(&slp_device_type);
223         return result;
224 }
225
226 void slp_global_fini(void)
227 {
228         ccc_global_fini(&slp_device_type);
229 }
230
231 /*****************************************************************************
232  *
233  * Object operations.
234  *
235  */
236
237 static struct cl_page *slp_page_init(const struct lu_env *env,
238                                      struct cl_object *obj,
239                                      struct cl_page *page, cfs_page_t *vmpage)
240 {
241         struct ccc_page *cpg;
242         int result;
243
244         CLOBINVRNT(env, obj, ccc_object_invariant(obj));
245
246         OBD_ALLOC_PTR(cpg);
247         if (cpg != NULL) {
248                 cpg->cpg_page = vmpage;
249
250                 if (page->cp_type == CPT_CACHEABLE) {
251                         LBUG();
252                 } else {
253                         struct ccc_object *clobj = cl2ccc(obj);
254
255                         cl_page_slice_add(page, &cpg->cpg_cl, obj,
256                                           &slp_transient_page_ops);
257                         clobj->cob_transient_pages++;
258                 }
259                 result = 0;
260         } else
261                 result = -ENOMEM;
262         return ERR_PTR(result);
263 }
264
265 static int slp_io_init(const struct lu_env *env, struct cl_object *obj,
266                        struct cl_io *io)
267 {
268         struct ccc_io      *vio   = ccc_env_io(env);
269         int result = 0;
270
271         CLOBINVRNT(env, obj, ccc_object_invariant(obj));
272
273         cl_io_slice_add(io, &vio->cui_cl, obj, &ccc_io_ops);
274         if (io->ci_type == CIT_READ || io->ci_type == CIT_WRITE) {
275                 size_t count;
276
277                 count = io->u.ci_rw.crw_count;
278                 /* "If nbyte is 0, read() will return 0 and have no other
279                  *  results."  -- Single Unix Spec */
280                 if (count == 0)
281                         result = 1;
282                 else {
283                         vio->cui_tot_count = count;
284                         vio->cui_tot_nrsegs = 0;
285                 }
286
287         }
288         return result;
289 }
290
291 static int slp_attr_get(const struct lu_env *env, struct cl_object *obj,
292                         struct cl_attr *attr)
293 {
294         struct inode *inode = ccc_object_inode(obj);
295         struct intnl_stat *st = llu_i2stat(inode);
296
297         attr->cat_size = st->st_size;
298         attr->cat_blocks = st->st_blocks;
299         attr->cat_mtime  = st->st_mtime;
300         attr->cat_atime  = st->st_atime;
301         attr->cat_ctime  = st->st_ctime;
302         /* KMS is not known by this layer */
303         return 0; /* layers below have to fill in the rest */
304 }
305
306 /*****************************************************************************
307  *
308  * Page operations.
309  *
310  */
311
312 static void slp_page_fini_common(struct ccc_page *cp)
313 {
314         cfs_page_t *vmpage = cp->cpg_page;
315
316         LASSERT(vmpage != NULL);
317         llu_free_user_page(vmpage);
318         OBD_FREE_PTR(cp);
319 }
320
321 static void slp_page_completion_common(const struct lu_env *env,
322                                        struct ccc_page *cp, int ioret)
323 {
324         LASSERT(cp->cpg_cl.cpl_page->cp_sync_io != NULL);
325 }
326
327 static void slp_page_completion_read(const struct lu_env *env,
328                                      const struct cl_page_slice *slice,
329                                      int ioret)
330 {
331         struct ccc_page *cp      = cl2ccc_page(slice);
332         ENTRY;
333
334         slp_page_completion_common(env, cp, ioret);
335
336         EXIT;
337 }
338
339 static void slp_page_completion_write_common(const struct lu_env *env,
340                                              const struct cl_page_slice *slice,
341                                              int ioret)
342 {
343         struct ccc_page *cp     = cl2ccc_page(slice);
344
345         if (ioret == 0) {
346                 cp->cpg_write_queued = 0;
347                 /*
348                  * Only ioret == 0, write succeed, then this page could be
349                  * deleted from the pending_writing count.
350                  */
351         }
352         slp_page_completion_common(env, cp, ioret);
353 }
354
355 static int slp_page_is_vmlocked(const struct lu_env *env,
356                                 const struct cl_page_slice *slice)
357 {
358         return -EBUSY;
359 }
360
361 static void slp_transient_page_fini(const struct lu_env *env,
362                                     struct cl_page_slice *slice)
363 {
364         struct ccc_page *cp = cl2ccc_page(slice);
365         struct cl_page *clp = slice->cpl_page;
366         struct ccc_object *clobj = cl2ccc(clp->cp_obj);
367
368         slp_page_fini_common(cp);
369         clobj->cob_transient_pages--;
370 }
371
372
373 static const struct cl_page_operations slp_transient_page_ops = {
374         .cpo_own           = ccc_transient_page_own,
375         .cpo_assume        = ccc_transient_page_assume,
376         .cpo_unassume      = ccc_transient_page_unassume,
377         .cpo_disown        = ccc_transient_page_disown,
378         .cpo_discard       = ccc_transient_page_discard,
379         .cpo_vmpage        = ccc_page_vmpage,
380         .cpo_is_vmlocked   = slp_page_is_vmlocked,
381         .cpo_fini          = slp_transient_page_fini,
382         .cpo_is_under_lock = ccc_page_is_under_lock,
383         .io = {
384                 [CRT_READ] = {
385                         .cpo_completion  = slp_page_completion_read,
386                 },
387                 [CRT_WRITE] = {
388                         .cpo_completion  = slp_page_completion_write_common,
389                 }
390         }
391 };
392
393 /*****************************************************************************
394  *
395  * Lock operations.
396  *
397  */
398
399 static int slp_lock_enqueue(const struct lu_env *env,
400                            const struct cl_lock_slice *slice,
401                            struct cl_io *unused, __u32 enqflags)
402 {
403         CLOBINVRNT(env, slice->cls_obj, ccc_object_invariant(slice->cls_obj));
404
405         liblustre_wait_event(0);
406         return 0;
407 }
408
409 static const struct cl_lock_operations slp_lock_ops = {
410         .clo_delete    = ccc_lock_delete,
411         .clo_fini      = ccc_lock_fini,
412         .clo_enqueue   = slp_lock_enqueue,
413         .clo_wait      = ccc_lock_wait,
414         .clo_unuse     = ccc_lock_unuse,
415         .clo_fits_into = ccc_lock_fits_into,
416 };
417
418 /*****************************************************************************
419  *
420  * io operations.
421  *
422  */
423
424 static int slp_io_rw_lock(const struct lu_env *env,
425                           const struct cl_io_slice *ios)
426 {
427         struct ccc_io *cio = ccc_env_io(env);
428         struct cl_io *io   = ios->cis_io;
429         loff_t start;
430         loff_t end;
431
432         if (cl_io_is_append(io)) {
433                 start = 0;
434                 end   = OBD_OBJECT_EOF;
435         } else {
436                 start = io->u.ci_wr.wr.crw_pos;
437                 end   = start + io->u.ci_wr.wr.crw_count - 1;
438         }
439
440         ccc_io_update_iov(env, cio, io);
441
442         /*
443          * This acquires real DLM lock only in O_APPEND case, because of
444          * the io->ci_lockreq setting in llu_io_init().
445          */
446         LASSERT(ergo(cl_io_is_append(io), io->ci_lockreq == CILR_MANDATORY));
447         LASSERT(ergo(!cl_io_is_append(io), io->ci_lockreq == CILR_NEVER));
448         return ccc_io_one_lock(env, io, 0,
449                                io->ci_type == CIT_READ ? CLM_READ : CLM_WRITE,
450                                start, end);
451
452 }
453
454 static int slp_io_setattr_iter_init(const struct lu_env *env,
455                                     const struct cl_io_slice *ios)
456 {
457         return 0;
458 }
459
460 static int slp_io_setattr_start(const struct lu_env *env,
461                                 const struct cl_io_slice *ios)
462 {
463         return 0;
464 }
465
466 static struct page *llu_get_user_page(int index, void *addr, int offset,
467                                       int count)
468 {
469         struct page *page;
470
471         OBD_ALLOC_PTR(page);
472         if (!page)
473                 return NULL;
474         page->index = index;
475         page->addr = addr;
476         page->_offset = offset;
477         page->_count = count;
478
479         CFS_INIT_LIST_HEAD(&page->list);
480         CFS_INIT_LIST_HEAD(&page->_node);
481
482         return page;
483 }
484
485 static void llu_free_user_page(struct page *page)
486 {
487         OBD_FREE_PTR(page);
488 }
489
490
491 static int llu_queue_pio(const struct lu_env *env, struct cl_io *io,
492                          struct llu_io_group *group,
493                          char *buf, size_t count, loff_t pos)
494 {
495         struct cl_object *obj = io->ci_obj;
496         struct inode *inode = ccc_object_inode(obj);
497         struct intnl_stat *st = llu_i2stat(inode);
498         struct obd_export *exp = llu_i2obdexp(inode);
499         struct page *page;
500         int  rc = 0, ret_bytes = 0;
501         int local_lock;
502         struct cl_page *clp;
503         struct cl_2queue *queue;
504         ENTRY;
505
506         if (!exp)
507                 RETURN(-EINVAL);
508
509         local_lock = group->lig_params->lrp_lock_mode != LCK_NL;
510
511         queue = &io->ci_queue;
512         cl_2queue_init(queue);
513
514
515         /* prepare the pages array */
516         do {
517                 unsigned long index, offset, bytes;
518
519                 offset = (pos & ~CFS_PAGE_MASK);
520                 index = pos >> CFS_PAGE_SHIFT;
521                 bytes = CFS_PAGE_SIZE - offset;
522                 if (bytes > count)
523                         bytes = count;
524
525                 /* prevent read beyond file range */
526                 if (/* local_lock && */
527                     io->ci_type == CIT_READ && pos + bytes >= st->st_size) {
528                         if (pos >= st->st_size)
529                                 break;
530                         bytes = st->st_size - pos;
531                 }
532
533                 /* prepare page for this index */
534                 page = llu_get_user_page(index, buf - offset, offset, bytes);
535                 if (!page) {
536                         rc = -ENOMEM;
537                         break;
538                 }
539
540                 clp = cl_page_find(env, obj,
541                                    cl_index(obj, pos),
542                                    page, CPT_TRANSIENT);
543
544                 if (IS_ERR(clp)) {
545                         rc = PTR_ERR(clp);
546                         break;
547                 }
548
549                 rc = cl_page_own(env, io, clp);
550                 if (rc) {
551                         LASSERT(clp->cp_state == CPS_FREEING);
552                         cl_page_put(env, clp);
553                         break;
554                 }
555
556                 cl_2queue_add(queue, clp);
557
558                 /* drop the reference count for cl_page_find, so that the page
559                  * will be freed in cl_2queue_fini. */
560                 cl_page_put(env, clp);
561
562                 cl_page_clip(env, clp, offset, offset+bytes);
563
564                 count -= bytes;
565                 pos += bytes;
566                 buf += bytes;
567
568                 group->lig_rwcount += bytes;
569                 ret_bytes += bytes;
570                 page++;
571         } while (count);
572
573         if (rc == 0) {
574                 enum cl_req_type iot;
575                 iot = io->ci_type == CIT_READ ? CRT_READ : CRT_WRITE;
576                 rc = cl_io_submit_sync(env, io, iot, queue, CRP_NORMAL, 0);
577         }
578
579         group->lig_rc = rc;
580
581         cl_2queue_discard(env, io, queue);
582         cl_2queue_disown(env, io, queue);
583         cl_2queue_fini(env, queue);
584
585         RETURN(ret_bytes);
586 }
587
588 static
589 struct llu_io_group * get_io_group(struct inode *inode, int maxpages,
590                                    struct lustre_rw_params *params)
591 {
592         struct llu_io_group *group;
593
594         OBD_ALLOC_PTR(group);
595         if (!group)
596                 return ERR_PTR(-ENOMEM);
597
598         group->lig_params = params;
599
600         return group;
601 }
602
603 static int max_io_pages(ssize_t len, int iovlen)
604 {
605         return (((len + CFS_PAGE_SIZE -1) / CFS_PAGE_SIZE) + 2 + iovlen - 1);
606 }
607
608 void put_io_group(struct llu_io_group *group)
609 {
610         OBD_FREE_PTR(group);
611 }
612
613 /**
614  * True, if \a io is a normal io, False for sendfile() / splice_{read|write}
615  */
616 int cl_is_normalio(const struct lu_env *env, const struct cl_io *io)
617 {
618         return 1;
619 }
620
621 static int slp_io_start(const struct lu_env *env, const struct cl_io_slice *ios)
622 {
623         struct ccc_io     *cio   = cl2ccc_io(env, ios);
624         struct cl_io      *io    = ios->cis_io;
625         struct cl_object  *obj   = io->ci_obj;
626         struct inode      *inode = ccc_object_inode(obj);
627         int    err, ret;
628         loff_t pos;
629         long   cnt;
630         struct llu_io_group *iogroup;
631         struct lustre_rw_params p = {0};
632         int iovidx;
633         struct intnl_stat *st = llu_i2stat(inode);
634         struct llu_inode_info *lli = llu_i2info(inode);
635         struct llu_io_session *session = cl2slp_io(env, ios)->sio_session;
636         int write = io->ci_type == CIT_WRITE;
637         int exceed = 0;
638
639         CLOBINVRNT(env, obj, ccc_object_invariant(obj));
640
641         if (write) {
642                 pos = io->u.ci_wr.wr.crw_pos;
643                 cnt = io->u.ci_wr.wr.crw_count;
644         } else {
645                 pos = io->u.ci_rd.rd.crw_pos;
646                 cnt = io->u.ci_rd.rd.crw_count;
647         }
648         if (io->u.ci_wr.wr_append) {
649                 p.lrp_lock_mode = LCK_PW;
650         } else {
651                 p.lrp_brw_flags = OBD_BRW_SRVLOCK;
652                 p.lrp_lock_mode = LCK_NL;
653         }
654
655         iogroup = get_io_group(inode, max_io_pages(cnt, cio->cui_nrsegs), &p);
656         if (IS_ERR(iogroup))
657                 RETURN(PTR_ERR(iogroup));
658
659         err = ccc_prep_size(env, obj, io, pos, cnt, 0, &exceed);
660         if (err != 0 || (write == 0 && exceed != 0))
661                 GOTO(out, err);
662
663         CDEBUG(D_INODE,
664                "%s ino %lu, %lu bytes, offset "LPU64", i_size "LPU64"\n",
665                write ? "Write" : "Read", (unsigned long)st->st_ino,
666                cnt, (__u64)pos, (__u64)st->st_size);
667
668         if (write && io->u.ci_wr.wr_append)
669                 pos = io->u.ci_wr.wr.crw_pos = st->st_size; /* XXX? Do we need to change io content too here? */
670                 /* XXX What about if one write syscall writes at 2 different offsets? */
671
672         for (iovidx = 0; iovidx < cio->cui_nrsegs; iovidx++) {
673                 char *buf = (char *) cio->cui_iov[iovidx].iov_base;
674                 long count = cio->cui_iov[iovidx].iov_len;
675
676                 if (!count)
677                         continue;
678                 if (cnt < count)
679                         count = cnt;
680                 if (IS_BAD_PTR(buf) || IS_BAD_PTR(buf + count)) {
681                         GOTO(out, err = -EFAULT);
682                 }
683
684                 if (io->ci_type == CIT_READ) {
685                         if (/* local_lock && */ pos >= st->st_size)
686                                 break;
687                 } else if (io->ci_type == CIT_WRITE) {
688                         if (pos >= lli->lli_maxbytes) {
689                                 GOTO(out, err = -EFBIG);
690                         }
691                         if (pos + count >= lli->lli_maxbytes)
692                                 count = lli->lli_maxbytes - pos;
693                 } else {
694                         LBUG();
695                 }
696
697                 ret = llu_queue_pio(env, io, iogroup, buf, count, pos);
698                 if (ret < 0) {
699                         GOTO(out, err = ret);
700                 } else {
701                         io->ci_nob += ret;
702                         pos += ret;
703                         cnt -= ret;
704                         if (io->ci_type == CIT_WRITE) {
705 //                                obd_adjust_kms(exp, lsm, pos, 0); // XXX
706                                 if (pos > st->st_size)
707                                         st->st_size = pos;
708                         }
709                         if (!cnt)
710                                 break;
711                 }
712         }
713         LASSERT(cnt == 0 || io->ci_type == CIT_READ); /* libsysio should guarantee this */
714
715         if (!iogroup->lig_rc)
716                 session->lis_rwcount += iogroup->lig_rwcount;
717         else if (!session->lis_rc)
718                 session->lis_rc = iogroup->lig_rc;
719         err = 0;
720
721 out:
722         put_io_group(iogroup);
723         return err;
724 }
725
726 static const struct cl_io_operations ccc_io_ops = {
727         .op = {
728                 [CIT_READ] = {
729                         .cio_fini      = ccc_io_fini,
730                         .cio_lock      = slp_io_rw_lock,
731                         .cio_start     = slp_io_start,
732                         .cio_end       = ccc_io_end,
733                         .cio_advance   = ccc_io_advance
734                 },
735                 [CIT_WRITE] = {
736                         .cio_fini      = ccc_io_fini,
737                         .cio_lock      = slp_io_rw_lock,
738                         .cio_start     = slp_io_start,
739                         .cio_end       = ccc_io_end,
740                         .cio_advance   = ccc_io_advance
741                 },
742                 [CIT_SETATTR] = {
743                         .cio_fini       = ccc_io_fini,
744                         .cio_iter_init  = slp_io_setattr_iter_init,
745                         .cio_start      = slp_io_setattr_start
746                 },
747                 [CIT_MISC] = {
748                         .cio_fini   = ccc_io_fini
749                 }
750         }
751 };
752
753 static struct slp_io *cl2slp_io(const struct lu_env *env,
754                                 const struct cl_io_slice *slice)
755 {
756         /* We call it just for assertion here */
757         cl2ccc_io(env, slice);
758
759         return slp_env_io(env);
760 }
761
762 /*****************************************************************************
763  *
764  * Temporary prototype thing: mirror obd-devices into cl devices.
765  *
766  */
767
768 int cl_sb_init(struct llu_sb_info *sbi)
769 {
770         struct cl_device  *cl;
771         struct lu_env     *env;
772         int rc = 0;
773         int refcheck;
774
775         env = cl_env_get(&refcheck);
776         if (IS_ERR(env))
777                 RETURN(PTR_ERR(env));
778
779         cl = cl_type_setup(env, NULL, &slp_device_type,
780                            sbi->ll_dt_exp->exp_obd->obd_lu_dev);
781         if (IS_ERR(cl))
782                 GOTO(out, rc = PTR_ERR(cl));
783
784         sbi->ll_cl = cl;
785         sbi->ll_site = cl2lu_dev(cl)->ld_site;
786 out:
787         cl_env_put(env, &refcheck);
788         RETURN(rc);
789 }
790
791 int cl_sb_fini(struct llu_sb_info *sbi)
792 {
793         struct lu_env *env;
794         int refcheck;
795
796         ENTRY;
797
798         env = cl_env_get(&refcheck);
799         if (IS_ERR(env))
800                 RETURN(PTR_ERR(env));
801
802         if (sbi->ll_cl != NULL) {
803                 cl_stack_fini(env, sbi->ll_cl);
804                 sbi->ll_cl = NULL;
805                 sbi->ll_site = NULL;
806         }
807         cl_env_put(env, &refcheck);
808         /*
809          * If mount failed (sbi->ll_cl == NULL), and this there are no other
810          * mounts, stop device types manually (this usually happens
811          * automatically when last device is destroyed).
812          */
813         lu_types_stop();
814         cl_env_cache_purge(~0);
815         RETURN(0);
816 }