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