Whamcloud - gitweb
b0dfdbfadbf65e23cec10b397574d514bb462719
[fs/lustre-release.git] / lustre / lod / lod_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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright  2009 Sun Microsystems, Inc. All rights reserved
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2016, 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  * lustre/lod/lod_internal.h
33  *
34  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
35  * Author: Mikhail Pershin <mike.pershin@intel.com>
36  */
37
38 #ifndef _LOD_INTERNAL_H
39 #define _LOD_INTERNAL_H
40
41 #include <libcfs/libcfs.h>
42 #include <uapi/linux/lustre/lustre_cfg.h>
43 #include <obd.h>
44 #include <dt_object.h>
45
46 #define LOV_USES_ASSIGNED_STRIPE        0
47 #define LOV_USES_DEFAULT_STRIPE         1
48
49 /* Special values to remove LOV EA from disk */
50 #define LOVEA_DELETE_VALUES(size, count, offset, pool)                  \
51         ((size) == 0 && (count) == 0 &&                                 \
52          (offset) == (typeof(offset))(-1) && (pool) == NULL)
53
54 #define LMVEA_DELETE_VALUES(count, offset)                              \
55         ((count) == 0 && (offset) == (typeof(offset))(-1))
56
57 #define LOV_OFFSET_DEFAULT              ((__u16)-1)
58
59 struct lod_qos_rr {
60         spinlock_t               lqr_alloc;     /* protect allocation index */
61         __u32                    lqr_start_idx; /* start index of new inode */
62         __u32                    lqr_offset_idx;/* aliasing for start_idx */
63         int                      lqr_start_count;/* reseed counter */
64         struct ost_pool          lqr_pool;      /* round-robin optimized list */
65         unsigned long            lqr_dirty:1;   /* recalc round-robin list */
66 };
67
68 struct pool_desc {
69         char                     pool_name[LOV_MAXPOOLNAME + 1];
70         struct ost_pool          pool_obds;     /* pool members */
71         atomic_t                 pool_refcount;
72         struct lod_qos_rr        pool_rr;
73         struct hlist_node        pool_hash;     /* access by poolname */
74         struct list_head         pool_list;
75         struct proc_dir_entry   *pool_proc_entry;
76         struct obd_device       *pool_lobd;     /* owner */
77 };
78
79 #define pool_tgt_count(p) ((p)->pool_obds.op_count)
80 #define pool_tgt_array(p)  ((p)->pool_obds.op_array)
81 #define pool_tgt_rw_sem(p) ((p)->pool_obds.op_rw_sem)
82
83 struct lod_qos {
84         struct list_head         lq_oss_list;
85         struct rw_semaphore      lq_rw_sem;
86         __u32                    lq_active_oss_count;
87         unsigned int             lq_prio_free;   /* priority for free space */
88         unsigned int             lq_threshold_rr;/* priority for rr */
89         struct lod_qos_rr        lq_rr;          /* round robin qos data */
90         bool                     lq_dirty:1,     /* recalc qos data */
91                                  lq_same_space:1,/* the ost's all have approx.
92                                                     the same space avail */
93                                  lq_reset:1;     /* zero current penalties */
94 };
95
96 struct lod_qos_oss {
97         struct obd_uuid          lqo_uuid;      /* ptlrpc's c_remote_uuid */
98         struct list_head         lqo_oss_list;  /* link to lov_qos */
99         __u64                    lqo_bavail;    /* total bytes avail on OSS */
100         __u64                    lqo_penalty;   /* current penalty */
101         __u64                    lqo_penalty_per_obj; /* penalty decrease
102                                                          every obj*/
103         time_t                   lqo_used;      /* last used time, seconds */
104         __u32                    lqo_ost_count; /* number of osts on this oss */
105 };
106
107 struct ltd_qos {
108         struct lod_qos_oss      *ltq_oss;       /* oss info */
109         __u64                    ltq_penalty;   /* current penalty */
110         __u64                    ltq_penalty_per_obj; /* penalty decrease
111                                                          every obj*/
112         __u64                    ltq_weight;    /* net weighting */
113         time_t                   ltq_used;      /* last used time, seconds */
114         bool                     ltq_usable:1;  /* usable for striping */
115 };
116
117 struct lod_tgt_desc {
118         struct dt_device  *ltd_tgt;
119         struct list_head   ltd_kill;
120         struct obd_export *ltd_exp;
121         struct obd_uuid    ltd_uuid;
122         __u32              ltd_gen;
123         __u32              ltd_index;
124         struct ltd_qos     ltd_qos; /* qos info per target */
125         struct obd_statfs  ltd_statfs;
126         struct ptlrpc_thread    *ltd_recovery_thread;
127         unsigned long      ltd_active:1,/* is this target up for requests */
128                            ltd_activate:1,/* should  target be activated */
129                            ltd_reap:1,  /* should this target be deleted */
130                            ltd_got_update_log:1, /* Already got update log */
131                            ltd_connecting:1; /* target is connecting */
132 };
133
134 #define TGT_PTRS                256     /* number of pointers at 1st level */
135 #define TGT_PTRS_PER_BLOCK      256     /* number of pointers at 2nd level */
136
137 struct lod_tgt_desc_idx {
138         struct lod_tgt_desc *ldi_tgt[TGT_PTRS_PER_BLOCK];
139 };
140
141 #define LTD_TGT(ltd, index)      \
142          ((ltd)->ltd_tgt_idx[(index) / \
143          TGT_PTRS_PER_BLOCK]->ldi_tgt[(index) % TGT_PTRS_PER_BLOCK])
144
145 #define OST_TGT(lod, index)   LTD_TGT(&lod->lod_ost_descs, index)
146 #define MDT_TGT(lod, index)   LTD_TGT(&lod->lod_mdt_descs, index)
147 struct lod_tgt_descs {
148         /* list of known TGTs */
149         struct lod_tgt_desc_idx *ltd_tgt_idx[TGT_PTRS];
150         /* Size of the lod_tgts array, granted to be a power of 2 */
151         __u32                   ltd_tgts_size;
152         /* number of registered TGTs */
153         __u32                   ltd_tgtnr;
154         /* bitmap of TGTs available */
155         struct cfs_bitmap       *ltd_tgt_bitmap;
156         /* TGTs scheduled to be deleted */
157         __u32                   ltd_death_row;
158         /* Table refcount used for delayed deletion */
159         int                     ltd_refcount;
160         /* mutex to serialize concurrent updates to the tgt table */
161         struct mutex            ltd_mutex;
162         /* read/write semaphore used for array relocation */
163         struct rw_semaphore     ltd_rw_sem;
164 };
165
166 struct lod_device {
167         struct dt_device      lod_dt_dev;
168         struct obd_export    *lod_child_exp;
169         struct dt_device     *lod_child;
170         struct proc_dir_entry *lod_proc_entry;
171         struct lprocfs_stats *lod_stats;
172         spinlock_t            lod_connects_lock;
173         int                   lod_connects;
174         unsigned int          lod_recovery_completed:1,
175                               lod_initialized:1,
176                               lod_lmv_failout:1,
177                               lod_child_got_update_log:1;
178
179         /* lov settings descriptor storing static information */
180         struct lov_desc       lod_desc;
181
182         /* protect ld_active_tgt_count, ltd_active and lod_md_root */
183         spinlock_t           lod_lock;
184
185         /* Description of OST */
186         struct lod_tgt_descs  lod_ost_descs;
187         /* Description of MDT */
188         struct lod_tgt_descs  lod_mdt_descs;
189
190         /* Recovery thread for lod_child */
191         struct ptlrpc_thread    lod_child_recovery_thread;
192
193         /* maximum EA size underlied OSD may have */
194         unsigned int          lod_osd_max_easize;
195         /* maximum size of MDT stripe for Data-on-MDT files. */
196         unsigned int          lod_dom_max_stripesize;
197
198         /*FIXME: When QOS and pool is implemented for MDT, probably these
199          * structure should be moved to lod_tgt_descs as well.
200          */
201         /* QoS info per LOD */
202         struct lod_qos        lod_qos; /* qos info per lod */
203
204         /* OST pool data */
205         struct ost_pool         lod_pool_info; /* all OSTs in a packed array */
206         int                     lod_pool_count;
207         struct cfs_hash        *lod_pools_hash_body; /* used for key access */
208         struct list_head        lod_pool_list; /* used for sequential access */
209         struct proc_dir_entry  *lod_pool_proc_entry;
210
211         enum lustre_sec_part   lod_sp_me;
212
213         struct proc_dir_entry *lod_symlink;
214
215         /* ROOT object, used to fetch FS default striping */
216         struct lod_object      *lod_md_root;
217 };
218
219 #define lod_osts        lod_ost_descs.ltd_tgts
220 #define lod_ost_bitmap  lod_ost_descs.ltd_tgt_bitmap
221 #define lod_ostnr       lod_ost_descs.ltd_tgtnr
222 #define lod_osts_size   lod_ost_descs.ltd_tgts_size
223 #define ltd_ost         ltd_tgt
224 #define lod_ost_desc    lod_tgt_desc
225
226 #define lod_mdts                lod_mdt_descs.ltd_tgts
227 #define lod_mdt_bitmap          lod_mdt_descs.ltd_tgt_bitmap
228 #define lod_remote_mdt_count    lod_mdt_descs.ltd_tgtnr
229 #define lod_mdts_size           lod_mdt_descs.ltd_tgts_size
230 #define ltd_mdt                 ltd_tgt
231 #define lod_mdt_desc            lod_tgt_desc
232
233 struct lod_layout_component {
234         struct lu_extent          llc_extent;
235         __u32                     llc_id;
236         __u32                     llc_flags;
237         __u32                     llc_stripe_size;
238         __u32                     llc_pattern;
239         __u16                     llc_layout_gen;
240         __u16                     llc_stripe_offset;
241         __u16                     llc_stripe_count;
242         __u16                     llc_stripes_allocated;
243         char                     *llc_pool;
244         /* ost list specified with LOV_USER_MAGIC_SPECIFIC lum */
245         struct ost_pool           llc_ostlist;
246         struct dt_object        **llc_stripe;
247 };
248
249 struct lod_default_striping {
250         /* default LOV */
251         /* current layout component count */
252         __u16                           lds_def_comp_cnt;
253         /* the largest comp count ever used */
254         __u32                           lds_def_comp_size_cnt;
255         struct lod_layout_component     *lds_def_comp_entries;
256         /* default LMV */
257         __u32                           lds_dir_def_stripe_count;
258         __u32                           lds_dir_def_stripe_offset;
259         __u32                           lds_dir_def_hash_type;
260                                         /* default file striping flags (LOV) */
261         __u32                           lds_def_striping_set:1,
262                                         lds_def_striping_is_composite:1,
263                                         /* default dir striping flags (LMV) */
264                                         lds_dir_def_striping_set:1;
265 };
266
267 struct lod_object {
268         /* common fields for both files and directories */
269         struct dt_object                ldo_obj;
270         union {
271                 /* file stripe (LOV) */
272                 struct {
273                         __u32           ldo_layout_gen;
274                         /* Layout component count for a regular file.
275                          * It equals to 1 for non-composite layout. */
276                         __u16           ldo_comp_cnt;
277                         __u32           ldo_is_composite:1,
278                                         ldo_comp_cached:1;
279                 };
280                 /* directory stripe (LMV) */
281                 struct {
282                         /* Slave stripe count for striped directory. */
283                         __u16           ldo_dir_stripe_count;
284                         /* How many stripes allocated for a striped directory */
285                         __u16           ldo_dir_stripes_allocated;
286                         __u32           ldo_dir_stripe_offset;
287                         __u32           ldo_dir_hash_type;
288                         /* Is a slave stripe of striped directory? */
289                         __u32           ldo_dir_slave_stripe:1,
290                                         ldo_dir_striped:1,
291                                         /* the stripe has been loaded */
292                                         ldo_dir_stripe_loaded:1;
293                         /*
294                          * default striping is not cached, so this field is
295                          * invalid after create, make sure it's used by
296                          * lod_dir_striping_create_internal() only.
297                          */
298                         struct lod_default_striping     *ldo_def_striping;
299                 };
300         };
301         /* file stripe (LOV) */
302         struct lod_layout_component     *ldo_comp_entries;
303         /* slave stripes of striped directory (LMV) */
304         struct dt_object                **ldo_stripe;
305 };
306
307 static inline int lod_set_pool(char **pool, const char *new_pool)
308 {
309         int len;
310
311         if (*pool == new_pool)
312                 return 0;
313
314         if (*pool != NULL) {
315                 len = strlen(*pool) + 1;
316                 OBD_FREE(*pool, len);
317                 *pool = NULL;
318         }
319         if (new_pool != NULL) {
320                 len = strlen(new_pool) + 1;
321                 OBD_ALLOC(*pool, len);
322                 if (*pool == NULL)
323                         return -ENOMEM;
324                 strlcpy(*pool, new_pool, len);
325         }
326         return 0;
327 }
328
329 static inline int lod_set_def_pool(struct lod_default_striping *lds,
330                                    int i, const char *new_pool)
331 {
332         return lod_set_pool(&lds->lds_def_comp_entries[i].llc_pool,
333                             new_pool);
334 }
335
336 static inline int lod_obj_set_pool(struct lod_object *lo, int i,
337                                    const char *new_pool)
338 {
339         return lod_set_pool(&lo->ldo_comp_entries[i].llc_pool,
340                             new_pool);
341 }
342
343 /**
344  * Create new layout generation.
345  *
346  * The only requirement for layout generation is that it changes when
347  * the layout is modified, so a circular counter is sufficient for the
348  * low rate of layout modifications.
349  *
350  * Layout generation is also used to generate unique component ID.
351  * To detect generation overflow, we preserve the highest bit of the
352  * generation when it wrapped.
353  */
354 static inline void lod_obj_inc_layout_gen(struct lod_object *lo)
355 {
356         __u32 preserve = lo->ldo_layout_gen & ~LCME_ID_MASK;
357         lo->ldo_layout_gen++;
358         lo->ldo_layout_gen |= preserve;
359         /* Zero is not a valid generation */
360         if (unlikely((lo->ldo_layout_gen & LCME_ID_MASK) == 0))
361                 lo->ldo_layout_gen++;
362 }
363
364 struct lod_it {
365         struct dt_object        *lit_obj; /* object from the layer below */
366         /* stripe offset of iteration */
367         __u32                   lit_stripe_index;
368         __u32                   lit_attr;
369         struct dt_it            *lit_it;  /* iterator from the layer below */
370 };
371
372 struct lod_thread_info {
373         /* per-thread buffer for LOV EA, may be vmalloc'd */
374         void                           *lti_ea_store;
375         __u32                           lti_ea_store_size;
376         /* per-thread buffer for LMV EA */
377         struct lu_buf                   lti_buf;
378         struct ost_id                   lti_ostid;
379         struct lu_fid                   lti_fid;
380         struct obd_statfs               lti_osfs;
381         struct lu_attr                  lti_attr;
382         struct lod_it                   lti_it;
383         struct ldlm_res_id              lti_res_id;
384         struct ost_pool                 lti_inuse_osts;
385         /* used to hold lu_dirent, sizeof(struct lu_dirent) + NAME_MAX */
386         char                            lti_key[sizeof(struct lu_dirent) +
387                                                 NAME_MAX];
388         struct dt_object_format         lti_format;
389         struct lu_name                  lti_name;
390         struct lu_buf                   lti_linkea_buf;
391         struct dt_insert_rec            lti_dt_rec;
392         struct llog_catid               lti_cid;
393         struct llog_cookie              lti_cookie;
394         struct lustre_cfg               lti_lustre_cfg;
395         /* used to store parent default striping in create */
396         struct lod_default_striping     lti_def_striping;
397         struct filter_fid lti_ff;
398 };
399
400 extern const struct lu_device_operations lod_lu_ops;
401
402 static inline int lu_device_is_lod(struct lu_device *d)
403 {
404         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &lod_lu_ops);
405 }
406
407 static inline struct lod_device* lu2lod_dev(struct lu_device *d)
408 {
409         LASSERT(lu_device_is_lod(d));
410         return container_of0(d, struct lod_device, lod_dt_dev.dd_lu_dev);
411 }
412
413 static inline struct lu_device *lod2lu_dev(struct lod_device *d)
414 {
415         return &d->lod_dt_dev.dd_lu_dev;
416 }
417
418 static inline struct obd_device *lod2obd(struct lod_device *d)
419 {
420         return d->lod_dt_dev.dd_lu_dev.ld_obd;
421 }
422
423 static inline struct lod_device *dt2lod_dev(struct dt_device *d)
424 {
425         LASSERT(lu_device_is_lod(&d->dd_lu_dev));
426         return container_of0(d, struct lod_device, lod_dt_dev);
427 }
428
429 static inline struct lod_object *lu2lod_obj(struct lu_object *o)
430 {
431         LASSERT(ergo(o != NULL, lu_device_is_lod(o->lo_dev)));
432         return container_of0(o, struct lod_object, ldo_obj.do_lu);
433 }
434
435 static inline struct lu_object *lod2lu_obj(struct lod_object *obj)
436 {
437         return &obj->ldo_obj.do_lu;
438 }
439
440 static inline struct lod_object *lod_obj(const struct lu_object *o)
441 {
442         LASSERT(lu_device_is_lod(o->lo_dev));
443         return container_of0(o, struct lod_object, ldo_obj.do_lu);
444 }
445
446 static inline struct lod_object *lod_dt_obj(const struct dt_object *d)
447 {
448         return lod_obj(&d->do_lu);
449 }
450
451 static inline struct dt_object* lod_object_child(struct lod_object *o)
452 {
453         return container_of0(lu_object_next(lod2lu_obj(o)),
454                         struct dt_object, do_lu);
455 }
456
457 static inline bool lod_obj_is_striped(struct dt_object *dt)
458 {
459         struct lod_object *lo = lod_dt_obj(dt);
460         int i;
461
462         if (!dt_object_exists(dt_object_child(dt)))
463                 return false;
464
465         if (S_ISDIR(dt->do_lu.lo_header->loh_attr))
466                 return lo->ldo_dir_stripe_count != 0;
467
468         for (i = 0; i < lo->ldo_comp_cnt; i++) {
469                 if (lo->ldo_comp_entries[i].llc_stripe == NULL)
470                         continue;
471                 LASSERT(lo->ldo_comp_entries[i].llc_stripe_count > 0);
472                 return true;
473         }
474         return false;
475 }
476
477 extern struct lu_context_key lod_thread_key;
478
479 static inline struct lod_thread_info *lod_env_info(const struct lu_env *env)
480 {
481         struct lod_thread_info *info;
482         info = lu_context_key_get(&env->le_ctx, &lod_thread_key);
483         LASSERT(info);
484         return info;
485 }
486
487 static inline struct lu_name *
488 lod_name_get(const struct lu_env *env, const void *area, int len)
489 {
490         struct lu_name *lname;
491
492         lname = &lod_env_info(env)->lti_name;
493         lname->ln_name = area;
494         lname->ln_namelen = len;
495         return lname;
496 }
497
498 #define lod_foreach_ost(__dev, index)   \
499         if ((__dev)->lod_osts_size > 0) \
500                 cfs_foreach_bit((__dev)->lod_ost_bitmap, (index))
501
502 #define lod_foreach_mdt(mdt_dev, index) \
503         cfs_foreach_bit((mdt_dev)->lod_mdt_bitmap, (index))
504
505 /* lod_dev.c */
506 extern struct kmem_cache *lod_object_kmem;
507 int lod_fld_lookup(const struct lu_env *env, struct lod_device *lod,
508                    const struct lu_fid *fid, __u32 *tgt, int *flags);
509 int lod_sub_init_llog(const struct lu_env *env, struct lod_device *lod,
510                       struct dt_device *dt);
511 void lod_sub_fini_llog(const struct lu_env *env,
512                        struct dt_device *dt, struct ptlrpc_thread *thread);
513 int lodname2mdt_index(char *lodname, __u32 *mdt_index);
514 extern void target_recovery_fini(struct obd_device *obd);
515
516 /* lod_lov.c */
517 void lod_getref(struct lod_tgt_descs *ltd);
518 void lod_putref(struct lod_device *lod, struct lod_tgt_descs *ltd);
519 int lod_add_device(const struct lu_env *env, struct lod_device *lod,
520                    char *osp, unsigned index, unsigned gen, int mdt_index,
521                    char *type, int active);
522 int lod_del_device(const struct lu_env *env, struct lod_device *lod,
523                    struct lod_tgt_descs *ltd, char *osp, unsigned idx,
524                    unsigned gen, bool for_ost);
525 int lod_fini_tgt(const struct lu_env *env, struct lod_device *lod,
526                  struct lod_tgt_descs *ltd, bool for_ost);
527 int lod_load_striping_locked(const struct lu_env *env, struct lod_object *lo);
528 int lod_load_striping(const struct lu_env *env, struct lod_object *lo);
529
530 int lod_get_ea(const struct lu_env *env, struct lod_object *lo,
531                const char *name);
532 static inline int
533 lod_get_lov_ea(const struct lu_env *env, struct lod_object *lo)
534 {
535         return lod_get_ea(env, lo, XATTR_NAME_LOV);
536 }
537
538 static inline int
539 lod_get_lmv_ea(const struct lu_env *env, struct lod_object *lo)
540 {
541         return lod_get_ea(env, lo, XATTR_NAME_LMV);
542 }
543
544 static inline int
545 lod_get_default_lmv_ea(const struct lu_env *env, struct lod_object *lo)
546 {
547         return lod_get_ea(env, lo, XATTR_NAME_DEFAULT_LMV);
548 }
549
550 static inline void
551 lod_comp_set_init(struct lod_layout_component *entry)
552 {
553         entry->llc_flags |= LCME_FL_INIT;
554 }
555
556 static inline void
557 lod_comp_unset_init(struct lod_layout_component *entry)
558 {
559         entry->llc_flags &= ~LCME_FL_INIT;
560 }
561
562 static inline bool
563 lod_comp_inited(const struct lod_layout_component *entry)
564 {
565         return entry->llc_flags & LCME_FL_INIT;
566 }
567
568 /**
569  * For a PFL file, some of its component could be un-instantiated, so
570  * that their lov_ost_data_v1 array is not needed, we'd use this function
571  * to reduce the LOVEA buffer size.
572  *
573  * Note: if llc_ostlist contains value, we'd need lov_ost_data_v1 array to
574  * save the specified OST index list.
575  */
576 static inline void
577 lod_comp_shrink_stripe_count(struct lod_layout_component *lod_comp,
578                              __u16 *stripe_count)
579 {
580         /**
581          * Need one lov_ost_data_v1 to store invalid ost_idx, please refer to
582          * lod_parse_striping()
583          */
584         if (!lod_comp_inited(lod_comp) && lod_comp->llc_ostlist.op_count == 0)
585                 *stripe_count = 1;
586 }
587
588 void lod_fix_desc(struct lov_desc *desc);
589 void lod_fix_desc_qos_maxage(__u32 *val);
590 void lod_fix_desc_pattern(__u32 *val);
591 void lod_fix_desc_stripe_count(__u32 *val);
592 void lod_fix_desc_stripe_size(__u64 *val);
593 int lod_pools_init(struct lod_device *m, struct lustre_cfg *cfg);
594 int lod_pools_fini(struct lod_device *m);
595 int lod_parse_striping(const struct lu_env *env, struct lod_object *mo,
596                        const struct lu_buf *buf);
597 int lod_parse_dir_striping(const struct lu_env *env, struct lod_object *lo,
598                            const struct lu_buf *buf);
599 int lod_initialize_objects(const struct lu_env *env, struct lod_object *mo,
600                            struct lov_ost_data_v1 *objs, int index);
601 int lod_verify_striping(struct lod_device *d, const struct lu_buf *buf,
602                         bool is_from_disk, __u64 start);
603 int lod_generate_lovea(const struct lu_env *env, struct lod_object *lo,
604                        struct lov_mds_md *lmm, int *lmm_size, bool is_dir);
605 int lod_ea_store_resize(struct lod_thread_info *info, size_t size);
606 int lod_def_striping_comp_resize(struct lod_default_striping *lds, __u16 count);
607 void lod_free_def_comp_entries(struct lod_default_striping *lds);
608 void lod_free_comp_entries(struct lod_object *lo);
609 int lod_alloc_comp_entries(struct lod_object *lo, int cnt);
610
611 /* lod_pool.c */
612 int lod_ost_pool_add(struct ost_pool *op, __u32 idx, unsigned int min_count);
613 int lod_ost_pool_remove(struct ost_pool *op, __u32 idx);
614 int lod_ost_pool_extend(struct ost_pool *op, unsigned int min_count);
615 struct pool_desc *lod_find_pool(struct lod_device *lod, char *poolname);
616 void lod_pool_putref(struct pool_desc *pool);
617 int lod_ost_pool_free(struct ost_pool *op);
618 int lod_pool_del(struct obd_device *obd, char *poolname);
619 int lod_ost_pool_init(struct ost_pool *op, unsigned int count);
620 extern struct cfs_hash_ops pool_hash_operations;
621 int lod_check_index_in_pool(__u32 idx, struct pool_desc *pool);
622 int lod_pool_new(struct obd_device *obd, char *poolname);
623 int lod_pool_add(struct obd_device *obd, char *poolname, char *ostname);
624 int lod_pool_remove(struct obd_device *obd, char *poolname, char *ostname);
625
626 struct lod_obj_stripe_cb_data {
627         union {
628                 const struct lu_attr    *locd_attr;
629                 struct ost_pool         *locd_inuse;
630         };
631         bool    locd_declare;
632 };
633
634 typedef int (*lod_obj_stripe_cb_t)(const struct lu_env *env,
635                                    struct lod_object *lo, struct dt_object *dt,
636                                    struct thandle *th, int stripe_idx,
637                                    struct lod_obj_stripe_cb_data *data);
638 /* lod_qos.c */
639 int lod_prepare_inuse(const struct lu_env *env, struct lod_object *lo);
640 int lod_prepare_create(const struct lu_env *env, struct lod_object *lo,
641                        struct lu_attr *attr, const struct lu_buf *buf,
642                        struct thandle *th);
643 int qos_add_tgt(struct lod_device*, struct lod_tgt_desc *);
644 int qos_del_tgt(struct lod_device *, struct lod_tgt_desc *);
645 void lod_qos_rr_init(struct lod_qos_rr *lqr);
646 int lod_use_defined_striping(const struct lu_env *, struct lod_object *,
647                              const struct lu_buf *);
648 int lod_obj_stripe_set_inuse_cb(const struct lu_env *env, struct lod_object *lo,
649                                 struct dt_object *dt, struct thandle *th,
650                                 int stripe_idx,
651                                 struct lod_obj_stripe_cb_data *data);
652 int lod_qos_parse_config(const struct lu_env *env, struct lod_object *lo,
653                          const struct lu_buf *buf);
654 int lod_qos_prep_create(const struct lu_env *env, struct lod_object *lo,
655                         struct lu_attr *attr, struct thandle *th,
656                         int comp_idx, struct ost_pool *inuse);
657 __u16 lod_comp_entry_stripe_count(struct lod_object *lo,
658                                   struct lod_layout_component *entry,
659                                   bool is_dir);
660 __u16 lod_get_stripe_count(struct lod_device *lod, struct lod_object *lo,
661                            __u16 stripe_count);
662
663 /* lproc_lod.c */
664 int lod_procfs_init(struct lod_device *lod);
665 void lod_procfs_fini(struct lod_device *lod);
666
667 /* lod_object.c */
668 extern struct dt_object_operations lod_obj_ops;
669 extern struct lu_object_operations lod_lu_obj_ops;
670
671 int lod_load_lmv_shards(const struct lu_env *env, struct lod_object *lo,
672                         struct lu_buf *buf, bool resize);
673 int lod_declare_striped_create(const struct lu_env *env, struct dt_object *dt,
674                                struct lu_attr *attr,
675                                const struct lu_buf *lovea, struct thandle *th);
676 int lod_striped_create(const struct lu_env *env, struct dt_object *dt,
677                         struct lu_attr *attr, struct dt_object_format *dof,
678                         struct thandle *th);
679 void lod_object_free_striping(const struct lu_env *env, struct lod_object *lo);
680
681 int lod_obj_for_each_stripe(const struct lu_env *env, struct lod_object *lo,
682                             struct thandle *th, lod_obj_stripe_cb_t cb,
683                             struct lod_obj_stripe_cb_data *data);
684
685 /* lod_sub_object.c */
686 struct thandle *lod_sub_get_thandle(const struct lu_env *env,
687                                     struct thandle *th,
688                                     const struct dt_object *sub_obj,
689                                     bool *record_update);
690 int lod_sub_declare_create(const struct lu_env *env, struct dt_object *dt,
691                            struct lu_attr *attr,
692                            struct dt_allocation_hint *hint,
693                            struct dt_object_format *dof, struct thandle *th);
694 int lod_sub_create(const struct lu_env *env, struct dt_object *dt,
695                    struct lu_attr *attr, struct dt_allocation_hint *hint,
696                    struct dt_object_format *dof, struct thandle *th);
697 int lod_sub_declare_ref_add(const struct lu_env *env, struct dt_object *dt,
698                             struct thandle *th);
699 int lod_sub_ref_add(const struct lu_env *env, struct dt_object *dt,
700                     struct thandle *th);
701 int lod_sub_declare_ref_del(const struct lu_env *env, struct dt_object *dt,
702                             struct thandle *th);
703 int lod_sub_ref_del(const struct lu_env *env, struct dt_object *dt,
704                     struct thandle *th);
705 int lod_sub_declare_destroy(const struct lu_env *env, struct dt_object *dt,
706                             struct thandle *th);
707 int lod_sub_destroy(const struct lu_env *env, struct dt_object *dt,
708                     struct thandle *th);
709 int lod_sub_declare_insert(const struct lu_env *env, struct dt_object *dt,
710                            const struct dt_rec *rec, const struct dt_key *key,
711                            struct thandle *th);
712 int lod_sub_insert(const struct lu_env *env, struct dt_object *dt,
713                    const struct dt_rec *rec, const struct dt_key *key,
714                    struct thandle *th, int ign);
715 int lod_sub_declare_delete(const struct lu_env *env, struct dt_object *dt,
716                            const struct dt_key *key, struct thandle *th);
717 int lod_sub_delete(const struct lu_env *env, struct dt_object *dt,
718                    const struct dt_key *name, struct thandle *th);
719 int lod_sub_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
720                               const struct lu_buf *buf, const char *name,
721                               int fl, struct thandle *th);
722 int lod_sub_xattr_set(const struct lu_env *env, struct dt_object *dt,
723                       const struct lu_buf *buf, const char *name, int fl,
724                       struct thandle *th);
725 int lod_sub_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
726                              const struct lu_attr *attr, struct thandle *th);
727 int lod_sub_attr_set(const struct lu_env *env, struct dt_object *dt,
728                      const struct lu_attr *attr, struct thandle *th);
729 int lod_sub_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
730                               const char *name, struct thandle *th);
731 int lod_sub_xattr_del(const struct lu_env *env, struct dt_object *dt,
732                       const char *name, struct thandle *th);
733 int lod_sub_declare_write(const struct lu_env *env, struct dt_object *dt,
734                           const struct lu_buf *buf, loff_t pos,
735                           struct thandle *th);
736 ssize_t lod_sub_write(const struct lu_env *env, struct dt_object *dt,
737                       const struct lu_buf *buf, loff_t *pos,
738                       struct thandle *th, int rq);
739 int lod_sub_declare_punch(const struct lu_env *env, struct dt_object *dt,
740                           __u64 start, __u64 end, struct thandle *th);
741 int lod_sub_punch(const struct lu_env *env, struct dt_object *dt,
742                   __u64 start, __u64 end, struct thandle *th);
743
744 int lod_sub_prep_llog(const struct lu_env *env, struct lod_device *lod,
745                       struct dt_device *dt, int index);
746 #endif