Whamcloud - gitweb
c5b3c3ee26318825193f5c39024e81c824e810cf
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * Internal interfaces of LOV layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  *   Author: Jinshan Xiong <jinshan.xiong@intel.com>
40  */
41
42 #ifndef LOV_CL_INTERNAL_H
43 #define LOV_CL_INTERNAL_H
44
45 #include <libcfs/libcfs.h>
46 #include <obd.h>
47 #include <cl_object.h>
48 #include "lov_internal.h"
49
50 /** \defgroup lov lov
51  * Logical object volume layer. This layer implements data striping (raid0).
52  *
53  * At the lov layer top-entity (object, page, lock, io) is connected to one or
54  * more sub-entities: top-object, representing a file is connected to a set of
55  * sub-objects, each representing a stripe, file-level top-lock is connected
56  * to a set of per-stripe sub-locks, top-page is connected to a (single)
57  * sub-page, and a top-level IO is connected to a set of (potentially
58  * concurrent) sub-IO's.
59  *
60  * Sub-object, sub-page, and sub-io have well-defined top-object and top-page
61  * respectively, while a single sub-lock can be part of multiple top-locks.
62  *
63  * Reference counting models are different for different types of entities:
64  *
65  *     - top-object keeps a reference to its sub-objects, and destroys them
66  *       when it is destroyed.
67  *
68  *     - top-page keeps a reference to its sub-page, and destroys it when it
69  *       is destroyed.
70  *
71  *     - IO's are not reference counted.
72  *
73  * To implement a connection between top and sub entities, lov layer is split
74  * into two pieces: lov ("upper half"), and lovsub ("bottom half"), both
75  * implementing full set of cl-interfaces. For example, top-object has vvp and
76  * lov layers, and it's sub-object has lovsub and osc layers. lovsub layer is
77  * used to track child-parent relationship.
78  *
79  * @{
80  */
81
82 struct lovsub_device;
83 struct lovsub_object;
84
85 enum lov_device_flags {
86         LOV_DEV_INITIALIZED = BIT(0),
87 };
88
89 /*
90  * Upper half.
91  */
92
93 /* Data-on-MDT array item in lov_device::ld_md_tgts[] */
94 struct lovdom_device {
95         struct cl_device        *ldm_mdc;
96         int                      ldm_idx;
97 };
98
99 struct lov_device {
100         /*
101          * XXX Locking of lov-private data is missing.
102          */
103         struct cl_device          ld_cl;
104         struct lov_obd           *ld_lov;
105         /** size of lov_device::ld_target[] array */
106         __u32                     ld_target_nr;
107         struct lovsub_device    **ld_target;
108         __u32                     ld_flags;
109
110         /* Data-on-MDT devices */
111         __u32                     ld_md_tgts_nr;
112         struct lovdom_device     *ld_md_tgts;
113         struct obd_device        *ld_lmv;
114         /* LU site for subdevices */
115         struct lu_site            ld_site;
116 };
117
118 /**
119  * Layout type.
120  */
121 enum lov_layout_type {
122         LLT_EMPTY,      /** empty file without body (mknod + truncate) */
123         LLT_RELEASED,   /** file with no objects (data in HSM) */
124         LLT_COMP,       /** support composite layout */
125         LLT_FOREIGN,    /** foreign layout */
126         LLT_NR
127 };
128
129 static inline char *llt2str(enum lov_layout_type llt)
130 {
131         switch (llt) {
132         case LLT_EMPTY:
133                 return "EMPTY";
134         case LLT_RELEASED:
135                 return "RELEASED";
136         case LLT_COMP:
137                 return "COMPOSITE";
138         case LLT_FOREIGN:
139                 return "FOREIGN";
140         case LLT_NR:
141                 LBUG();
142         }
143         LBUG();
144         return "";
145 }
146
147 /**
148  * Return lov_layout_entry_type associated with a given composite layout
149  * entry.
150  */
151 static inline __u32 lov_entry_type(struct lov_stripe_md_entry *lsme)
152 {
153         if ((lov_pattern(lsme->lsme_pattern) & LOV_PATTERN_RAID0) ||
154             (lov_pattern(lsme->lsme_pattern) == LOV_PATTERN_MDT) ||
155             (lov_pattern(lsme->lsme_pattern) == LOV_PATTERN_FOREIGN))
156                 return lov_pattern(lsme->lsme_pattern &
157                                    ~LOV_PATTERN_OVERSTRIPING);
158         return 0;
159 }
160
161 struct lov_layout_entry;
162 struct lov_object;
163 struct lov_lock_sub;
164
165 struct lov_comp_layout_entry_ops {
166         int (*lco_init)(const struct lu_env *env, struct lov_device *dev,
167                         struct lov_object *lov, unsigned int index,
168                         const struct cl_object_conf *conf,
169                         struct lov_layout_entry *lle);
170         void (*lco_fini)(const struct lu_env *env,
171                          struct lov_layout_entry *lle);
172         int  (*lco_getattr)(const struct lu_env *env, struct lov_object *obj,
173                             unsigned int index, struct lov_layout_entry *lle,
174                             struct cl_attr **attr);
175 };
176
177 struct lov_layout_raid0 {
178         unsigned               lo_nr;
179         /**
180          * record the stripe no before the truncate size, used for setting OST
181          * object size for truncate. LU-14128.
182          */
183         int                    lo_trunc_stripeno;
184         /**
185          * When this is true, lov_object::lo_attr contains
186          * valid up to date attributes for a top-level
187          * object. This field is reset to 0 when attributes of
188          * any sub-object change.
189          */
190         bool                   lo_attr_valid;
191         /**
192          * Array of sub-objects. Allocated when top-object is
193          * created (lov_init_raid0()).
194          *
195          * Top-object is a strict master of its sub-objects:
196          * it is created before them, and outlives its
197          * children (this later is necessary so that basic
198          * functions like cl_object_top() always
199          * work). Top-object keeps a reference on every
200          * sub-object.
201          *
202          * When top-object is destroyed (lov_delete_raid0())
203          * it releases its reference to a sub-object and waits
204          * until the latter is finally destroyed.
205          */
206         struct lovsub_object **lo_sub;
207         /**
208          * protect lo_sub
209          */
210         spinlock_t              lo_sub_lock;
211         /**
212          * Cached object attribute, built from sub-object
213          * attributes.
214          */
215         struct cl_attr         lo_attr;
216 };
217
218 struct lov_layout_dom {
219         /* keep this always at first place so DOM layout entry
220          * can be addressed also as RAID0 after initialization.
221          */
222         struct lov_layout_raid0 lo_dom_r0;
223         struct lovsub_object *lo_dom;
224         struct lov_oinfo *lo_loi;
225 };
226
227 struct lov_layout_entry {
228         __u32                           lle_type;
229         unsigned int                    lle_valid:1;
230         struct lu_extent                *lle_extent;
231         struct lov_stripe_md_entry      *lle_lsme;
232         struct lov_comp_layout_entry_ops *lle_comp_ops;
233         union {
234                 struct lov_layout_raid0 lle_raid0;
235                 struct lov_layout_dom   lle_dom;
236         };
237 };
238
239 struct lov_mirror_entry {
240         unsigned short  lre_mirror_id;
241         unsigned short  lre_preferred:1,
242                         lre_stale:1,    /* set if any components is stale */
243                         lre_valid:1,    /* set if at least one of components
244                                          * in this mirror is valid */
245                         lre_foreign:1;  /* set if it is a foreign component */
246
247         unsigned short  lre_start;      /* index to lo_entries, start index of
248                                          * this mirror */
249         unsigned short  lre_end;        /* end index of this mirror */
250 };
251
252 enum lov_object_flags {
253         /* Layout is invalid, set when layout lock is lost */
254         LO_LAYOUT_INVALID       = 0x1,
255 };
256
257 /**
258  * lov-specific file state.
259  *
260  * lov object has particular layout type, determining how top-object is built
261  * on top of sub-objects. Layout type can change dynamically. When this
262  * happens, lov_object::lo_type_guard semaphore is taken in exclusive mode,
263  * all state pertaining to the old layout type is destroyed, and new state is
264  * constructed. All object methods take said semaphore in the shared mode,
265  * providing serialization against transition between layout types.
266  *
267  * To avoid multiple `if' or `switch' statements, selecting behavior for the
268  * current layout type, object methods perform double-dispatch, invoking
269  * function corresponding to the current layout type.
270  */
271 struct lov_object {
272         struct cl_object        lo_cl;
273         /**
274          * Serializes object operations with transitions between layout types.
275          *
276          * This semaphore is taken in shared mode by all object methods, and
277          * is taken in exclusive mode when object type is changed.
278          *
279          * \see lov_object::lo_type
280          */
281         struct rw_semaphore     lo_type_guard;
282         /**
283          * Type of an object. Protected by lov_object::lo_type_guard.
284          */
285         enum lov_layout_type    lo_type;
286         /**
287          * Object flags.
288          */
289         unsigned long           lo_obj_flags;
290         /**
291          * How many IOs are on going on this object. Layout can be changed
292          * only if there is no active IO.
293          */
294         atomic_t               lo_active_ios;
295         /**
296          * Waitq - wait for no one else is using lo_lsm
297          */
298         wait_queue_head_t       lo_waitq;
299         /**
300          * Layout metadata. NULL if empty layout.
301          */
302         struct lov_stripe_md  *lo_lsm;
303
304         union lov_layout_state {
305                 struct lov_layout_state_empty {
306                 } empty;
307                 struct lov_layout_state_released {
308                 } released;
309                 struct lov_layout_composite {
310                         /**
311                          * flags of lov_comp_md_v1::lcm_flags. Mainly used
312                          * by FLR.
313                          */
314                         uint32_t        lo_flags;
315                         /**
316                          * For FLR: index of preferred mirror to read.
317                          * Preferred mirror is initialized by the preferred
318                          * bit of lsme. It can be changed when the preferred
319                          * is inaccessible.
320                          * In order to make lov_lsm_entry() return the same
321                          * mirror in the same IO context, it's only possible
322                          * to change the preferred mirror when the
323                          * lo_active_ios reaches zero.
324                          */
325                         int             lo_preferred_mirror;
326                         /**
327                          * For FLR: the lock to protect access to
328                          * lo_preferred_mirror.
329                          */
330                         spinlock_t      lo_write_lock;
331                         /**
332                          * For FLR: Number of (valid) mirrors.
333                          */
334                         unsigned        lo_mirror_count;
335                         struct lov_mirror_entry *lo_mirrors;
336                         /**
337                          * Current entry count of lo_entries, include
338                          * invalid entries.
339                          */
340                         unsigned int    lo_entry_count;
341                         struct lov_layout_entry *lo_entries;
342                 } composite;
343         } u;
344         /**
345          * Thread that acquired lov_object::lo_type_guard in an exclusive
346          * mode.
347          */
348         struct task_struct            *lo_owner;
349 };
350
351 static inline struct lov_layout_raid0 *lov_r0(struct lov_object *lov, int i)
352 {
353         LASSERT(lov->lo_type == LLT_COMP);
354         LASSERTF(i < lov->u.composite.lo_entry_count,
355                  "entry %d entry_count %d\n", i,
356                  lov->u.composite.lo_entry_count);
357
358         return &lov->u.composite.lo_entries[i].lle_raid0;
359 }
360
361 static inline struct lov_stripe_md_entry *lov_lse(struct lov_object *lov, int i)
362 {
363         LASSERT(lov->lo_lsm != NULL);
364         LASSERT(i < lov->lo_lsm->lsm_entry_count);
365
366         return lov->lo_lsm->lsm_entries[i];
367 }
368
369 static inline unsigned lov_flr_state(const struct lov_object *lov)
370 {
371         if (lov->lo_type != LLT_COMP)
372                 return LCM_FL_NONE;
373
374         return lov->u.composite.lo_flags & LCM_FL_FLR_MASK;
375 }
376
377 static inline bool lov_is_flr(const struct lov_object *lov)
378 {
379         return lov_flr_state(lov) != LCM_FL_NONE;
380 }
381
382 static inline struct lov_layout_entry *lov_entry(struct lov_object *lov, int i)
383 {
384         LASSERT(lov->lo_type == LLT_COMP);
385         LASSERTF(i < lov->u.composite.lo_entry_count,
386                  "entry %d entry_count %d\n", i,
387                  lov->u.composite.lo_entry_count);
388
389         return &lov->u.composite.lo_entries[i];
390 }
391
392 #define lov_for_layout_entry(lov, entry, start, end)                    \
393         for (entry = lov_entry(lov, start);                             \
394              entry <= lov_entry(lov, end); entry++)
395
396 #define lov_foreach_layout_entry(lov, entry)                            \
397         lov_for_layout_entry(lov, entry, 0,                             \
398                              (lov)->u.composite.lo_entry_count - 1)
399
400 #define lov_foreach_mirror_layout_entry(lov, entry, lre)                \
401         lov_for_layout_entry(lov, entry, (lre)->lre_start, (lre)->lre_end)
402
403 static inline struct lov_mirror_entry *
404 lov_mirror_entry(struct lov_object *lov, int i)
405 {
406         LASSERT(i < lov->u.composite.lo_mirror_count);
407         return &lov->u.composite.lo_mirrors[i];
408 }
409
410 #define lov_foreach_mirror_entry(lov, lre)                              \
411         for (lre = lov_mirror_entry(lov, 0);                            \
412              lre <= lov_mirror_entry(lov,                               \
413                                 lov->u.composite.lo_mirror_count - 1);  \
414              lre++)
415
416 static inline unsigned
417 lov_layout_entry_index(struct lov_object *lov, struct lov_layout_entry *entry)
418 {
419         struct lov_layout_entry *first = &lov->u.composite.lo_entries[0];
420         unsigned index = (unsigned)(entry - first);
421
422         LASSERT(entry >= first);
423         LASSERT(index < lov->u.composite.lo_entry_count);
424
425         return index;
426 }
427
428 /**
429  * State lov_lock keeps for each sub-lock.
430  */
431 struct lov_lock_sub {
432         /** sub-lock itself */
433         struct cl_lock          sub_lock;
434         /** Set if the sublock has ever been enqueued, meaning it may
435          * hold resources of underlying layers */
436         unsigned int            sub_is_enqueued:1,
437                                 sub_initialized:1;
438         int                     sub_index;
439 };
440
441 /**
442  * lov-specific lock state.
443  */
444 struct lov_lock {
445         struct cl_lock_slice    lls_cl;
446         /** Number of sub-locks in this lock */
447         int                     lls_nr;
448         /** sublock array */
449         struct lov_lock_sub     lls_sub[0];
450 };
451
452 struct lov_page {
453         struct cl_page_slice    lps_cl;
454         /* the layout gen when this page was created */
455         __u32                   lps_layout_gen;
456 };
457
458 /*
459  * Bottom half.
460  */
461
462 struct lovsub_device {
463         struct cl_device   acid_cl;
464         struct cl_device  *acid_next;
465 };
466
467 struct lovsub_object {
468         struct cl_object_header lso_header;
469         struct cl_object        lso_cl;
470         struct lov_object      *lso_super;
471         int                     lso_index;
472 };
473
474 /**
475  * Describe the environment settings for sublocks.
476  */
477 struct lov_sublock_env {
478         const struct lu_env *lse_env;
479         struct cl_io        *lse_io;
480 };
481
482 struct lov_thread_info {
483         struct cl_object_conf   lti_stripe_conf;
484         struct lu_fid           lti_fid;
485         struct ost_lvb          lti_lvb;
486         struct cl_2queue        lti_cl2q;
487         struct cl_page_list     lti_plist;
488 };
489
490 /**
491  * State that lov_io maintains for every sub-io.
492  */
493 struct lov_io_sub {
494         /**
495          * Linkage into a list (hanging off lov_io::lis_subios)
496          */
497         struct list_head        sub_list;
498         /**
499          * Linkage into a list (hanging off lov_io::lis_active) of all
500          * sub-io's active for the current IO iteration.
501          */
502         struct list_head        sub_linkage;
503         unsigned int            sub_subio_index;
504         /**
505          * sub-io for a stripe. Ideally sub-io's can be stopped and resumed
506          * independently, with lov acting as a scheduler to maximize overall
507          * throughput.
508          */
509         struct cl_io            sub_io;
510         /**
511          * environment, in which sub-io executes.
512          */
513         struct lu_env           *sub_env;
514         /**
515          * environment's refcheck.
516          *
517          * \see cl_env_get()
518          */
519         __u16                   sub_refcheck;
520 };
521
522 /**
523  * IO state private for LOV.
524  */
525 struct lov_io {
526         /** super-class */
527         struct cl_io_slice lis_cl;
528
529         /**
530          * FLR: index to lo_mirrors. Valid only if lov_is_flr() returns true.
531          *
532          * The mirror index of this io. Preserved over cl_io_init()
533          * if io->ci_ndelay_tried is greater than zero.
534          */
535         int                     lis_mirror_index;
536         /**
537          * FLR: the layout gen when lis_mirror_index was cached. The
538          * mirror index makes sense only when the layout gen doesn't
539          * change.
540          */
541         int                     lis_mirror_layout_gen;
542
543         /**
544          * fields below this will be initialized in lov_io_init().
545          */
546         unsigned                lis_preserved;
547
548         /**
549          * Pointer to the object slice. This is a duplicate of
550          * lov_io::lis_cl::cis_object.
551          */
552         struct lov_object *lis_object;
553         /**
554          * Original end-of-io position for this IO, set by the upper layer as
555          * cl_io::u::ci_rw::pos + cl_io::u::ci_rw::count. lov remembers this,
556          * changes pos and count to fit IO into a single stripe and uses saved
557          * value to determine when IO iterations have to stop.
558          *
559          * This is used only for CIT_READ and CIT_WRITE io's.
560          */
561         loff_t             lis_io_endpos;
562
563         /**
564          * starting position within a file, for the current io loop iteration
565          * (stripe), used by ci_io_loop().
566          */
567         loff_t                  lis_pos;
568         /**
569          * end position with in a file, for the current stripe io. This is
570          * exclusive (i.e., next offset after last byte affected by io).
571          */
572         loff_t                  lis_endpos;
573         int                     lis_nr_subios;
574
575         /**
576          * the index of ls_single_subio in ls_subios array
577          */
578         int                     lis_single_subio_index;
579         struct lov_io_sub       lis_single_subio;
580
581         /**
582          * List of active sub-io's. Active sub-io's are under the range
583          * of [lis_pos, lis_endpos).
584          */
585         struct list_head        lis_active;
586         /**
587          * All sub-io's created in this lov_io.
588          */
589         struct list_head        lis_subios;
590
591 };
592
593 struct lov_session {
594         struct lov_io          ls_io;
595         struct lov_sublock_env ls_subenv;
596 };
597
598 extern struct lu_device_type lov_device_type;
599 extern struct lu_device_type lovsub_device_type;
600
601 extern struct lu_context_key lov_key;
602 extern struct lu_context_key lov_session_key;
603
604 extern struct kmem_cache *lov_lock_kmem;
605 extern struct kmem_cache *lov_object_kmem;
606 extern struct kmem_cache *lov_thread_kmem;
607 extern struct kmem_cache *lov_session_kmem;
608
609 extern struct kmem_cache *lovsub_object_kmem;
610
611 int   lov_lock_init_composite(const struct lu_env *env, struct cl_object *obj,
612                            struct cl_lock *lock, const struct cl_io *io);
613 int   lov_lock_init_empty (const struct lu_env *env, struct cl_object *obj,
614                            struct cl_lock *lock, const struct cl_io *io);
615 int   lov_io_init_composite(const struct lu_env *env, struct cl_object *obj,
616                            struct cl_io *io);
617 int   lov_io_init_empty   (const struct lu_env *env, struct cl_object *obj,
618                            struct cl_io *io);
619 int   lov_io_init_released(const struct lu_env *env, struct cl_object *obj,
620                            struct cl_io *io);
621
622 struct lov_io_sub *lov_sub_get(const struct lu_env *env, struct lov_io *lio,
623                                int stripe);
624
625 int   lov_page_init_empty (const struct lu_env *env, struct cl_object *obj,
626                            struct cl_page *page, pgoff_t index);
627 int   lov_page_init_composite(const struct lu_env *env, struct cl_object *obj,
628                            struct cl_page *page, pgoff_t index);
629 int   lov_page_init_foreign(const struct lu_env *env, struct cl_object *obj,
630                              struct cl_page *page, pgoff_t index);
631 struct lu_object *lov_object_alloc   (const struct lu_env *env,
632                                       const struct lu_object_header *hdr,
633                                       struct lu_device *dev);
634
635 struct lu_object *lovsub_object_alloc(const struct lu_env *env,
636                                       const struct lu_object_header *hdr,
637                                       struct lu_device *dev);
638
639 int lov_page_stripe(const struct cl_page *page);
640 bool lov_page_is_empty(const struct cl_page *page);
641 int lov_lsm_entry(const struct lov_stripe_md *lsm, __u64 offset);
642 int lov_io_layout_at(struct lov_io *lio, __u64 offset);
643
644 #define lov_foreach_target(lov, var)                    \
645         for (var = 0; var < lov_targets_nr(lov); ++var)
646
647 static inline struct lu_extent *lov_io_extent(struct lov_io *io, int i)
648 {
649         return &lov_lse(io->lis_object, i)->lsme_extent;
650 }
651
652 /**
653  * For layout entries within @ext.
654  */
655 #define lov_foreach_io_layout(ind, lio, ext)                            \
656         for (ind = lov_io_layout_at(lio, (ext)->e_start);               \
657              ind >= 0 &&                                                \
658              lu_extent_is_overlapped(lov_io_extent(lio, ind), ext);     \
659              ind = lov_io_layout_at(lio, lov_io_extent(lio, ind)->e_end))
660
661 /*****************************************************************************
662  *
663  * Type conversions.
664  *
665  * Accessors.
666  *
667  */
668
669 static inline struct lov_session *lov_env_session(const struct lu_env *env)
670 {
671         struct lov_session *ses;
672
673         ses = lu_context_key_get(env->le_ses, &lov_session_key);
674         LASSERT(ses != NULL);
675         return ses;
676 }
677
678 static inline struct lov_io *lov_env_io(const struct lu_env *env)
679 {
680         return &lov_env_session(env)->ls_io;
681 }
682
683 static inline int lov_is_object(const struct lu_object *obj)
684 {
685         return obj->lo_dev->ld_type == &lov_device_type;
686 }
687
688 static inline int lovsub_is_object(const struct lu_object *obj)
689 {
690         return obj->lo_dev->ld_type == &lovsub_device_type;
691 }
692
693 static inline struct lu_device *lov2lu_dev(struct lov_device *lov)
694 {
695         return &lov->ld_cl.cd_lu_dev;
696 }
697
698 static inline struct lov_device *lu2lov_dev(const struct lu_device *d)
699 {
700         LINVRNT(d->ld_type == &lov_device_type);
701         return container_of(d, struct lov_device, ld_cl.cd_lu_dev);
702 }
703
704 static inline struct cl_device *lovsub2cl_dev(struct lovsub_device *lovsub)
705 {
706         return &lovsub->acid_cl;
707 }
708
709 static inline struct lu_device *lovsub2lu_dev(struct lovsub_device *lovsub)
710 {
711         return &lovsub2cl_dev(lovsub)->cd_lu_dev;
712 }
713
714 static inline struct lovsub_device *lu2lovsub_dev(const struct lu_device *d)
715 {
716         LINVRNT(d->ld_type == &lovsub_device_type);
717         return container_of(d, struct lovsub_device, acid_cl.cd_lu_dev);
718 }
719
720 static inline struct lovsub_device *cl2lovsub_dev(const struct cl_device *d)
721 {
722         LINVRNT(d->cd_lu_dev.ld_type == &lovsub_device_type);
723         return container_of(d, struct lovsub_device, acid_cl);
724 }
725
726 static inline struct lu_object *lov2lu(struct lov_object *lov)
727 {
728         return &lov->lo_cl.co_lu;
729 }
730
731 static inline struct cl_object *lov2cl(struct lov_object *lov)
732 {
733         return &lov->lo_cl;
734 }
735
736 static inline struct lov_object *lu2lov(const struct lu_object *obj)
737 {
738         LINVRNT(lov_is_object(obj));
739         return container_of(obj, struct lov_object, lo_cl.co_lu);
740 }
741
742 static inline struct lov_object *cl2lov(const struct cl_object *obj)
743 {
744         LINVRNT(lov_is_object(&obj->co_lu));
745         return container_of(obj, struct lov_object, lo_cl);
746 }
747
748 static inline struct lu_object *lovsub2lu(struct lovsub_object *los)
749 {
750         return &los->lso_cl.co_lu;
751 }
752
753 static inline struct cl_object *lovsub2cl(struct lovsub_object *los)
754 {
755         return &los->lso_cl;
756 }
757
758 static inline struct lovsub_object *cl2lovsub(const struct cl_object *obj)
759 {
760         LINVRNT(lovsub_is_object(&obj->co_lu));
761         return container_of(obj, struct lovsub_object, lso_cl);
762 }
763
764 static inline struct lovsub_object *lu2lovsub(const struct lu_object *obj)
765 {
766         LINVRNT(lovsub_is_object(obj));
767         return container_of(obj, struct lovsub_object, lso_cl.co_lu);
768 }
769
770 static inline struct lov_lock *cl2lov_lock(const struct cl_lock_slice *slice)
771 {
772         LINVRNT(lov_is_object(&slice->cls_obj->co_lu));
773         return container_of(slice, struct lov_lock, lls_cl);
774 }
775
776 static inline struct lov_page *cl2lov_page(const struct cl_page_slice *slice)
777 {
778         LINVRNT(lov_is_object(&slice->cpl_obj->co_lu));
779         return container_of(slice, struct lov_page, lps_cl);
780 }
781
782 static inline struct lov_io *cl2lov_io(const struct lu_env *env,
783                                 const struct cl_io_slice *ios)
784 {
785         struct lov_io *lio;
786
787         lio = container_of(ios, struct lov_io, lis_cl);
788         LASSERT(lio == lov_env_io(env));
789         return lio;
790 }
791
792 static inline int lov_targets_nr(const struct lov_device *lov)
793 {
794         return lov->ld_lov->desc.ld_tgt_count;
795 }
796
797 static inline struct lov_thread_info *lov_env_info(const struct lu_env *env)
798 {
799         struct lov_thread_info *info;
800
801         info = lu_context_key_get(&env->le_ctx, &lov_key);
802         LASSERT(info != NULL);
803         return info;
804 }
805
806 /* lov_pack.c */
807 int lov_getstripe(const struct lu_env *env, struct lov_object *obj,
808                   struct lov_stripe_md *lsm, struct lov_user_md __user *lump,
809                   size_t size);
810
811 /** @} lov */
812
813 #endif