Whamcloud - gitweb
LU-17662 osd-zfs: Support for ZFS 2.2.3
[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 int 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                         /* set if one of components in this mirror is valid */
233                         lre_valid:1,
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;      /* idx(lo_entries) start idx (mirror) */
238         unsigned short  lre_end;        /* end index of this mirror */
239 };
240
241 enum lov_object_flags {
242         /* Layout is invalid, set when layout lock is lost */
243         LO_LAYOUT_INVALID       = 0x1,
244         LO_NEED_INODE_LOCK      = 0x2,
245 };
246
247 /*
248  * lov-specific file state.
249  *
250  * lov object has particular layout type, determining how top-object is built
251  * on top of sub-objects. Layout type can change dynamically. When this
252  * happens, lov_object::lo_type_guard semaphore is taken in exclusive mode,
253  * all state pertaining to the old layout type is destroyed, and new state is
254  * constructed. All object methods take said semaphore in the shared mode,
255  * providing serialization against transition between layout types.
256  *
257  * To avoid multiple `if' or `switch' statements, selecting behavior for the
258  * current layout type, object methods perform double-dispatch, invoking
259  * function corresponding to the current layout type.
260  */
261 struct lov_object {
262         struct cl_object        lo_cl;
263         /*
264          * Serializes object operations with transitions between layout types.
265          *
266          * This semaphore is taken in shared mode by all object methods, and
267          * is taken in exclusive mode when object type is changed.
268          *
269          * \see lov_object::lo_type
270          */
271         struct rw_semaphore     lo_type_guard;
272         /*
273          * Type of an object. Protected by lov_object::lo_type_guard.
274          */
275         enum lov_layout_type    lo_type;
276         /*
277          * Object flags.
278          */
279         unsigned long           lo_obj_flags;
280         /*
281          * How many IOs are on going on this object. Layout can be changed
282          * only if there is no active IO.
283          */
284         atomic_t               lo_active_ios;
285         /*
286          * Waitq - wait for no one else is using lo_lsm
287          */
288         wait_queue_head_t       lo_waitq;
289         /*
290          * Layout metadata. NULL if empty layout.
291          */
292         struct lov_stripe_md  *lo_lsm;
293
294         union lov_layout_state {
295                 struct lov_layout_state_empty {
296                 } empty;
297                 struct lov_layout_state_released {
298                 } released;
299                 struct lov_layout_composite {
300                         /* flags of lov_comp_md_v1::lcm_flags. Mainly used
301                          * by FLR.
302                          */
303                         uint32_t        lo_flags;
304                         /* For FLR: index of preferred mirror to read.
305                          * Preferred mirror is initialized by the preferred
306                          * bit of lsme. It can be changed when the preferred
307                          * is inaccessible.
308                          */
309                         int             lo_preferred_mirror;
310                         /* For FLR: Number of (valid) mirrors. */
311                         unsigned int lo_mirror_count;
312                         struct lov_mirror_entry *lo_mirrors;
313                         /* Current entry count of lo_entries, include
314                          * invalid entries.
315                          */
316                         unsigned int    lo_entry_count;
317                         struct lov_layout_entry *lo_entries;
318                 } composite;
319         } u;
320         /* Thread that acquired lov_object::lo_type_guard in exclusive mode. */
321         struct task_struct            *lo_owner;
322 };
323
324 static inline const struct lu_fid *lov_object_fid(const struct lov_object *lov)
325 {
326         return lu_object_fid(&lov->lo_cl.co_lu);
327 }
328
329 static inline struct lov_stripe_md_entry *lov_lse(struct lov_object *lov, int i)
330 {
331         LASSERT(lov->lo_lsm != NULL);
332         LASSERT(i < lov->lo_lsm->lsm_entry_count);
333
334         return lov->lo_lsm->lsm_entries[i];
335 }
336
337 static inline unsigned int lov_flr_state(const struct lov_object *lov)
338 {
339         if (lov->lo_type != LLT_COMP)
340                 return LCM_FL_NONE;
341
342         return lov->u.composite.lo_flags & LCM_FL_FLR_MASK;
343 }
344
345 static inline bool lov_is_flr(const struct lov_object *lov)
346 {
347         return lov_flr_state(lov) != LCM_FL_NONE;
348 }
349
350 static inline struct lov_layout_entry *lov_entry(struct lov_object *lov, int i)
351 {
352         LASSERT(lov->lo_type == LLT_COMP);
353         LASSERTF(i < lov->u.composite.lo_entry_count,
354                  DFID" entry %d, entry_count %d\n",
355                  PFID(lov_object_fid(lov)),
356                  i, lov->u.composite.lo_entry_count);
357
358         return &lov->u.composite.lo_entries[i];
359 }
360
361 static inline struct lov_layout_raid0 *lov_r0(struct lov_object *lov, int i)
362 {
363         return &lov_entry(lov, i)->lle_raid0;
364 }
365
366 #define lov_for_layout_entry(lov, entry, start, end)                    \
367         if (lov->u.composite.lo_entries &&                              \
368             lov->u.composite.lo_entry_count > 0)                        \
369                 for (entry = lov_entry(lov, start);                     \
370                      entry <= lov_entry(lov, end); entry++)
371
372 #define lov_foreach_layout_entry(lov, entry)                            \
373         lov_for_layout_entry(lov, entry, 0,                             \
374                              (lov)->u.composite.lo_entry_count - 1)
375
376 #define lov_foreach_mirror_layout_entry(lov, entry, lre)                \
377         lov_for_layout_entry(lov, entry, (lre)->lre_start, (lre)->lre_end)
378
379 static inline struct lov_mirror_entry *
380 lov_mirror_entry(struct lov_object *lov, int i)
381 {
382         LASSERTF(i < lov->u.composite.lo_mirror_count,
383                  DFID" entry %d, mirror_count %d\n",
384                  PFID(lov_object_fid(lov)),
385                  i, lov->u.composite.lo_mirror_count);
386
387         return &lov->u.composite.lo_mirrors[i];
388 }
389
390 #define lov_foreach_mirror_entry(lov, lre)                              \
391         for (lre = lov_mirror_entry(lov, 0);                            \
392              lre <= lov_mirror_entry(lov,                               \
393                                 lov->u.composite.lo_mirror_count - 1);  \
394              lre++)
395
396 static inline unsigned
397 lov_layout_entry_index(struct lov_object *lov, struct lov_layout_entry *entry)
398 {
399         struct lov_layout_entry *first = &lov->u.composite.lo_entries[0];
400         unsigned int index = (unsigned int)(entry - first);
401
402         LASSERT(entry >= first);
403         LASSERT(index < lov->u.composite.lo_entry_count);
404
405         return index;
406 }
407
408 /* State lov_lock keeps for each sub-lock. */
409 struct lov_lock_sub {
410         /* sub-lock itself */
411         struct cl_lock          sub_lock;
412         /* Set if the sublock has ever been enqueued, meaning it may
413          * hold resources of underlying layers
414          */
415         unsigned int            sub_is_enqueued:1,
416                                 sub_initialized:1;
417         int                     sub_index;
418 };
419
420 /* lov-specific lock state. */
421 struct lov_lock {
422         struct cl_lock_slice    lls_cl;
423         /* Number of sub-locks in this lock */
424         int                     lls_nr;
425         /* sublock array */
426         struct lov_lock_sub     lls_sub[0];
427 };
428
429 /* Bottom half. */
430 struct lovsub_device {
431         struct cl_device   acid_cl;
432         struct cl_device  *acid_next;
433 };
434
435 struct lovsub_object {
436         struct cl_object_header lso_header;
437         struct cl_object        lso_cl;
438         struct lov_object      *lso_super;
439         int                     lso_index;
440 };
441
442 /* Describe the environment settings for sublocks. */
443 struct lov_sublock_env {
444         const struct lu_env *lse_env;
445         struct cl_io        *lse_io;
446 };
447
448 struct lov_thread_info {
449         struct cl_object_conf   lti_stripe_conf;
450         struct lu_fid           lti_fid;
451         struct ost_lvb          lti_lvb;
452         struct cl_2queue        lti_cl2q;
453         struct cl_page_list     lti_plist;
454 };
455
456 /* State that lov_io maintains for every sub-io. */
457 struct lov_io_sub {
458         /* Linkage into a list (hanging off lov_io::lis_subios) */
459         struct list_head        sub_list;
460         /* Linkage into a list (hanging off lov_io::lis_active) of all
461          * sub-io's active for the current IO iteration.
462          */
463         struct list_head        sub_linkage;
464         unsigned int            sub_subio_index;
465         /* sub-io for a stripe. Ideally sub-io's can be stopped and resumed
466          * independently, with lov acting as a scheduler to maximize overall
467          * throughput.
468          */
469         struct cl_io            sub_io;
470         /* environment, in which sub-io executes. */
471         struct lu_env           *sub_env;
472         /* environment's refcheck. (cl_env_get()) */
473         __u16                   sub_refcheck;
474 };
475
476 /* IO state private for LOV. */
477 #define LIS_CACHE_ENTRY_NONE    -ENOENT
478 struct lov_io {
479         /* super-class */
480         struct cl_io_slice lis_cl;
481
482         /* FLR: index to lo_mirrors. Valid only if lov_is_flr() returns true.
483          *
484          * The mirror index of this io. Preserved over cl_io_init()
485          * if io->ci_ndelay_tried is greater than zero.
486          */
487         int                     lis_mirror_index;
488         /* FLR: the layout gen when lis_mirror_index was cached. The
489          * mirror index makes sense only when the layout gen doesn't
490          * change.
491          */
492         int                     lis_mirror_layout_gen;
493
494         /* fields below this will be initialized in lov_io_init(). */
495         unsigned int lis_preserved;
496
497         /* Pointer to obj slice. Duplicate of lov_io::lis_cl::cis_object. */
498         struct lov_object *lis_object;
499         /*
500          * Original end-of-io position for this IO, set by the upper layer as
501          * cl_io::u::ci_rw::pos + cl_io::u::ci_rw::count. lov remembers this,
502          * changes pos and count to fit IO into a single stripe and uses saved
503          * value to determine when IO iterations have to stop.
504          *
505          * This is used only for CIT_READ and CIT_WRITE io's.
506          */
507         loff_t             lis_io_endpos;
508
509         /* Record stripe index before the truncate size, used for setting OST
510          * obj size for truncate. LU-14128. lis_trunc_stripe_index[i] refers to
511          * lov_object.u.composite.lo_entries[i].
512          */
513         int *lis_trunc_stripe_index;
514
515         /* starting position within a file, for the current io loop iteration
516          * (stripe), used by ci_io_loop().
517          */
518         loff_t                  lis_pos;
519         /* end position with in a file, for the current stripe io. This is
520          * exclusive (i.e., next offset after last byte affected by io).
521          */
522         loff_t                  lis_endpos;
523         int                     lis_nr_subios;
524
525         /* the index of ls_single_subio in ls_subios array */
526         int                     lis_single_subio_index;
527         struct lov_io_sub       lis_single_subio;
528
529         /* List of active sub-io's. Active sub-io's are under the range
530          * of [lis_pos, lis_endpos).
531          */
532         struct list_head        lis_active;
533         /* All sub-io's created in this lov_io. */
534         struct list_head        lis_subios;
535         /* Cached results from stripe & offset calculations for page init */
536         int                     lis_cached_entry;
537         int                     lis_cached_stripe;
538         loff_t                  lis_cached_off;
539         loff_t                  lis_cached_suboff;
540         struct lov_io_sub       *lis_cached_sub;
541 };
542
543 struct lov_session {
544         struct lov_io          ls_io;
545         struct lov_sublock_env ls_subenv;
546 };
547
548 extern struct lu_device_type lov_device_type;
549 extern struct lu_device_type lovsub_device_type;
550
551 extern struct lu_context_key lov_key;
552 extern struct lu_context_key lov_session_key;
553
554 extern struct kmem_cache *lov_lock_kmem;
555 extern struct kmem_cache *lov_object_kmem;
556 extern struct kmem_cache *lov_thread_kmem;
557 extern struct kmem_cache *lov_session_kmem;
558
559 extern struct kmem_cache *lovsub_object_kmem;
560
561 int   lov_lock_init_composite(const struct lu_env *env, struct cl_object *obj,
562                            struct cl_lock *lock, const struct cl_io *io);
563 int   lov_lock_init_empty(const struct lu_env *env, struct cl_object *obj,
564                            struct cl_lock *lock, const struct cl_io *io);
565 int   lov_io_init_composite(const struct lu_env *env, struct cl_object *obj,
566                            struct cl_io *io);
567 int   lov_io_init_empty(const struct lu_env *env, struct cl_object *obj,
568                            struct cl_io *io);
569 int   lov_io_init_released(const struct lu_env *env, struct cl_object *obj,
570                            struct cl_io *io);
571
572 struct lov_io_sub *lov_sub_get(const struct lu_env *env, struct lov_io *lio,
573                                int stripe);
574
575 enum {
576         CP_LOV_INDEX_EMPTY = -1U,
577 };
578
579 static inline bool lov_page_is_empty(const struct cl_page *cp)
580 {
581         return cp->cp_lov_index == CP_LOV_INDEX_EMPTY;
582 }
583
584 int   lov_page_init_empty(const struct lu_env *env, struct cl_object *obj,
585                            struct cl_page *page, pgoff_t index);
586 int   lov_page_init_composite(const struct lu_env *env, struct cl_object *obj,
587                            struct cl_page *page, pgoff_t index);
588 int   lov_page_init_foreign(const struct lu_env *env, struct cl_object *obj,
589                              struct cl_page *page, pgoff_t index);
590 struct lu_object *lov_object_alloc(const struct lu_env *env,
591                                       const struct lu_object_header *hdr,
592                                       struct lu_device *dev);
593
594 struct lu_object *lovsub_object_alloc(const struct lu_env *env,
595                                       const struct lu_object_header *hdr,
596                                       struct lu_device *dev);
597
598 int lov_io_layout_at(struct lov_io *lio, __u64 offset);
599 bool lov_io_layout_at_confirm(struct lov_io *lio, int entry, __u64 offset);
600
601 #define lov_foreach_target(lov, var)                    \
602         for (var = 0; var < lov_targets_nr(lov); ++var)
603
604 static inline struct lu_extent *lov_io_extent(struct lov_io *io, int i)
605 {
606         return &lov_lse(io->lis_object, i)->lsme_extent;
607 }
608
609 /* For layout entries within @ext. */
610 #define lov_foreach_io_layout(ind, lio, ext)                            \
611         for (ind = lov_io_layout_at(lio, (ext)->e_start);               \
612              ind >= 0 &&                                                \
613              lu_extent_is_overlapped(lov_io_extent(lio, ind), ext);     \
614              ind = lov_io_layout_at(lio, lov_io_extent(lio, ind)->e_end))
615
616 /*
617  * Type conversions.
618  *
619  * Accessors.
620  */
621 static inline struct lov_session *lov_env_session(const struct lu_env *env)
622 {
623         struct lov_session *ses;
624
625         ses = lu_context_key_get(env->le_ses, &lov_session_key);
626         LASSERT(ses != NULL);
627         return ses;
628 }
629
630 static inline struct lov_io *lov_env_io(const struct lu_env *env)
631 {
632         return &lov_env_session(env)->ls_io;
633 }
634
635 static inline int lov_is_object(const struct lu_object *obj)
636 {
637         return obj->lo_dev->ld_type == &lov_device_type;
638 }
639
640 static inline int lovsub_is_object(const struct lu_object *obj)
641 {
642         return obj->lo_dev->ld_type == &lovsub_device_type;
643 }
644
645 static inline struct lu_device *lov2lu_dev(struct lov_device *lov)
646 {
647         return &lov->ld_cl.cd_lu_dev;
648 }
649
650 static inline struct lov_device *lu2lov_dev(const struct lu_device *d)
651 {
652         LINVRNT(d->ld_type == &lov_device_type);
653         return container_of(d, struct lov_device, ld_cl.cd_lu_dev);
654 }
655
656 static inline struct cl_device *lovsub2cl_dev(struct lovsub_device *lovsub)
657 {
658         return &lovsub->acid_cl;
659 }
660
661 static inline struct lu_device *lovsub2lu_dev(struct lovsub_device *lovsub)
662 {
663         return &lovsub2cl_dev(lovsub)->cd_lu_dev;
664 }
665
666 static inline struct lovsub_device *lu2lovsub_dev(const struct lu_device *d)
667 {
668         LINVRNT(d->ld_type == &lovsub_device_type);
669         return container_of(d, struct lovsub_device, acid_cl.cd_lu_dev);
670 }
671
672 static inline struct lovsub_device *cl2lovsub_dev(const struct cl_device *d)
673 {
674         LINVRNT(d->cd_lu_dev.ld_type == &lovsub_device_type);
675         return container_of(d, struct lovsub_device, acid_cl);
676 }
677
678 static inline struct lu_object *lov2lu(struct lov_object *lov)
679 {
680         return &lov->lo_cl.co_lu;
681 }
682
683 static inline struct cl_object *lov2cl(struct lov_object *lov)
684 {
685         return &lov->lo_cl;
686 }
687
688 static inline struct lov_object *lu2lov(const struct lu_object *obj)
689 {
690         LINVRNT(lov_is_object(obj));
691         return container_of(obj, struct lov_object, lo_cl.co_lu);
692 }
693
694 static inline struct lov_object *cl2lov(const struct cl_object *obj)
695 {
696         LINVRNT(lov_is_object(&obj->co_lu));
697         return container_of(obj, struct lov_object, lo_cl);
698 }
699
700 static inline struct lu_object *lovsub2lu(struct lovsub_object *los)
701 {
702         return &los->lso_cl.co_lu;
703 }
704
705 static inline struct cl_object *lovsub2cl(struct lovsub_object *los)
706 {
707         return &los->lso_cl;
708 }
709
710 static inline struct lovsub_object *cl2lovsub(const struct cl_object *obj)
711 {
712         LINVRNT(lovsub_is_object(&obj->co_lu));
713         return container_of(obj, struct lovsub_object, lso_cl);
714 }
715
716 static inline struct lovsub_object *lu2lovsub(const struct lu_object *obj)
717 {
718         LINVRNT(lovsub_is_object(obj));
719         return container_of(obj, struct lovsub_object, lso_cl.co_lu);
720 }
721
722 static inline struct lov_lock *cl2lov_lock(const struct cl_lock_slice *slice)
723 {
724         LINVRNT(lov_is_object(&slice->cls_obj->co_lu));
725         return container_of(slice, struct lov_lock, lls_cl);
726 }
727
728 static inline struct lov_io *cl2lov_io(const struct lu_env *env,
729                                 const struct cl_io_slice *ios)
730 {
731         struct lov_io *lio;
732
733         lio = container_of(ios, struct lov_io, lis_cl);
734         LASSERT(lio == lov_env_io(env));
735         return lio;
736 }
737
738 static inline int lov_targets_nr(const struct lov_device *lov)
739 {
740         return lov->ld_lov->desc.ld_tgt_count;
741 }
742
743 static inline struct lov_thread_info *lov_env_info(const struct lu_env *env)
744 {
745         struct lov_thread_info *info;
746
747         info = lu_context_key_get(&env->le_ctx, &lov_key);
748         LASSERT(info != NULL);
749         return info;
750 }
751
752 /* lov_pack.c */
753 int lov_getstripe(const struct lu_env *env, struct lov_object *obj,
754                   struct lov_stripe_md *lsm, struct lov_user_md __user *lump,
755                   size_t size);
756
757 #endif