Whamcloud - gitweb
LU-3536 lod: cancel update log after all committed
[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, 2014, 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 <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 #define LOV_OFFSET_DEFAULT              ((__u16)-1)
57
58 struct lod_qos_rr {
59         __u32                    lqr_start_idx; /* start index of new inode */
60         __u32                    lqr_offset_idx; /* aliasing for start_idx */
61         int                      lqr_start_count; /* reseed counter */
62         struct ost_pool          lqr_pool;      /* round-robin optimized list */
63         unsigned long            lqr_dirty:1;   /* recalc round-robin list */
64 };
65
66 struct pool_desc {
67         char                     pool_name[LOV_MAXPOOLNAME + 1];
68         struct ost_pool          pool_obds;     /* pool members */
69         atomic_t                 pool_refcount;
70         struct lod_qos_rr        pool_rr;
71         struct hlist_node        pool_hash;     /* access by poolname */
72         struct list_head         pool_list;
73         struct proc_dir_entry   *pool_proc_entry;
74         struct obd_device       *pool_lobd;     /* owner */
75 };
76
77 #define pool_tgt_size(p) ((p)->pool_obds.op_size)
78 #define pool_tgt_count(p) ((p)->pool_obds.op_count)
79 #define pool_tgt_array(p)  ((p)->pool_obds.op_array)
80 #define pool_tgt_rw_sem(p) ((p)->pool_obds.op_rw_sem)
81
82 struct lod_qos {
83         struct list_head         lq_oss_list;
84         struct rw_semaphore      lq_rw_sem;
85         __u32                    lq_active_oss_count;
86         unsigned int             lq_prio_free;   /* priority for free space */
87         unsigned int             lq_threshold_rr;/* priority for rr */
88         struct lod_qos_rr        lq_rr;          /* round robin qos data */
89         bool                     lq_dirty:1,     /* recalc qos data */
90                                  lq_same_space:1,/* the ost's all have approx.
91                                                     the same space avail */
92                                  lq_reset:1;     /* zero current penalties */
93 };
94
95 struct lod_qos_oss {
96         struct obd_uuid          lqo_uuid;      /* ptlrpc's c_remote_uuid */
97         struct list_head         lqo_oss_list;  /* link to lov_qos */
98         __u64                    lqo_bavail;    /* total bytes avail on OSS */
99         __u64                    lqo_penalty;   /* current penalty */
100         __u64                    lqo_penalty_per_obj; /* penalty decrease
101                                                          every obj*/
102         time_t                   lqo_used;      /* last used time, seconds */
103         __u32                    lqo_ost_count; /* number of osts on this oss */
104 };
105
106 struct ltd_qos {
107         struct lod_qos_oss      *ltq_oss;       /* oss info */
108         __u64                    ltq_penalty;   /* current penalty */
109         __u64                    ltq_penalty_per_obj; /* penalty decrease
110                                                          every obj*/
111         __u64                    ltq_weight;    /* net weighting */
112         time_t                   ltq_used;      /* last used time, seconds */
113         bool                     ltq_usable:1;  /* usable for striping */
114 };
115
116 struct lod_tgt_desc {
117         struct dt_device  *ltd_tgt;
118         struct list_head   ltd_kill;
119         struct obd_export *ltd_exp;
120         struct obd_uuid    ltd_uuid;
121         __u32              ltd_gen;
122         __u32              ltd_index;
123         struct ltd_qos     ltd_qos; /* qos info per target */
124         struct obd_statfs  ltd_statfs;
125         struct ptlrpc_thread    *ltd_recovery_thread;
126         unsigned long      ltd_active:1,/* is this target up for requests */
127                            ltd_activate:1,/* should  target be activated */
128                            ltd_reap:1;  /* should this target be deleted */
129 };
130
131 #define TGT_PTRS                256     /* number of pointers at 1st level */
132 #define TGT_PTRS_PER_BLOCK      256     /* number of pointers at 2nd level */
133
134 struct lod_tgt_desc_idx {
135         struct lod_tgt_desc *ldi_tgt[TGT_PTRS_PER_BLOCK];
136 };
137
138 #define LTD_TGT(ltd, index)      \
139          ((ltd)->ltd_tgt_idx[(index) / \
140          TGT_PTRS_PER_BLOCK]->ldi_tgt[(index) % TGT_PTRS_PER_BLOCK])
141
142 #define OST_TGT(lod, index)   LTD_TGT(&lod->lod_ost_descs, index)
143 #define MDT_TGT(lod, index)   LTD_TGT(&lod->lod_mdt_descs, index)
144 struct lod_tgt_descs {
145         /* list of known TGTs */
146         struct lod_tgt_desc_idx *ltd_tgt_idx[TGT_PTRS];
147         /* Size of the lod_tgts array, granted to be a power of 2 */
148         __u32                   ltd_tgts_size;
149         /* number of registered TGTs */
150         __u32                   ltd_tgtnr;
151         /* bitmap of TGTs available */
152         cfs_bitmap_t            *ltd_tgt_bitmap;
153         /* TGTs scheduled to be deleted */
154         __u32                   ltd_death_row;
155         /* Table refcount used for delayed deletion */
156         int                     ltd_refcount;
157         /* mutex to serialize concurrent updates to the tgt table */
158         struct mutex            ltd_mutex;
159         /* read/write semaphore used for array relocation */
160         struct rw_semaphore     ltd_rw_sem;
161 };
162
163 struct lod_device {
164         struct dt_device      lod_dt_dev;
165         struct obd_export    *lod_child_exp;
166         struct dt_device     *lod_child;
167         struct proc_dir_entry *lod_proc_entry;
168         struct lprocfs_stats *lod_stats;
169         spinlock_t            lod_connects_lock;
170         int                   lod_connects;
171         unsigned int          lod_recovery_completed:1,
172                               lod_initialized:1,
173                               lod_lmv_failout:1;
174
175         /* lov settings descriptor storing static information */
176         struct lov_desc       lod_desc;
177
178         /* use to protect ld_active_tgt_count and all ltd_active */
179         spinlock_t           lod_desc_lock;
180
181         /* Description of OST */
182         struct lod_tgt_descs  lod_ost_descs;
183         /* Description of MDT */
184         struct lod_tgt_descs  lod_mdt_descs;
185
186         /* Recovery thread for lod_child */
187         struct ptlrpc_thread    lod_child_recovery_thread;
188
189         /* maximum EA size underlied OSD may have */
190         unsigned int          lod_osd_max_easize;
191
192         /*FIXME: When QOS and pool is implemented for MDT, probably these
193          * structure should be moved to lod_tgt_descs as well.
194          */
195         /* QoS info per LOD */
196         struct lod_qos        lod_qos; /* qos info per lod */
197
198         /* OST pool data */
199         struct ost_pool         lod_pool_info; /* all OSTs in a packed array */
200         int                     lod_pool_count;
201         cfs_hash_t             *lod_pools_hash_body; /* used for key access */
202         struct list_head        lod_pool_list; /* used for sequential access */
203         struct proc_dir_entry  *lod_pool_proc_entry;
204
205         enum lustre_sec_part   lod_sp_me;
206
207         struct proc_dir_entry *lod_symlink;
208 };
209
210 #define lod_osts        lod_ost_descs.ltd_tgts
211 #define lod_ost_bitmap  lod_ost_descs.ltd_tgt_bitmap
212 #define lod_ostnr       lod_ost_descs.ltd_tgtnr
213 #define lod_osts_size   lod_ost_descs.ltd_tgts_size
214 #define ltd_ost         ltd_tgt
215 #define lod_ost_desc    lod_tgt_desc
216
217 #define lod_mdts                lod_mdt_descs.ltd_tgts
218 #define lod_mdt_bitmap          lod_mdt_descs.ltd_tgt_bitmap
219 #define lod_remote_mdt_count    lod_mdt_descs.ltd_tgtnr
220 #define lod_mdts_size           lod_mdt_descs.ltd_tgts_size
221 #define ltd_mdt                 ltd_tgt
222 #define lod_mdt_desc            lod_tgt_desc
223
224 struct lod_dir_stripe_info {
225         __u32   ldsi_stripe_offset;
226         __u32   ldsi_def_stripenr;
227         __u32   ldsi_def_stripe_offset;
228         __u32   ldsi_def_hash_type;
229         __u32   ldsi_hash_type;
230
231         unsigned int ldsi_def_striping_set:1,
232                      ldsi_def_striping_cached:1,
233                      ldsi_striped:1;
234 };
235
236 /*
237  * XXX: shrink this structure, currently it's 72bytes on 32bit arch,
238  *      so, slab will be allocating 128bytes
239  */
240 struct lod_object {
241         struct dt_object   ldo_obj;
242
243         /* if object is striped, then the next fields describe stripes */
244         /* For striped directory, ldo_stripenr == slave stripe count */
245         __u16              ldo_stripenr;
246         __u16              ldo_layout_gen;
247         __u32              ldo_stripe_size;
248         __u32              ldo_pattern;
249         __u16              ldo_released_stripenr;
250         char              *ldo_pool;
251         struct dt_object **ldo_stripe;
252         /* to know how much memory to free, ldo_stripenr can be less */
253         /* default striping for directory represented by this object
254          * is cached in stripenr/stripe_size */
255         unsigned int       ldo_stripes_allocated:16,
256                            ldo_striping_cached:1,
257                            ldo_def_striping_set:1,
258                            ldo_def_striping_cached:1,
259         /* ldo_dir_slave_stripe indicate this is a slave stripe of
260          * a striped dir */
261                            ldo_dir_slave_stripe:1;
262         __u32              ldo_def_stripe_size;
263         __u16              ldo_def_stripenr;
264         __u16              ldo_def_stripe_offset;
265         struct lod_dir_stripe_info      *ldo_dir_stripe;
266 };
267
268 #define ldo_dir_stripe_offset   ldo_dir_stripe->ldsi_stripe_offset
269 #define ldo_dir_def_stripenr    ldo_dir_stripe->ldsi_def_stripenr
270 #define ldo_dir_hash_type       ldo_dir_stripe->ldsi_hash_type
271 #define ldo_dir_def_hash_type   ldo_dir_stripe->ldsi_def_hash_type
272 #define ldo_dir_striped         ldo_dir_stripe->ldsi_striped
273 #define ldo_dir_def_striping_set        ldo_dir_stripe->ldsi_def_striping_set
274 #define ldo_dir_def_striping_cached     ldo_dir_stripe->ldsi_def_striping_cached
275 #define ldo_dir_def_stripe_offset       ldo_dir_stripe->ldsi_def_stripe_offset
276
277 struct lod_it {
278         struct dt_object        *lit_obj; /* object from the layer below */
279         /* stripe offset of iteration */
280         __u32                   lit_stripe_index;
281         __u32                   lit_attr;
282         struct dt_it            *lit_it;  /* iterator from the layer below */
283 };
284
285 struct lod_thread_info {
286         /* per-thread buffer for LOV EA */
287         void             *lti_ea_store;
288         __u32             lti_ea_store_size;
289         /* per-thread buffer for LMV EA */
290         struct lu_buf     lti_buf;
291         struct ost_id     lti_ostid;
292         struct lu_fid     lti_fid;
293         struct obd_statfs lti_osfs;
294         struct lu_attr    lti_attr;
295         struct lod_it     lti_it;
296         struct ldlm_res_id lti_res_id;
297         /* used to hold lu_dirent, sizeof(struct lu_dirent) + NAME_MAX */
298         char              lti_key[sizeof(struct lu_dirent) + NAME_MAX];
299         struct dt_object_format lti_format;
300         struct lu_name    lti_name;
301         struct lu_buf     lti_linkea_buf;
302         struct dt_insert_rec lti_dt_rec;
303         struct llog_catid lti_cid;
304 };
305
306 extern const struct lu_device_operations lod_lu_ops;
307
308 static inline int lu_device_is_lod(struct lu_device *d)
309 {
310         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &lod_lu_ops);
311 }
312
313 static inline struct lod_device* lu2lod_dev(struct lu_device *d)
314 {
315         LASSERT(lu_device_is_lod(d));
316         return container_of0(d, struct lod_device, lod_dt_dev.dd_lu_dev);
317 }
318
319 static inline struct lu_device *lod2lu_dev(struct lod_device *d)
320 {
321         return &d->lod_dt_dev.dd_lu_dev;
322 }
323
324 static inline struct obd_device *lod2obd(struct lod_device *d)
325 {
326         return d->lod_dt_dev.dd_lu_dev.ld_obd;
327 }
328
329 static inline struct lod_device *dt2lod_dev(struct dt_device *d)
330 {
331         LASSERT(lu_device_is_lod(&d->dd_lu_dev));
332         return container_of0(d, struct lod_device, lod_dt_dev);
333 }
334
335 static inline struct lod_object *lu2lod_obj(struct lu_object *o)
336 {
337         LASSERT(ergo(o != NULL, lu_device_is_lod(o->lo_dev)));
338         return container_of0(o, struct lod_object, ldo_obj.do_lu);
339 }
340
341 static inline struct lu_object *lod2lu_obj(struct lod_object *obj)
342 {
343         return &obj->ldo_obj.do_lu;
344 }
345
346 static inline struct lod_object *lod_obj(const struct lu_object *o)
347 {
348         LASSERT(lu_device_is_lod(o->lo_dev));
349         return container_of0(o, struct lod_object, ldo_obj.do_lu);
350 }
351
352 static inline struct lod_object *lod_dt_obj(const struct dt_object *d)
353 {
354         return lod_obj(&d->do_lu);
355 }
356
357 static inline struct dt_object* lod_object_child(struct lod_object *o)
358 {
359         return container_of0(lu_object_next(lod2lu_obj(o)),
360                         struct dt_object, do_lu);
361 }
362
363 static inline struct dt_object *dt_object_child(struct dt_object *o)
364 {
365         return container_of0(lu_object_next(&(o)->do_lu),
366                         struct dt_object, do_lu);
367 }
368
369 extern struct lu_context_key lod_thread_key;
370
371 static inline struct lod_thread_info *lod_env_info(const struct lu_env *env)
372 {
373         struct lod_thread_info *info;
374         info = lu_context_key_get(&env->le_ctx, &lod_thread_key);
375         LASSERT(info);
376         return info;
377 }
378
379 static inline struct lu_name *
380 lod_name_get(const struct lu_env *env, const void *area, int len)
381 {
382         struct lu_name *lname;
383
384         lname = &lod_env_info(env)->lti_name;
385         lname->ln_name = area;
386         lname->ln_namelen = len;
387         return lname;
388 }
389
390 #define lod_foreach_ost(__dev, index)   \
391         if ((__dev)->lod_osts_size > 0) \
392                 cfs_foreach_bit((__dev)->lod_ost_bitmap, (index))
393
394 #define lod_foreach_mdt(mdt_dev, index) \
395         cfs_foreach_bit((mdt_dev)->lod_mdt_bitmap, (index))
396
397 /* lod_dev.c */
398 extern struct kmem_cache *lod_object_kmem;
399 int lod_fld_lookup(const struct lu_env *env, struct lod_device *lod,
400                    const struct lu_fid *fid, __u32 *tgt, int *flags);
401 int lod_sub_init_llog(const struct lu_env *env, struct lod_device *lod,
402                       struct dt_device *dt);
403 void lod_sub_fini_llog(const struct lu_env *env,
404                        struct dt_device *dt, struct ptlrpc_thread *thread);
405 int lodname2mdt_index(char *lodname, __u32 *mdt_index);
406
407 /* lod_lov.c */
408 void lod_getref(struct lod_tgt_descs *ltd);
409 void lod_putref(struct lod_device *lod, struct lod_tgt_descs *ltd);
410 int lod_add_device(const struct lu_env *env, struct lod_device *lod,
411                    char *osp, unsigned index, unsigned gen, int mdt_index,
412                    char *type, int active);
413 int lod_del_device(const struct lu_env *env, struct lod_device *lod,
414                    struct lod_tgt_descs *ltd, char *osp, unsigned idx,
415                    unsigned gen, bool for_ost);
416 int lod_fini_tgt(const struct lu_env *env, struct lod_device *lod,
417                  struct lod_tgt_descs *ltd, bool for_ost);
418 int lod_load_striping_locked(const struct lu_env *env, struct lod_object *lo);
419 int lod_load_striping(const struct lu_env *env, struct lod_object *lo);
420
421 int lod_get_ea(const struct lu_env *env, struct lod_object *lo,
422                const char *name);
423 static inline int
424 lod_get_lov_ea(const struct lu_env *env, struct lod_object *lo)
425 {
426         return lod_get_ea(env, lo, XATTR_NAME_LOV);
427 }
428
429 static inline int
430 lod_get_lmv_ea(const struct lu_env *env, struct lod_object *lo)
431 {
432         return lod_get_ea(env, lo, XATTR_NAME_LMV);
433 }
434
435 static inline int
436 lod_get_default_lmv_ea(const struct lu_env *env, struct lod_object *lo)
437 {
438         return lod_get_ea(env, lo, XATTR_NAME_DEFAULT_LMV);
439 }
440
441 void lod_fix_desc(struct lov_desc *desc);
442 void lod_fix_desc_qos_maxage(__u32 *val);
443 void lod_fix_desc_pattern(__u32 *val);
444 void lod_fix_desc_stripe_count(__u32 *val);
445 void lod_fix_desc_stripe_size(__u64 *val);
446 int lod_pools_init(struct lod_device *m, struct lustre_cfg *cfg);
447 int lod_pools_fini(struct lod_device *m);
448 int lod_parse_striping(const struct lu_env *env, struct lod_object *mo,
449                        const struct lu_buf *buf);
450 int lod_parse_dir_striping(const struct lu_env *env, struct lod_object *lo,
451                            const struct lu_buf *buf);
452 int lod_initialize_objects(const struct lu_env *env, struct lod_object *mo,
453                            struct lov_ost_data_v1 *objs);
454 int lod_verify_striping(struct lod_device *d, const struct lu_buf *buf,
455                         bool is_from_disk);
456 int lod_generate_and_set_lovea(const struct lu_env *env,
457                                struct lod_object *mo, struct thandle *th);
458 int lod_ea_store_resize(struct lod_thread_info *info, size_t size);
459 /* lod_pool.c */
460 int lod_ost_pool_add(struct ost_pool *op, __u32 idx, unsigned int min_count);
461 int lod_ost_pool_remove(struct ost_pool *op, __u32 idx);
462 int lod_ost_pool_extend(struct ost_pool *op, unsigned int min_count);
463 struct pool_desc *lod_find_pool(struct lod_device *lod, char *poolname);
464 void lod_pool_putref(struct pool_desc *pool);
465 int lod_ost_pool_free(struct ost_pool *op);
466 int lod_pool_del(struct obd_device *obd, char *poolname);
467 int lod_ost_pool_init(struct ost_pool *op, unsigned int count);
468 extern cfs_hash_ops_t pool_hash_operations;
469 int lod_check_index_in_pool(__u32 idx, struct pool_desc *pool);
470 int lod_pool_new(struct obd_device *obd, char *poolname);
471 int lod_pool_add(struct obd_device *obd, char *poolname, char *ostname);
472 int lod_pool_remove(struct obd_device *obd, char *poolname, char *ostname);
473
474 /* lod_qos.c */
475 int lod_qos_prep_create(const struct lu_env *env, struct lod_object *lo,
476                         struct lu_attr *attr, const struct lu_buf *buf,
477                         struct thandle *th);
478 int qos_add_tgt(struct lod_device*, struct lod_tgt_desc *);
479 int qos_del_tgt(struct lod_device *, struct lod_tgt_desc *);
480
481 /* lproc_lod.c */
482 int lod_procfs_init(struct lod_device *lod);
483 void lod_procfs_fini(struct lod_device *lod);
484
485 /* lod_object.c */
486 extern struct dt_object_operations lod_obj_ops;
487 extern struct lu_object_operations lod_lu_obj_ops;
488 int lod_load_lmv_shards(const struct lu_env *env, struct lod_object *lo,
489                         struct lu_buf *buf, bool resize);
490 int lod_object_set_pool(struct lod_object *o, char *pool);
491 int lod_declare_striped_object(const struct lu_env *env, struct dt_object *dt,
492                                struct lu_attr *attr,
493                                const struct lu_buf *lovea, struct thandle *th);
494 int lod_striping_create(const struct lu_env *env, struct dt_object *dt,
495                         struct lu_attr *attr, struct dt_object_format *dof,
496                         struct thandle *th);
497 void lod_object_free_striping(const struct lu_env *env, struct lod_object *lo);
498
499 /* lod_sub_object.c */
500 struct thandle *lod_sub_get_thandle(const struct lu_env *env,
501                                     struct thandle *th,
502                                     const struct dt_object *sub_obj,
503                                     bool *record_update);
504 int lod_sub_object_declare_create(const struct lu_env *env,
505                                   struct dt_object *dt,
506                                   struct lu_attr *attr,
507                                   struct dt_allocation_hint *hint,
508                                   struct dt_object_format *dof,
509                                   struct thandle *th);
510 int lod_sub_object_create(const struct lu_env *env, struct dt_object *dt,
511                           struct lu_attr *attr,
512                           struct dt_allocation_hint *hint,
513                           struct dt_object_format *dof,
514                           struct thandle *th);
515 int lod_sub_object_declare_ref_add(const struct lu_env *env,
516                                    struct dt_object *dt,
517                                    struct thandle *th);
518 int lod_sub_object_ref_add(const struct lu_env *env, struct dt_object *dt,
519                            struct thandle *th);
520 int lod_sub_object_declare_ref_del(const struct lu_env *env,
521                                    struct dt_object *dt,
522                                    struct thandle *th);
523 int lod_sub_object_ref_del(const struct lu_env *env, struct dt_object *dt,
524                            struct thandle *th);
525 int lod_sub_object_declare_destroy(const struct lu_env *env,
526                                    struct dt_object *dt,
527                                    struct thandle *th);
528 int lod_sub_object_destroy(const struct lu_env *env, struct dt_object *dt,
529                            struct thandle *th);
530 int lod_sub_object_declare_insert(const struct lu_env *env,
531                                   struct dt_object *dt,
532                                   const struct dt_rec *rec,
533                                   const struct dt_key *key,
534                                   struct thandle *th);
535 int lod_sub_object_index_insert(const struct lu_env *env, struct dt_object *dt,
536                                 const struct dt_rec *rec,
537                                 const struct dt_key *key, struct thandle *th,
538                                 int ign);
539 int lod_sub_object_declare_delete(const struct lu_env *env,
540                                   struct dt_object *dt,
541                                   const struct dt_key *key,
542                                   struct thandle *th);
543 int lod_sub_object_delete(const struct lu_env *env, struct dt_object *dt,
544                           const struct dt_key *name, struct thandle *th);
545 int lod_sub_object_declare_xattr_set(const struct lu_env *env,
546                                      struct dt_object *dt,
547                                      const struct lu_buf *buf,
548                                      const char *name, int fl,
549                                      struct thandle *th);
550 int lod_sub_object_xattr_set(const struct lu_env *env, struct dt_object *dt,
551                              const struct lu_buf *buf, const char *name, int fl,
552                              struct thandle *th);
553 int lod_sub_object_declare_attr_set(const struct lu_env *env,
554                                     struct dt_object *dt,
555                                     const struct lu_attr *attr,
556                                     struct thandle *th);
557 int lod_sub_object_attr_set(const struct lu_env *env,
558                             struct dt_object *dt,
559                             const struct lu_attr *attr,
560                             struct thandle *th);
561 int lod_sub_object_declare_xattr_del(const struct lu_env *env,
562                                      struct dt_object *dt,
563                                      const char *name,
564                                      struct thandle *th);
565 int lod_sub_object_xattr_del(const struct lu_env *env,
566                              struct dt_object *dt,
567                              const char *name,
568                              struct thandle *th);
569 int lod_sub_object_declare_write(const struct lu_env *env,
570                                  struct dt_object *dt,
571                                  const struct lu_buf *buf, loff_t pos,
572                                  struct thandle *th);
573 ssize_t lod_sub_object_write(const struct lu_env *env, struct dt_object *dt,
574                              const struct lu_buf *buf, loff_t *pos,
575                              struct thandle *th, int rq);
576 int lod_sub_object_declare_punch(const struct lu_env *env,
577                                  struct dt_object *dt,
578                                  __u64 start, __u64 end,
579                                  struct thandle *th);
580 int lod_sub_object_punch(const struct lu_env *env, struct dt_object *dt,
581                          __u64 start, __u64 end, struct thandle *th);
582
583 int lod_sub_prep_llog(const struct lu_env *env, struct lod_device *lod,
584                       struct dt_device *dt, int index);
585 #endif