Whamcloud - gitweb
LU-14642 flr: allow layout version update from client/MDS
[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, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/lod/lod_internal.h
32  *
33  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
34  * Author: Mikhail Pershin <mike.pershin@intel.com>
35  */
36
37 #ifndef _LOD_INTERNAL_H
38 #define _LOD_INTERNAL_H
39
40 #include <libcfs/libcfs.h>
41 #include <uapi/linux/lustre/lustre_cfg.h>
42 #include <obd.h>
43 #include <dt_object.h>
44
45 #define LOV_USES_ASSIGNED_STRIPE        0
46 #define LOV_USES_DEFAULT_STRIPE         1
47
48 /* Special values to remove LOV EA from disk */
49 #define LOVEA_DELETE_VALUES(size, count, offset, pool)                  \
50         ((size) == 0 && (count) == 0 &&                                 \
51          (offset) == (typeof(offset))(-1) && (pool) == NULL)
52
53 #define LMVEA_DELETE_VALUES(count, offset)                              \
54         ((count) == 0 && (offset) == (typeof(offset))(-1))
55
56 struct pool_desc {
57         char                     pool_name[LOV_MAXPOOLNAME + 1];
58         struct lu_tgt_pool       pool_obds;     /* pool members */
59         atomic_t                 pool_refcount;
60         struct lu_qos_rr         pool_rr;
61         struct rhash_head        pool_hash;     /* access by poolname */
62         struct list_head         pool_list;
63         struct rcu_head          pool_rcu;
64         struct proc_dir_entry   *pool_proc_entry;
65         struct obd_device       *pool_lobd;     /* owner */
66         time64_t                 pool_spill_expire;
67         struct proc_dir_entry   *pool_spill_proc_entry;
68         bool                     pool_spill_is_active;
69         unsigned int             pool_spill_threshold_pct;
70         atomic_t                 pool_spill_hit;
71         char                     pool_spill_target[LOV_MAXPOOLNAME + 1];
72         bool                     pool_same_space; /* targets in pool balanced*/
73         time64_t                 pool_same_space_expire; /*uses ld_qos_maxage*/
74 };
75
76 struct lod_device;
77 int lod_pool_hash_init(struct rhashtable *tbl);
78 void lod_pool_hash_destroy(struct rhashtable *tbl);
79 bool lod_pool_exists(struct lod_device *lod, char *poolname);
80
81 #define pool_tgt_count(p) ((p)->pool_obds.op_count)
82 #define pool_tgt_array(p)  ((p)->pool_obds.op_array)
83 #define pool_tgt_rw_sem(p) ((p)->pool_obds.op_rw_sem)
84
85 #define lod_tgt_desc    lu_tgt_desc
86 #define lod_tgt_descs   lu_tgt_descs
87
88 #define OST_TGT(lod, index)   LTD_TGT(&lod->lod_ost_descs, index)
89 #define MDT_TGT(lod, index)   LTD_TGT(&lod->lod_mdt_descs, index)
90
91 struct lod_avoid_guide {
92         /* ids of OSSs avoid guidance */
93         __u32                   *lag_oss_avoid_array;
94         /* number of filled array items */
95         unsigned int            lag_oaa_count;
96         /* number of allocated array items */
97         unsigned int            lag_oaa_size;
98         /* bitmap of OSTs avoid guidance */
99         unsigned long           *lag_ost_avoid_bitmap;
100         u32                     lag_ost_avoid_size;
101         /* how many OSTs are available for alloc */
102         __u32                   lag_ost_avail;
103 };
104
105 #define LOD_DOM_MIN_SIZE_KB (LOV_MIN_STRIPE_SIZE >> 10)
106 #define LOD_DOM_SFS_MAX_AGE 10
107
108 struct lod_device {
109         struct dt_device      lod_dt_dev;
110         struct obd_export    *lod_child_exp;
111         struct dt_device     *lod_child;
112         struct lprocfs_stats *lod_stats;
113         spinlock_t            lod_connects_lock;
114         int                   lod_connects;
115         unsigned int          lod_recovery_completed:1,
116                               lod_initialized:1,
117                               lod_lmv_failout:1,
118                               lod_child_got_update_log:1;
119
120         /* protect ld_active_tgt_count, ltd_active and lod_md_root */
121         spinlock_t           lod_lock;
122
123         /* Description of OST */
124         struct lod_tgt_descs  lod_ost_descs;
125         /* Description of MDT */
126         struct lod_tgt_descs  lod_mdt_descs;
127
128         /* Recovery thread for lod_child */
129         struct task_struct   *lod_child_recovery_task;
130
131         /* maximum EA size underlied OSD may have */
132         unsigned int          lod_osd_max_easize;
133         /* maximum size of MDT stripe for Data-on-MDT files. */
134         unsigned int          lod_dom_stripesize_max_kb;
135         /* current DOM default stripe size adjusted by threshold */
136         unsigned int          lod_dom_stripesize_cur_kb;
137         /* Threshold at which DOM default stripe will start decreasing */
138         __u64                 lod_dom_threshold_free_mb;
139
140         /* Local OSD statfs cache */
141         spinlock_t            lod_lsfs_lock;
142         time64_t              lod_lsfs_age;
143         __u64                 lod_lsfs_total_mb;
144         __u64                 lod_lsfs_free_mb;
145
146         /* OST pool data */
147         int                     lod_pool_count;
148         struct rhashtable       lod_pools_hash_body; /* used for key access */
149         struct list_head        lod_pool_list; /* used for sequential access */
150         struct proc_dir_entry  *lod_pool_proc_entry;
151         struct proc_dir_entry  *lod_spill_proc_entry;
152
153         enum lustre_sec_part   lod_sp_me;
154
155         struct proc_dir_entry *lod_symlink;
156         struct dentry          *lod_debugfs;
157
158         /* ROOT object, used to fetch FS default striping */
159         struct lod_object      *lod_md_root;
160
161         /* max stripe count if stripe count is set to -1. 0 means unlimited */
162         unsigned int            lod_max_stripecount;
163         unsigned int            lod_max_mdt_stripecount;
164 };
165
166 #define lod_ost_bitmap          lod_ost_descs.ltd_tgt_bitmap
167 #define lod_ost_count           lod_ost_descs.ltd_lov_desc.ld_tgt_count
168 #define lod_ost_active_count    lod_ost_descs.ltd_lov_desc.ld_active_tgt_count
169 #define lod_remote_mdt_count    lod_mdt_descs.ltd_lmv_desc.ld_tgt_count
170
171 struct lod_layout_component {
172         struct lu_extent          llc_extent;
173         __u32                     llc_id;
174         __u32                     llc_flags;
175         __u32                     llc_stripe_size;
176         __u32                     llc_pattern;
177         __u16                     llc_layout_gen;
178         __u16                     llc_stripe_offset;
179         __u16                     llc_stripe_count;
180         __u16                     llc_stripes_allocated;
181         __u64                     llc_timestamp; /* snapshot time */
182         char                     *llc_pool;
183         /* ost list specified with LOV_USER_MAGIC_SPECIFIC lum */
184         struct lu_tgt_pool        llc_ostlist;
185         struct dt_object        **llc_stripe;
186         __u32                    *llc_ost_indices;
187 };
188
189 struct lod_default_striping {
190         /* default LOV */
191         /* current layout component count */
192         __u16                           lds_def_comp_cnt;
193         __u16                           lds_def_mirror_cnt;
194         /* the largest comp count ever used */
195         __u32                           lds_def_comp_size_cnt;
196         struct lod_layout_component     *lds_def_comp_entries;
197         /* default LMV */
198         __u32                           lds_dir_def_stripe_count;
199         __u32                           lds_dir_def_stripe_offset;
200         __u32                           lds_dir_def_hash_type;
201         __u8                            lds_dir_def_max_inherit;
202         __u8                            lds_dir_def_max_inherit_rr;
203                                         /* default file striping flags (LOV) */
204         __u32                           lds_def_striping_set:1,
205                                         lds_def_striping_is_composite:1,
206                                         /* default dir striping flags (LMV) */
207                                         lds_dir_def_striping_set:1;
208 };
209
210 enum layout_verify_flags {
211         LVF_ALL_STALE           = BIT(0), /* check not all stale mirrors */
212 };
213
214 struct lod_mirror_entry {
215         __u16   lme_stale:1,
216                 lme_prefer:1;
217         /* mirror id */
218         __u16   lme_id;
219         /* preference */
220         __u16   lme_preference;
221         /* start,end index of this mirror in ldo_comp_entries */
222         __u16   lme_start;
223         __u16   lme_end;
224 };
225
226 struct lod_object {
227         /* common fields for both files and directories */
228         struct dt_object                ldo_obj;
229         struct mutex                    ldo_layout_mutex;
230                                         /* foreign file/directory */
231         __u32                           ldo_is_foreign:1;
232         union {
233                 /* file stripe (LOV) */
234                 struct {
235                         __u32           ldo_layout_gen;
236                         /* Layout component count for a regular file.
237                          * It equals to 1 for non-composite layout. */
238                         __u16           ldo_comp_cnt;
239                         /* Layout mirror count for a PFLR file.
240                          * It's 0 for files with non-composite layout. */
241                         __u16           ldo_mirror_count;
242                         struct lod_mirror_entry *ldo_mirrors;
243                         __u32           ldo_is_composite:1,
244                                         ldo_flr_state:4,
245                                         ldo_comp_cached:1;
246                 };
247                 /* directory stripe (LMV) */
248                 struct {
249                         /* Slave stripe count for striped directory. */
250                         __u16           ldo_dir_stripe_count;
251                         /* How many stripes allocated for a striped directory */
252                         __u16           ldo_dir_stripes_allocated;
253                         __u32           ldo_dir_stripe_offset;
254                         __u32           ldo_dir_hash_type;
255                         __u32           ldo_dir_migrate_offset;
256                         __u32           ldo_dir_migrate_hash;
257                         __u32           ldo_dir_layout_version;
258                         /* Is a slave stripe of striped directory? */
259                         __u32           ldo_dir_slave_stripe:1,
260                                         ldo_dir_striped:1,
261                                         /* the stripe has been loaded */
262                                         ldo_dir_stripe_loaded:1;
263                         /*
264                          * This default LMV is parent default LMV, which will be
265                          * used in child creation, and it's not cached, so this
266                          * field is invalid after create, make sure it's used by
267                          * lod_dir_striping_create_internal() only.
268                          */
269                         struct lod_default_striping     *ldo_def_striping;
270                 };
271         };
272         union {
273                 struct {
274                         /* foreign/raw format LOV */
275                         char                            *ldo_foreign_lov;
276                         size_t                           ldo_foreign_lov_size;
277                 };
278                 struct {
279                         /* foreign/raw format LMV */
280                         char                            *ldo_foreign_lmv;
281                         size_t                           ldo_foreign_lmv_size;
282                 };
283                 struct {
284                         /* file stripe (LOV) */
285                         struct lod_layout_component     *ldo_comp_entries;
286                         /* slave stripes of striped directory (LMV) */
287                         struct dt_object                **ldo_stripe;
288                 };
289         };
290 };
291
292 #define ldo_dir_split_offset    ldo_dir_migrate_offset
293 #define ldo_dir_split_hash      ldo_dir_migrate_hash
294
295 #define lod_foreach_mirror_comp(comp, lo, mirror_idx)                      \
296 for (comp = &lo->ldo_comp_entries[lo->ldo_mirrors[mirror_idx].lme_start];  \
297      comp <= &lo->ldo_comp_entries[lo->ldo_mirrors[mirror_idx].lme_end];   \
298      comp++)
299
300 static inline bool lod_is_flr(const struct lod_object *lo)
301 {
302         if (!lo->ldo_is_composite)
303                 return false;
304
305         return (lo->ldo_flr_state & LCM_FL_FLR_MASK) != LCM_FL_NONE;
306 }
307
308 static inline bool lod_is_splitting(const struct lod_object *lo)
309 {
310         return lmv_hash_is_splitting(lo->ldo_dir_hash_type);
311 }
312
313 static inline bool lod_is_migrating(const struct lod_object *lo)
314 {
315         return lmv_hash_is_migrating(lo->ldo_dir_hash_type);
316 }
317
318 static inline bool lod_is_layout_changing(const struct lod_object *lo)
319 {
320         return lmv_hash_is_layout_changing(lo->ldo_dir_hash_type);
321 }
322
323 static inline int lod_set_pool(char **pool, const char *new_pool)
324 {
325         int len;
326
327         if (*pool == new_pool)
328                 return 0;
329
330         if (*pool != NULL) {
331                 len = strlen(*pool) + 1;
332                 OBD_FREE(*pool, len);
333                 *pool = NULL;
334         }
335         if (new_pool != NULL) {
336                 len = strlen(new_pool) + 1;
337                 OBD_ALLOC(*pool, len);
338                 if (*pool == NULL)
339                         return -ENOMEM;
340                 strlcpy(*pool, new_pool, len);
341         }
342         return 0;
343 }
344
345 static inline int lod_obj_set_pool(struct lod_object *lo, int i,
346                                    const char *new_pool)
347 {
348         return lod_set_pool(&lo->ldo_comp_entries[i].llc_pool, new_pool);
349 }
350
351 /**
352  * Create new layout generation.
353  *
354  * The only requirement for layout generation is that it changes when
355  * the layout is modified, so a circular counter is sufficient for the
356  * low rate of layout modifications.
357  *
358  * Layout generation is also used to generate unique component ID.
359  * To detect generation overflow, we preserve the highest bit of the
360  * generation when it wrapped.
361  */
362 static inline void lod_obj_inc_layout_gen(struct lod_object *lo)
363 {
364         __u32 preserve = lo->ldo_layout_gen & ~LCME_ID_MASK;
365         lo->ldo_layout_gen++;
366         lo->ldo_layout_gen |= preserve;
367         /* Zero is not a valid generation */
368         if (unlikely((lo->ldo_layout_gen & LCME_ID_MASK) == 0)) {
369                 lo->ldo_layout_gen++;
370                 lo->ldo_layout_gen &= ~LU_LAYOUT_RESYNC;
371         }
372 }
373
374 struct lod_it {
375         struct dt_object        *lit_obj; /* object from the layer below */
376         /* stripe offset of iteration */
377         __u32                   lit_stripe_index;
378         __u32                   lit_attr;
379         struct dt_it            *lit_it;  /* iterator from the layer below */
380 };
381
382 struct lod_thread_info {
383         /* per-thread buffer for LOV EA, may be vmalloc'd */
384         void                           *lti_ea_store;
385         __u32                           lti_ea_store_size;
386         /* per-thread buffer for LMV EA */
387         struct lu_buf                   lti_buf;
388         struct ost_id                   lti_ostid;
389         struct lu_fid                   lti_fid;
390         struct obd_statfs               lti_osfs;
391         struct lu_attr                  lti_attr;
392         struct lod_it                   lti_it;
393         struct ldlm_res_id              lti_res_id;
394         /* used to hold lu_dirent, sizeof(struct lu_dirent) + NAME_MAX */
395         char                            lti_key[sizeof(struct lu_dirent) +
396                                                 NAME_MAX];
397         struct dt_object_format         lti_format;
398         struct lu_name                  lti_name;
399         struct lu_buf                   lti_linkea_buf;
400         struct dt_insert_rec            lti_dt_rec;
401         struct llog_catid               lti_cid;
402         struct llog_cookie              lti_cookie;
403         struct lustre_cfg               lti_lustre_cfg;
404         /* used to store parent default striping in create */
405         struct lod_default_striping     lti_def_striping;
406         struct filter_fid               lti_ff;
407         __u32                           *lti_comp_idx;
408         size_t                          lti_comp_size;
409         size_t                          lti_count;
410         struct lu_attr                  lti_layout_attr;
411         /* object allocation avoid guide info */
412         struct lod_avoid_guide          lti_avoid;
413         union lmv_mds_md                lti_lmv;
414         struct dt_allocation_hint       lti_ah;
415 };
416
417 extern const struct lu_device_operations lod_lu_ops;
418
419 static inline int lu_device_is_lod(struct lu_device *d)
420 {
421         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &lod_lu_ops);
422 }
423
424 static inline struct lod_device* lu2lod_dev(struct lu_device *d)
425 {
426         LASSERT(lu_device_is_lod(d));
427         return container_of_safe(d, struct lod_device, lod_dt_dev.dd_lu_dev);
428 }
429
430 static inline struct lu_device *lod2lu_dev(struct lod_device *d)
431 {
432         return &d->lod_dt_dev.dd_lu_dev;
433 }
434
435 static inline struct obd_device *lod2obd(struct lod_device *d)
436 {
437         return d->lod_dt_dev.dd_lu_dev.ld_obd;
438 }
439
440 static inline struct lod_device *dt2lod_dev(struct dt_device *d)
441 {
442         LASSERT(lu_device_is_lod(&d->dd_lu_dev));
443         return container_of(d, struct lod_device, lod_dt_dev);
444 }
445
446 static inline struct lod_object *lu2lod_obj(struct lu_object *o)
447 {
448         LASSERT(ergo(o != NULL, lu_device_is_lod(o->lo_dev)));
449         return container_of_safe(o, struct lod_object, ldo_obj.do_lu);
450 }
451
452 static inline struct lu_object *lod2lu_obj(struct lod_object *obj)
453 {
454         return &obj->ldo_obj.do_lu;
455 }
456
457 static inline const struct lu_fid *lod_object_fid(struct lod_object *obj)
458 {
459         return lu_object_fid(lod2lu_obj(obj));
460 }
461
462 static inline struct lod_object *lod_obj(const struct lu_object *o)
463 {
464         LASSERT(lu_device_is_lod(o->lo_dev));
465         return container_of(o, struct lod_object, ldo_obj.do_lu);
466 }
467
468 static inline struct lod_object *lod_dt_obj(const struct dt_object *d)
469 {
470         return lod_obj(&d->do_lu);
471 }
472
473 static inline struct dt_object* lod_object_child(struct lod_object *o)
474 {
475         return container_of(lu_object_next(lod2lu_obj(o)),
476                             struct dt_object, do_lu);
477 }
478
479 static inline bool lod_obj_is_striped(struct dt_object *dt)
480 {
481         struct lod_object *lo = lod_dt_obj(dt);
482         int i;
483         bool rc = false;
484
485         if (!dt_object_exists(dt_object_child(dt)))
486                 return false;
487
488         mutex_lock(&lo->ldo_layout_mutex);
489
490         if (S_ISDIR(dt->do_lu.lo_header->loh_attr)) {
491                 rc = lo->ldo_dir_stripe_count != 0;
492         } else if (lo->ldo_is_foreign) {
493                 rc = false;
494         } else {
495                 for (i = 0; i < lo->ldo_comp_cnt; i++) {
496                         if (lo->ldo_comp_entries[i].llc_stripe == NULL)
497                                 continue;
498                         LASSERT(lo->ldo_comp_entries[i].llc_stripe_count > 0);
499                         rc = true;
500                         break;
501                 }
502         }
503
504         mutex_unlock(&lo->ldo_layout_mutex);
505         return rc;
506 }
507
508 extern struct lu_context_key lod_thread_key;
509
510 static inline struct lod_thread_info *lod_env_info(const struct lu_env *env)
511 {
512         struct lod_thread_info *info;
513         info = lu_context_key_get(&env->le_ctx, &lod_thread_key);
514         LASSERT(info);
515         return info;
516 }
517
518 static inline struct lu_name *
519 lod_name_get(const struct lu_env *env, const void *area, int len)
520 {
521         struct lu_name *lname;
522
523         lname = &lod_env_info(env)->lti_name;
524         lname->ln_name = area;
525         lname->ln_namelen = len;
526         return lname;
527 }
528
529 static inline struct lod_default_striping *
530 lod_lds_buf_get(const struct lu_env *env)
531 {
532         struct lod_thread_info *info = lod_env_info(env);
533
534         info->lti_def_striping.lds_def_striping_set = 0;
535         info->lti_def_striping.lds_dir_def_striping_set = 0;
536         return &info->lti_def_striping;
537 }
538
539 static inline void lod_layout_get_pool(struct lod_layout_component *entries,
540                                        int count, char *pool, int len)
541 {
542         int i;
543
544         for (i = 0; i < count; i++) {
545                 if (entries[i].llc_pool != NULL) {
546                         strlcpy(pool, entries[i].llc_pool, len);
547                         break;
548                 }
549         }
550 }
551
552 #define lod_foreach_mdt(lod, mdt) ltd_foreach_tgt(&(lod)->lod_mdt_descs, mdt)
553 #define lod_foreach_ost(lod, ost) ltd_foreach_tgt(&(lod)->lod_ost_descs, ost)
554
555 /* lod_dev.c */
556 extern struct kmem_cache *lod_object_kmem;
557 int lod_fld_lookup(const struct lu_env *env, struct lod_device *lod,
558                    const struct lu_fid *fid, __u32 *tgt, int *flags);
559 int lod_sub_init_llog(const struct lu_env *env, struct lod_device *lod,
560                       struct dt_device *dt);
561 void lod_sub_fini_llog(const struct lu_env *env,
562                        struct dt_device *dt, struct task_struct **taskp);
563 int lodname2mdt_index(char *lodname, __u32 *mdt_index);
564 extern void target_recovery_fini(struct obd_device *obd);
565
566 /* lod_lov.c */
567 void lod_getref(struct lod_tgt_descs *ltd);
568 void lod_putref(struct lod_device *lod, struct lod_tgt_descs *ltd);
569 int lod_add_device(const struct lu_env *env, struct lod_device *lod,
570                    char *osp, unsigned index, unsigned gen, int mdt_index,
571                    char *type, int active);
572 int lod_del_device(const struct lu_env *env, struct lod_device *lod,
573                    struct lod_tgt_descs *ltd, char *osp, unsigned int idx,
574                    unsigned int gen);
575 int validate_lod_and_idx(struct lod_device *lod, __u32 idx);
576 int lod_fini_tgt(const struct lu_env *env, struct lod_device *lod,
577                  struct lod_tgt_descs *ltd);
578 int lod_striping_load(const struct lu_env *env, struct lod_object *lo);
579 int lod_striping_reload(const struct lu_env *env, struct lod_object *lo,
580                         const struct lu_buf *buf, enum layout_verify_flags lvf);
581 void lod_dom_stripesize_recalc(struct lod_device *d);
582
583 int lod_get_ea(const struct lu_env *env, struct lod_object *lo,
584                const char *name);
585 static inline int
586 lod_get_lov_ea(const struct lu_env *env, struct lod_object *lo)
587 {
588         return lod_get_ea(env, lo, XATTR_NAME_LOV);
589 }
590
591 static inline int
592 lod_get_lmv_ea(const struct lu_env *env, struct lod_object *lo)
593 {
594         return lod_get_ea(env, lo, XATTR_NAME_LMV);
595 }
596
597 static inline int
598 lod_get_default_lmv_ea(const struct lu_env *env, struct lod_object *lo)
599 {
600         return lod_get_ea(env, lo, XATTR_NAME_DEFAULT_LMV);
601 }
602
603 static inline void
604 lod_comp_set_init(struct lod_layout_component *entry)
605 {
606         entry->llc_flags |= LCME_FL_INIT;
607 }
608
609 static inline void
610 lod_comp_unset_init(struct lod_layout_component *entry)
611 {
612         entry->llc_flags &= ~LCME_FL_INIT;
613 }
614
615 static inline bool
616 lod_comp_inited(const struct lod_layout_component *entry)
617 {
618         return entry->llc_flags & LCME_FL_INIT;
619 }
620
621 /**
622  * For a PFL file, some of its component could be un-instantiated, so
623  * that their lov_ost_data_v1 array is not needed, we'd use this function
624  * to reduce the LOVEA buffer size.
625  *
626  * Note: if llc_ostlist contains value, we'd need lov_ost_data_v1 array to
627  * save the specified OST index list.
628  */
629 static inline void
630 lod_comp_shrink_stripe_count(struct lod_layout_component *lod_comp,
631                              __u16 *stripe_count)
632 {
633         /**
634          * Need one lov_ost_data_v1 to store invalid ost_idx, please refer to
635          * lod_parse_striping()
636          */
637         if (!lod_comp_inited(lod_comp) && lod_comp->llc_ostlist.op_count == 0)
638                 *stripe_count = 1;
639 }
640
641 void lod_fix_desc(struct lov_desc *desc);
642 void lod_fix_desc_qos_maxage(__u32 *val);
643 void lod_fix_desc_pattern(__u32 *val);
644 void lod_fix_desc_stripe_count(__u32 *val);
645 void lod_fix_desc_stripe_size(__u64 *val);
646 void lod_fix_lmv_desc_pattern(__u32 *val);
647 int lod_pools_init(struct lod_device *m, struct lustre_cfg *cfg);
648 int lod_pools_fini(struct lod_device *m);
649 int lod_parse_striping(const struct lu_env *env, struct lod_object *mo,
650                        const struct lu_buf *buf, enum layout_verify_flags lvf);
651 int lod_parse_dir_striping(const struct lu_env *env, struct lod_object *lo,
652                            const struct lu_buf *buf);
653 int lod_initialize_objects(const struct lu_env *env, struct lod_object *mo,
654                            struct lov_ost_data_v1 *objs, int index);
655 int lod_verify_striping(const struct lu_env *env, struct lod_device *d,
656                         struct lod_object *lo, const struct lu_buf *buf,
657                         bool is_from_disk);
658 int lod_generate_lovea(const struct lu_env *env, struct lod_object *lo,
659                        struct lov_mds_md *lmm, int *lmm_size, bool is_dir);
660 int lod_ea_store_resize(struct lod_thread_info *info, size_t size);
661 int lod_def_striping_comp_resize(struct lod_default_striping *lds, __u16 count);
662 void lod_free_def_comp_entries(struct lod_default_striping *lds);
663 void lod_free_comp_entries(struct lod_object *lo);
664 int lod_alloc_comp_entries(struct lod_object *lo, int mirror_cnt, int comp_cnt);
665 int lod_fill_mirrors(struct lod_object *lo);
666
667 /* lod_pool.c */
668 struct pool_desc *lod_find_pool(struct lod_device *lod, char *poolname);
669 void lod_pool_putref(struct pool_desc *pool);
670 int lod_pool_del(struct obd_device *obd, char *poolname);
671 int lod_check_index_in_pool(__u32 idx, struct pool_desc *pool);
672 int lod_pool_new(struct obd_device *obd, char *poolname);
673 int lod_pool_add(struct obd_device *obd, char *poolname, char *ostname);
674 int lod_pool_remove(struct obd_device *obd, char *poolname, char *ostname);
675
676 struct lod_obj_stripe_cb_data;
677 typedef int (*lod_obj_stripe_cb_t)(const struct lu_env *env,
678                                    struct lod_object *lo, struct dt_object *dt,
679                                    struct thandle *th,
680                                    int comp_idx, int stripe_idx,
681                                    struct lod_obj_stripe_cb_data *data);
682 typedef bool (*lod_obj_comp_skip_cb_t)(const struct lu_env *env,
683                                         struct lod_object *lo, int comp_idx,
684                                         struct lod_obj_stripe_cb_data *data);
685 typedef int (*lod_obj_comp_cb_t)(const struct lu_env *env,
686                                 struct lod_object *lo, int comp_idx,
687                                 struct lod_obj_stripe_cb_data *data);
688 struct lod_obj_stripe_cb_data {
689         union {
690                 const struct lu_attr    *locd_attr;
691                 int                     locd_ost_index;
692                 const struct lu_buf     *locd_buf;
693         };
694         lod_obj_stripe_cb_t             locd_stripe_cb;
695         lod_obj_comp_skip_cb_t          locd_comp_skip_cb;
696         lod_obj_comp_cb_t               locd_comp_cb;
697         bool                            locd_declare;
698 };
699
700 /* lod_qos.c */
701 int lod_mdt_alloc_qos(const struct lu_env *env, struct lod_object *lo,
702                       struct dt_object **stripes, u32 stripe_idx,
703                       u32 stripe_count);
704 int lod_mdt_alloc_rr(const struct lu_env *env, struct lod_object *lo,
705                      struct dt_object **stripes, u32 stripe_idx,
706                      u32 stripe_count);
707 int lod_prepare_create(const struct lu_env *env, struct lod_object *lo,
708                        struct lu_attr *attr, const struct lu_buf *buf,
709                        struct thandle *th);
710 int lod_use_defined_striping(const struct lu_env *, struct lod_object *,
711                              const struct lu_buf *);
712 int lod_qos_parse_config(const struct lu_env *env, struct lod_object *lo,
713                          const struct lu_buf *buf);
714 int lod_qos_prep_create(const struct lu_env *env, struct lod_object *lo,
715                         struct lu_attr *attr, struct thandle *th,
716                         int comp_idx, __u64 reserve);
717 __u16 lod_comp_entry_stripe_count(struct lod_object *lo,
718                                   int comp_idx, bool is_dir);
719 __u16 lod_get_stripe_count(struct lod_device *lod, struct lod_object *lo,
720                            int comp_idx, __u16 stripe_count, bool overstriping);
721 void lod_qos_statfs_update(const struct lu_env *env, struct lod_device *lod,
722                            struct lu_tgt_descs *ltd);
723
724 /* lproc_lod.c */
725 int lod_procfs_init(struct lod_device *lod);
726 void lod_procfs_fini(struct lod_device *lod);
727
728 /* lod_object.c */
729 extern const struct dt_object_operations lod_obj_ops;
730 extern const struct lu_object_operations lod_lu_obj_ops;
731
732 int lod_load_lmv_shards(const struct lu_env *env, struct lod_object *lo,
733                         struct lu_buf *buf, bool resize);
734 int lod_declare_striped_create(const struct lu_env *env, struct dt_object *dt,
735                                struct lu_attr *attr,
736                                const struct lu_buf *lovea, struct thandle *th);
737 int lod_striped_create(const struct lu_env *env, struct dt_object *dt,
738                         struct lu_attr *attr, struct dt_object_format *dof,
739                         struct thandle *th);
740 int lod_alloc_foreign_lov(struct lod_object *lo, size_t size);
741 void lod_free_foreign_lov(struct lod_object *lo);
742 void lod_striping_free_nolock(const struct lu_env *env, struct lod_object *lo);
743 void lod_striping_free(const struct lu_env *env, struct lod_object *lo);
744
745 int lod_obj_for_each_stripe(const struct lu_env *env, struct lod_object *lo,
746                             struct thandle *th,
747                             struct lod_obj_stripe_cb_data *data);
748 int lod_comp_copy_ost_lists(struct lod_layout_component *lod_comp,
749                             struct lov_user_md_v3 *v3);
750 void lod_adjust_stripe_size(struct lod_layout_component *comp,
751                             __u32 def_stripe_size);
752
753 /* lod_sub_object.c */
754 struct thandle *lod_sub_get_thandle(const struct lu_env *env,
755                                     struct thandle *th,
756                                     const struct dt_object *sub_obj,
757                                     bool *record_update);
758 int lod_sub_declare_create(const struct lu_env *env, struct dt_object *dt,
759                            struct lu_attr *attr,
760                            struct dt_allocation_hint *hint,
761                            struct dt_object_format *dof, struct thandle *th);
762 int lod_sub_create(const struct lu_env *env, struct dt_object *dt,
763                    struct lu_attr *attr, struct dt_allocation_hint *hint,
764                    struct dt_object_format *dof, struct thandle *th);
765 int lod_sub_declare_ref_add(const struct lu_env *env, struct dt_object *dt,
766                             struct thandle *th);
767 int lod_sub_ref_add(const struct lu_env *env, struct dt_object *dt,
768                     struct thandle *th);
769 int lod_sub_declare_ref_del(const struct lu_env *env, struct dt_object *dt,
770                             struct thandle *th);
771 int lod_sub_ref_del(const struct lu_env *env, struct dt_object *dt,
772                     struct thandle *th);
773 int lod_sub_declare_destroy(const struct lu_env *env, struct dt_object *dt,
774                             struct thandle *th);
775 int lod_sub_destroy(const struct lu_env *env, struct dt_object *dt,
776                     struct thandle *th);
777 int lod_sub_declare_insert(const struct lu_env *env, struct dt_object *dt,
778                            const struct dt_rec *rec, const struct dt_key *key,
779                            struct thandle *th);
780 int lod_sub_insert(const struct lu_env *env, struct dt_object *dt,
781                    const struct dt_rec *rec, const struct dt_key *key,
782                    struct thandle *th);
783 int lod_sub_declare_delete(const struct lu_env *env, struct dt_object *dt,
784                            const struct dt_key *key, struct thandle *th);
785 int lod_sub_delete(const struct lu_env *env, struct dt_object *dt,
786                    const struct dt_key *name, struct thandle *th);
787 int lod_sub_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
788                               const struct lu_buf *buf, const char *name,
789                               int fl, struct thandle *th);
790 int lod_sub_xattr_set(const struct lu_env *env, struct dt_object *dt,
791                       const struct lu_buf *buf, const char *name, int fl,
792                       struct thandle *th);
793 int lod_sub_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
794                              const struct lu_attr *attr, struct thandle *th);
795 int lod_sub_attr_set(const struct lu_env *env, struct dt_object *dt,
796                      const struct lu_attr *attr, struct thandle *th);
797 int lod_sub_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
798                               const char *name, struct thandle *th);
799 int lod_sub_xattr_del(const struct lu_env *env, struct dt_object *dt,
800                       const char *name, struct thandle *th);
801 int lod_sub_declare_write(const struct lu_env *env, struct dt_object *dt,
802                           const struct lu_buf *buf, loff_t pos,
803                           struct thandle *th);
804 ssize_t lod_sub_write(const struct lu_env *env, struct dt_object *dt,
805                       const struct lu_buf *buf, loff_t *pos,
806                       struct thandle *th);
807 int lod_sub_declare_punch(const struct lu_env *env, struct dt_object *dt,
808                           __u64 start, __u64 end, struct thandle *th);
809 int lod_sub_punch(const struct lu_env *env, struct dt_object *dt,
810                   __u64 start, __u64 end, struct thandle *th);
811
812 int lod_sub_prep_llog(const struct lu_env *env, struct lod_device *lod,
813                       struct dt_device *dt, int index);
814 void lod_check_and_spill_pool(const struct lu_env *env, struct lod_device *lod,
815                               char **poolname);
816 void lod_spill_target_refresh(const struct lu_env *env, struct lod_device *lod,
817                               struct pool_desc *pool);
818 struct pool_desc *lod_pool_find(struct lod_device *lod, char *poolname);
819 extern struct lprocfs_vars lprocfs_lod_spill_vars[];
820 #endif