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