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