Whamcloud - gitweb
90f53fbee19229acffef0850fdbb242b23429e74
[fs/lustre-release.git] / lustre / lov / lov_cl_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36 /*
37  * This file is part of Lustre, http://www.lustre.org/
38  * Lustre is a trademark of Sun Microsystems, Inc.
39  *
40  * Internal interfaces of LOV layer.
41  *
42  *   Author: Nikita Danilov <nikita.danilov@sun.com>
43  */
44
45 #ifndef LOV_CL_INTERNAL_H
46 #define LOV_CL_INTERNAL_H
47
48 #ifdef __KERNEL__
49 # include <libcfs/libcfs.h>
50 #else
51 # include <liblustre.h>
52 #endif
53
54 #include <obd.h>
55 #include <cl_object.h>
56 #include "lov_internal.h"
57
58 /** \addtogroup lov lov @{ */
59
60 /** \defgroup lov lov
61  * Logical object volume layer. This layer implements data striping (raid0).
62  *
63  * At the lov layer top-entity (object, page, lock, io) is connected to one or
64  * more sub-entities: top-object, representing a file is connected to a set of
65  * sub-objects, each representing a stripe, file-level top-lock is connected
66  * to a set of per-stripe sub-locks, top-page is connected to a (single)
67  * sub-page, and a top-level IO is connected to a set of (potentially
68  * concurrent) sub-IO's.
69  *
70  * Sub-object, sub-page, and sub-io have well-defined top-object and top-page
71  * respectively, while a single sub-lock can be part of multiple top-locks.
72  *
73  * Reference counting models are different for different types of entities:
74  *
75  *     - top-object keeps a reference to its sub-objects, and destroys them
76  *       when it is destroyed.
77  *
78  *     - top-page keeps a reference to its sub-page, and destroys it when it
79  *       is destroyed.
80  *
81  *     - sub-lock keep a reference to its top-locks. Top-lock keeps a
82  *       reference (and a hold, see cl_lock_hold()) on its sub-locks when it
83  *       actively using them (that is, in cl_lock_state::CLS_QUEUING,
84  *       cl_lock_state::CLS_ENQUEUED, cl_lock_state::CLS_HELD states). When
85  *       moving into cl_lock_state::CLS_CACHED state, top-lock releases a
86  *       hold. From this moment top-lock has only a 'weak' reference to its
87  *       sub-locks. This reference is protected by top-lock
88  *       cl_lock::cll_guard, and will be automatically cleared by the sub-lock
89  *       when the latter is destroyed. When a sub-lock is canceled, a
90  *       reference to it is removed from the top-lock array, and top-lock is
91  *       moved into CLS_NEW state. It is guaranteed that all sub-locks exits
92  *       while their top-lock is in CLS_HELD or CLS_CACHED states.
93  *
94  *     - IO's are not reference counted.
95  *
96  * To implement a connection between top and sub entities, lov layer is split
97  * into two pieces: lov ("upper half"), and lovsub ("bottom half"), both
98  * implementing full set of cl-interfaces. For example, top-object has clu and
99  * lov layers, and it's sub-object has lovsub and osc layers. lovsub layer is
100  * used to track child-parent relationship.
101  *
102  * @{
103  */
104
105 struct lovsub_device;
106 struct lovsub_object;
107 struct lovsub_lock;
108
109 enum lov_device_flags {
110         LOV_DEV_INITIALIZED = 1 << 0
111 };
112
113 /*
114  * Upper half.
115  */
116
117 /**
118  * Resources that are used in memory-cleaning path, and whose allocation
119  * cannot fail even when memory is tight. They are preallocated in sufficient
120  * quantities in lov_device::ld_emerg[], and access to them is serialized
121  * lov_device::ld_mutex.
122  */
123 struct lov_device_emerg {
124         /**
125          * Page list used to submit IO when memory is in pressure.
126          */
127         struct cl_page_list emrg_page_list;
128         /**
129          * sub-io's shared by all threads accessing this device when memory is
130          * too low to allocate sub-io's dynamically.
131          */
132         struct cl_io        emrg_subio;
133         /**
134          * Environments used by sub-io's in
135          * lov_device_emerg::emrg_subio.
136          */
137         struct lu_env      *emrg_env;
138         /**
139          * Refchecks for lov_device_emerg::emrg_env.
140          *
141          * \see cl_env_get()
142          */
143         int                 emrg_refcheck;
144 };
145
146 struct lov_device {
147         /*
148          * XXX Locking of lov-private data is missing.
149          */
150         struct cl_device          ld_cl;
151         struct lov_obd           *ld_lov;
152         /** size of lov_device::ld_target[] array */
153         __u32                     ld_target_nr;
154         struct lovsub_device    **ld_target;
155         __u32                     ld_flags;
156
157         /** Emergency resources used in memory-cleansing paths. */
158         struct lov_device_emerg **ld_emrg;
159         /**
160          * Serializes access to lov_device::ld_emrg in low-memory
161          * conditions.
162          */
163         struct mutex              ld_mutex;
164 };
165
166 /**
167  * Layout type.
168  */
169 enum lov_layout_type {
170         /** empty file without body */
171         LLT_EMPTY,
172         /** striped file */
173         LLT_RAID0,
174         /** join file */
175         LLT_JOIN,
176         LLT_NR
177 };
178
179 /**
180  * lov-specific file state.
181  *
182  * lov object has particular layout type, determining how top-object is built
183  * on top of sub-objects. Layout type can change dynamically. When this
184  * happens, lov_object::lo_type_guard semaphore is taken in exclusive mode,
185  * all state pertaining to the old layout type is destroyed, and new state is
186  * constructed. All object methods take said semaphore in the shared mode,
187  * providing serialization against transition between layout types.
188  *
189  * To avoid multiple `if' or `switch' statements, selecting behavior for the
190  * current layout type, object methods perform double-dispatch, invoking
191  * function corresponding to the current layout type.
192  */
193 struct lov_object {
194         struct cl_object       lo_cl;
195         /**
196          * Serializes object operations with transitions between layout types.
197          *
198          * This semaphore is taken in shared mode by all object methods, and
199          * is taken in exclusive mode when object type is changed.
200          *
201          * \see lov_object::lo_type
202          */
203         struct rw_semaphore    lo_type_guard;
204         /**
205          * Type of an object. Protected by lov_object::lo_type_guard.
206          */
207         enum lov_layout_type   lo_type;
208
209         union lov_layout_state {
210                 struct lov_layout_raid0 {
211                         unsigned               lo_nr;
212                         struct lov_stripe_md  *lo_lsm;
213                         /**
214                          * Array of sub-objects. Allocated when top-object is
215                          * created (lov_init_raid0()).
216                          *
217                          * Top-object is a strict master of its sub-objects:
218                          * it is created before them, and outlives its
219                          * children (this later is necessary so that basic
220                          * functions like cl_object_top() always
221                          * work). Top-object keeps a reference on every
222                          * sub-object.
223                          *
224                          * When top-object is destroyed (lov_delete_raid0())
225                          * it releases its reference to a sub-object and waits
226                          * until the latter is finally destroyed.
227                          */
228                         struct lovsub_object **lo_sub;
229                         /**
230                          * When this is true, lov_object::lo_attr contains
231                          * valid up to date attributes for a top-level
232                          * object. This field is reset to 0 when attributes of
233                          * any sub-object change.
234                          */
235                         int                    lo_attr_valid;
236                         /**
237                          * Cached object attribute, built from sub-object
238                          * attributes.
239                          */
240                         struct cl_attr         lo_attr;
241                 } raid0;
242                 struct lov_layout_state_empty {
243                 } empty;
244                 struct lov_layout_state_join {
245                 } join;
246         } u;
247         /**
248          * Thread that acquired lov_object::lo_type_guard in an exclusive
249          * mode.
250          */
251         cfs_task_t            *lo_owner;
252 };
253
254 /**
255  * Flags that top-lock can set on each of its sub-locks.
256  */
257 enum lov_sub_flags {
258         /** Top-lock acquired a hold (cl_lock_hold()) on a sub-lock. */
259         LSF_HELD = 1 << 0
260 };
261
262 /**
263  * State lov_lock keeps for each sub-lock.
264  */
265 struct lov_lock_sub {
266         /** sub-lock itself */
267         struct lovsub_lock  *sub_lock;
268         /** An array of per-sub-lock flags, taken from enum lov_sub_flags */
269         unsigned             sub_flags;
270         int                  sub_stripe;
271         struct cl_lock_descr sub_descr;
272         struct cl_lock_descr sub_got;
273 };
274
275 /**
276  * lov-specific lock state.
277  */
278 struct lov_lock {
279         struct cl_lock_slice   lls_cl;
280         /** Number of sub-locks in this lock */
281         int                    lls_nr;
282         /**
283          * Number of existing sub-locks.
284          */
285         unsigned               lls_nr_filled;
286         /**
287          * Set when sub-lock was canceled, while top-lock was being
288          * unlocked.
289          */
290         int                    lls_unuse_race;
291         /**
292          * An array of sub-locks
293          *
294          * There are two issues with managing sub-locks:
295          *
296          *     - sub-locks are concurrently canceled, and
297          *
298          *     - sub-locks are shared with other top-locks.
299          *
300          * To manage cancellation, top-lock acquires a hold on a sublock
301          * (lov_sublock_adopt()) when the latter is inserted into
302          * lov_lock::lls_sub[]. This hold is released (lov_sublock_release())
303          * when top-lock is going into CLS_CACHED state or destroyed. Hold
304          * prevents sub-lock from cancellation.
305          *
306          * Sub-lock sharing means, among other things, that top-lock that is
307          * in the process of creation (i.e., not yet inserted into lock list)
308          * is already accessible to other threads once at least one of its
309          * sub-locks is created, see lov_lock_sub_init().
310          *
311          * Sub-lock can be in one of the following states:
312          *
313          *     - doesn't exist, lov_lock::lls_sub[]::sub_lock == NULL. Such
314          *       sub-lock was either never created (top-lock is in CLS_NEW
315          *       state), or it was created, then canceled, then destroyed
316          *       (lov_lock_unlink() cleared sub-lock pointer in the top-lock).
317          *
318          *     - sub-lock exists and is on
319          *       hold. (lov_lock::lls_sub[]::sub_flags & LSF_HELD). This is a
320          *       normal state of a sub-lock in CLS_HELD and CLS_CACHED states
321          *       of a top-lock.
322          *
323          *     - sub-lock exists, but is not held by the top-lock. This
324          *       happens after top-lock released a hold on sub-locks before
325          *       going into cache (lov_lock_unuse()).
326          *
327          * \todo To support wide-striping, array has to be replaced with a set
328          * of queues to avoid scanning.
329          */
330         struct lov_lock_sub   *lls_sub;
331         /**
332          * Original description with which lock was enqueued.
333          */
334         struct cl_lock_descr   lls_orig;
335 };
336
337 struct lov_page {
338         struct cl_page_slice lps_cl;
339         int                  lps_invalid;
340 };
341
342 /*
343  * Bottom half.
344  */
345
346 struct lovsub_device {
347         struct cl_device   acid_cl;
348         struct lov_device *acid_super;
349         int                acid_idx;
350         struct cl_device  *acid_next;
351 };
352
353 struct lovsub_object {
354         struct cl_object_header lso_header;
355         struct cl_object        lso_cl;
356         struct lov_object      *lso_super;
357         int                     lso_index;
358 };
359
360 /**
361  * A link between a top-lock and a sub-lock. Separate data-structure is
362  * necessary, because top-locks and sub-locks are in M:N relationship.
363  *
364  * \todo This can be optimized for a (by far) most frequent case of a single
365  * top-lock per sub-lock.
366  */
367 struct lov_lock_link {
368         struct lov_lock *lll_super;
369         /** An index within parent lock. */
370         int              lll_idx;
371         /**
372          * A linkage into per sub-lock list of all corresponding top-locks,
373          * hanging off lovsub_lock::lss_parents.
374          */
375         struct list_head lll_list;
376 };
377
378 /**
379  * Lock state at lovsub layer.
380  */
381 struct lovsub_lock {
382         struct cl_lock_slice  lss_cl;
383         /**
384          * List of top-locks that have given sub-lock as their part. Protected
385          * by cl_lock::cll_guard mutex.
386          */
387         struct list_head      lss_parents;
388         /**
389          * Top-lock that initiated current operation on this sub-lock. This is
390          * only set during top-to-bottom lock operations like enqueue, and is
391          * used to optimize state change notification. Protected by
392          * cl_lock::cll_guard mutex.
393          *
394          * \see lovsub_lock_state_one().
395          */
396         struct cl_lock       *lss_active;
397 };
398
399 struct lovsub_page {
400         struct cl_page_slice lsb_cl;
401 };
402
403
404 struct lov_thread_info {
405         struct cl_object_conf   lti_stripe_conf;
406         struct lu_fid           lti_fid;
407         struct cl_lock_descr    lti_ldescr;
408         struct ost_lvb          lti_lvb;
409         struct cl_2queue        lti_cl2q;
410         union  lov_layout_state lti_state;
411         struct cl_lock_closure  lti_closure;
412         cfs_waitlink_t          lti_waiter;
413 };
414
415 /**
416  * State that lov_io maintains for every sub-io.
417  */
418 struct lov_io_sub {
419         int                  sub_stripe;
420         /**
421          * sub-io for a stripe. Ideally sub-io's can be stopped and resumed
422          * independently, with lov acting as a scheduler to maximize overall
423          * throughput.
424          */
425         struct cl_io        *sub_io;
426         /**
427          * Linkage into a list (hanging off lov_io::lis_active) of all
428          * sub-io's active for the current IO iteration.
429          */
430         struct list_head     sub_linkage;
431         /**
432          * true, iff cl_io_init() was successfully executed against
433          * lov_io_sub::sub_io.
434          */
435         int                  sub_io_initialized;
436         /**
437          * True, iff lov_io_sub::sub_io and lov_io_sub::sub_env weren't
438          * allocated, but borrowed from a per-device emergency pool.
439          */
440         int                  sub_borrowed;
441         /**
442          * environment, in which sub-io executes.
443          */
444         struct lu_env *sub_env;
445         /**
446          * environment's refcheck.
447          *
448          * \see cl_env_get()
449          */
450         int                  sub_refcheck;
451         int                  sub_refcheck2;
452         int                  sub_reenter;
453         void                *sub_cookie;
454 };
455
456 /**
457  * IO state private for LOV.
458  */
459 struct lov_io {
460         /** super-class */
461         struct cl_io_slice lis_cl;
462         /**
463          * Pointer to the object slice. This is a duplicate of
464          * lov_io::lis_cl::cis_object.
465          */
466         struct lov_object *lis_object;
467         /**
468          * Original end-of-io position for this IO, set by the upper layer as
469          * cl_io::u::ci_rw::pos + cl_io::u::ci_rw::count. lov remembers this,
470          * changes pos and count to fit IO into a single stripe and uses saved
471          * value to determine when IO iterations have to stop.
472          *
473          * This is used only for CIT_READ and CIT_WRITE io's.
474          */
475         loff_t             lis_io_endpos;
476
477         /**
478          * starting position within a file, for the current io loop iteration
479          * (stripe), used by ci_io_loop().
480          */
481         obd_off            lis_pos;
482         /**
483          * end position with in a file, for the current stripe io. This is
484          * exclusive (i.e., next offset after last byte affected by io).
485          */
486         obd_off            lis_endpos;
487
488         int                lis_mem_frozen;
489         int                lis_stripe_count;
490         int                lis_active_subios;
491
492         /**
493          * the index of ls_single_subio in ls_subios array
494          */
495         int                lis_single_subio_index;
496         struct cl_io       lis_single_subio;
497
498         /**
499          * size of ls_subios array, actually the highest stripe #
500          */
501         int                lis_nr_subios;
502         struct lov_io_sub *lis_subs;
503         /**
504          * List of active sub-io's.
505          */
506         struct list_head   lis_active;
507 };
508
509 struct lov_session {
510         struct lov_io ls_io;
511 };
512
513 /**
514  * State of transfer for lov.
515  */
516 struct lov_req {
517         struct cl_req_slice lr_cl;
518 };
519
520 /**
521  * State of transfer for lovsub.
522  */
523 struct lovsub_req {
524         struct cl_req_slice lsrq_cl;
525 };
526
527 extern struct lu_device_type lov_device_type;
528 extern struct lu_device_type lovsub_device_type;
529
530 extern struct lu_context_key lov_key;
531 extern struct lu_context_key lov_session_key;
532
533 extern cfs_mem_cache_t *lov_page_kmem;
534 extern cfs_mem_cache_t *lov_lock_kmem;
535 extern cfs_mem_cache_t *lov_object_kmem;
536 extern cfs_mem_cache_t *lov_thread_kmem;
537 extern cfs_mem_cache_t *lov_session_kmem;
538 extern cfs_mem_cache_t *lov_req_kmem;
539
540 extern cfs_mem_cache_t *lovsub_page_kmem;
541 extern cfs_mem_cache_t *lovsub_lock_kmem;
542 extern cfs_mem_cache_t *lovsub_object_kmem;
543 extern cfs_mem_cache_t *lovsub_req_kmem;
544
545 extern cfs_mem_cache_t *lov_lock_link_kmem;
546
547 int   lov_object_init     (const struct lu_env *env, struct lu_object *obj,
548                            const struct lu_object_conf *conf);
549 int   lovsub_object_init  (const struct lu_env *env, struct lu_object *obj,
550                            const struct lu_object_conf *conf);
551 int   lov_lock_init       (const struct lu_env *env, struct cl_object *obj,
552                            struct cl_lock *lock, const struct cl_io *io);
553 int   lov_io_init         (const struct lu_env *env, struct cl_object *obj,
554                            struct cl_io *io);
555 int   lovsub_lock_init    (const struct lu_env *env, struct cl_object *obj,
556                            struct cl_lock *lock, const struct cl_io *io);
557
558 int   lov_lock_init_raid0 (const struct lu_env *env, struct cl_object *obj,
559                            struct cl_lock *lock, const struct cl_io *io);
560 int   lov_io_init_raid0   (const struct lu_env *env, struct cl_object *obj,
561                            struct cl_io *io);
562 int   lov_io_init_empty   (const struct lu_env *env, struct cl_object *obj,
563                            struct cl_io *io);
564 void  lov_lock_unlink     (const struct lu_env *env, struct lov_lock_link *link,
565                            struct lovsub_lock *sub);
566
567 void  lov_sub_put         (struct lov_io_sub *sub);
568 int   lov_sublock_modify  (const struct lu_env *env, struct lov_lock *lov,
569                            struct lovsub_lock *sublock,
570                            const struct cl_lock_descr *d, int idx);
571
572
573 struct cl_page *lov_page_init   (const struct lu_env *env, struct cl_object *ob,
574                                  struct cl_page *page, cfs_page_t *vmpage);
575 struct cl_page *lovsub_page_init(const struct lu_env *env, struct cl_object *ob,
576                                  struct cl_page *page, cfs_page_t *vmpage);
577
578 struct cl_page   *lov_page_init_empty(const struct lu_env *env,
579                                       struct cl_object *obj,
580                                       struct cl_page *page, cfs_page_t *vmpage);
581 struct cl_page   *lov_page_init_raid0(const struct lu_env *env,
582                                       struct cl_object *obj,
583                                       struct cl_page *page, cfs_page_t *vmpage);
584 struct lu_object *lov_object_alloc   (const struct lu_env *env,
585                                       const struct lu_object_header *hdr,
586                                       struct lu_device *dev);
587 struct lu_object *lovsub_object_alloc(const struct lu_env *env,
588                                       const struct lu_object_header *hdr,
589                                       struct lu_device *dev);
590
591 struct lov_lock_link *lov_lock_link_find(const struct lu_env *env,
592                                          struct lov_lock *lck,
593                                          struct lovsub_lock *sub);
594 struct lov_io_sub    *lov_page_subio    (const struct lu_env *env,
595                                          struct lov_io *lio,
596                                          const struct cl_page_slice *slice);
597
598
599 #define lov_foreach_target(lov, var)                    \
600         for (var = 0; var < lov_targets_nr(lov); ++var)
601
602 /*****************************************************************************
603  *
604  * Type conversions.
605  *
606  * Accessors.
607  *
608  */
609
610 static inline struct lov_session *lov_env_session(const struct lu_env *env)
611 {
612         struct lov_session *ses;
613
614         ses = lu_context_key_get(env->le_ses, &lov_session_key);
615         LASSERT(ses != NULL);
616         return ses;
617 }
618
619 static inline struct lov_io *lov_env_io(const struct lu_env *env)
620 {
621         return &lov_env_session(env)->ls_io;
622 }
623
624 static inline int lov_is_object(const struct lu_object *obj)
625 {
626         return obj->lo_dev->ld_type == &lov_device_type;
627 }
628
629 static inline int lovsub_is_object(const struct lu_object *obj)
630 {
631         return obj->lo_dev->ld_type == &lovsub_device_type;
632 }
633
634 static inline struct lu_device *lov2lu_dev(struct lov_device *lov)
635 {
636         return &lov->ld_cl.cd_lu_dev;
637 }
638
639 static inline struct lov_device *lu2lov_dev(const struct lu_device *d)
640 {
641         LINVRNT(d->ld_type == &lov_device_type);
642         return container_of0(d, struct lov_device, ld_cl.cd_lu_dev);
643 }
644
645 static inline struct cl_device *lovsub2cl_dev(struct lovsub_device *lovsub)
646 {
647         return &lovsub->acid_cl;
648 }
649
650 static inline struct lu_device *lovsub2lu_dev(struct lovsub_device *lovsub)
651 {
652         return &lovsub2cl_dev(lovsub)->cd_lu_dev;
653 }
654
655 static inline struct lovsub_device *lu2lovsub_dev(const struct lu_device *d)
656 {
657         LINVRNT(d->ld_type == &lovsub_device_type);
658         return container_of0(d, struct lovsub_device, acid_cl.cd_lu_dev);
659 }
660
661 static inline struct lovsub_device *cl2lovsub_dev(const struct cl_device *d)
662 {
663         LINVRNT(d->cd_lu_dev.ld_type == &lovsub_device_type);
664         return container_of0(d, struct lovsub_device, acid_cl);
665 }
666
667 static inline struct lu_object *lov2lu(struct lov_object *lov)
668 {
669         return &lov->lo_cl.co_lu;
670 }
671
672 static inline struct cl_object *lov2cl(struct lov_object *lov)
673 {
674         return &lov->lo_cl;
675 }
676
677 static inline struct lov_object *lu2lov(const struct lu_object *obj)
678 {
679         LINVRNT(lov_is_object(obj));
680         return container_of0(obj, struct lov_object, lo_cl.co_lu);
681 }
682
683 static inline struct lov_object *cl2lov(const struct cl_object *obj)
684 {
685         LINVRNT(lov_is_object(&obj->co_lu));
686         return container_of0(obj, struct lov_object, lo_cl);
687 }
688
689 static inline struct lu_object *lovsub2lu(struct lovsub_object *los)
690 {
691         return &los->lso_cl.co_lu;
692 }
693
694 static inline struct cl_object *lovsub2cl(struct lovsub_object *los)
695 {
696         return &los->lso_cl;
697 }
698
699 static inline struct lovsub_object *cl2lovsub(const struct cl_object *obj)
700 {
701         LINVRNT(lovsub_is_object(&obj->co_lu));
702         return container_of0(obj, struct lovsub_object, lso_cl);
703 }
704
705 static inline struct lovsub_object *lu2lovsub(const struct lu_object *obj)
706 {
707         LINVRNT(lovsub_is_object(obj));
708         return container_of0(obj, struct lovsub_object, lso_cl.co_lu);
709 }
710
711 static inline struct lovsub_lock *
712 cl2lovsub_lock(const struct cl_lock_slice *slice)
713 {
714         LINVRNT(lovsub_is_object(&slice->cls_obj->co_lu));
715         return container_of(slice, struct lovsub_lock, lss_cl);
716 }
717
718 static inline struct lovsub_lock *cl2sub_lock(const struct cl_lock *lock)
719 {
720         const struct cl_lock_slice *slice;
721
722         slice = cl_lock_at(lock, &lovsub_device_type);
723         LASSERT(slice != NULL);
724         return cl2lovsub_lock(slice);
725 }
726
727 static inline struct lov_lock *cl2lov_lock(const struct cl_lock_slice *slice)
728 {
729         LINVRNT(lov_is_object(&slice->cls_obj->co_lu));
730         return container_of(slice, struct lov_lock, lls_cl);
731 }
732
733 static inline struct lov_page *cl2lov_page(const struct cl_page_slice *slice)
734 {
735         LINVRNT(lov_is_object(&slice->cpl_obj->co_lu));
736         return container_of0(slice, struct lov_page, lps_cl);
737 }
738
739 static inline struct lov_req *cl2lov_req(const struct cl_req_slice *slice)
740 {
741         return container_of0(slice, struct lov_req, lr_cl);
742 }
743
744 static inline struct lovsub_page *
745 cl2lovsub_page(const struct cl_page_slice *slice)
746 {
747         LINVRNT(lovsub_is_object(&slice->cpl_obj->co_lu));
748         return container_of0(slice, struct lovsub_page, lsb_cl);
749 }
750
751 static inline struct lovsub_req *cl2lovsub_req(const struct cl_req_slice *slice)
752 {
753         return container_of0(slice, struct lovsub_req, lsrq_cl);
754 }
755
756 static inline struct cl_page *lov_sub_page(const struct cl_page_slice *slice)
757 {
758         return slice->cpl_page->cp_child;
759 }
760
761 static inline struct lov_io *cl2lov_io(const struct lu_env *env,
762                                 const struct cl_io_slice *ios)
763 {
764         struct lov_io *lio;
765
766         lio = container_of(ios, struct lov_io, lis_cl);
767         LASSERT(lio == lov_env_io(env));
768         return lio;
769 }
770
771 static inline int lov_targets_nr(const struct lov_device *lov)
772 {
773         return lov->ld_lov->desc.ld_tgt_count;
774 }
775
776 static inline struct lov_thread_info *lov_env_info(const struct lu_env *env)
777 {
778         struct lov_thread_info *info;
779
780         info = lu_context_key_get(&env->le_ctx, &lov_key);
781         LASSERT(info != NULL);
782         return info;
783 }
784
785 static inline struct lov_layout_raid0 *lov_r0(struct lov_object *lov)
786 {
787         struct lov_layout_raid0 *raid0;
788
789         LASSERT(lov->lo_type == LLT_RAID0);
790         raid0 = &lov->u.raid0;
791         LASSERT(raid0->lo_lsm->lsm_wire.lw_magic == LOV_MAGIC);
792         return raid0;
793 }
794
795 /** @} lov */
796
797 #endif
798