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