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