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