Whamcloud - gitweb
LU-1304 osd: ->do_ah_init() to accept new object
[fs/lustre-release.git] / lustre / include / dt_object.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef __LUSTRE_DT_OBJECT_H
38 #define __LUSTRE_DT_OBJECT_H
39
40 /** \defgroup dt dt
41  * Sub-class of lu_object with methods common for "data" objects in OST stack.
42  *
43  * Data objects behave like regular files: you can read/write them, get and
44  * set their attributes. Implementation of dt interface is supposed to
45  * implement some form of garbage collection, normally reference counting
46  * (nlink) based one.
47  *
48  * Examples: osd (lustre/osd) is an implementation of dt interface.
49  * @{
50  */
51
52
53 /*
54  * super-class definitions.
55  */
56 #include <lu_object.h>
57
58 #include <libcfs/libcfs.h>
59
60 struct seq_file;
61 struct proc_dir_entry;
62 struct lustre_cfg;
63
64 struct thandle;
65 struct dt_device;
66 struct dt_object;
67 struct dt_index_features;
68 struct dt_quota_ctxt;
69 struct niobuf_local;
70 struct niobuf_remote;
71
72 typedef enum {
73         MNTOPT_USERXATTR        = 0x00000001,
74         MNTOPT_ACL              = 0x00000002,
75 } mntopt_t;
76
77 struct dt_device_param {
78         unsigned           ddp_max_name_len;
79         unsigned           ddp_max_nlink;
80         unsigned           ddp_block_shift;
81         mntopt_t           ddp_mntopts;
82         unsigned           ddp_max_ea_size;
83         void              *ddp_mnt; /* XXX: old code can retrieve mnt -bzzz */
84         int                ddp_mount_type;
85         unsigned long long ddp_maxbytes;
86         /* percentage of available space to reserve for grant error margin */
87         int                ddp_grant_reserved;
88         /* per-inode space consumption */
89         short              ddp_inodespace;
90         /* per-fragment grant overhead to be used by client for grant
91          * calculation */
92         int                ddp_grant_frag;
93 };
94
95 /**
96  * Per-transaction commit callback function
97  */
98 struct dt_txn_commit_cb;
99 typedef void (*dt_cb_t)(struct lu_env *env, struct thandle *th,
100                         struct dt_txn_commit_cb *cb, int err);
101 /**
102  * Special per-transaction callback for cases when just commit callback
103  * is needed and per-device callback are not convenient to use
104  */
105 #define TRANS_COMMIT_CB_MAGIC   0xa0a00a0a
106 #define MAX_COMMIT_CB_STR_LEN   32
107
108 struct dt_txn_commit_cb {
109         cfs_list_t      dcb_linkage;
110         dt_cb_t         dcb_func;
111         __u32           dcb_magic;
112         char            dcb_name[MAX_COMMIT_CB_STR_LEN];
113 };
114
115 /**
116  * Operations on dt device.
117  */
118 struct dt_device_operations {
119         /**
120          * Return device-wide statistics.
121          */
122         int   (*dt_statfs)(const struct lu_env *env,
123                            struct dt_device *dev, struct obd_statfs *osfs);
124         /**
125          * Create transaction, described by \a param.
126          */
127         struct thandle *(*dt_trans_create)(const struct lu_env *env,
128                                            struct dt_device *dev);
129         /**
130          * Start transaction, described by \a param.
131          */
132         int   (*dt_trans_start)(const struct lu_env *env,
133                                 struct dt_device *dev, struct thandle *th);
134         /**
135          * Finish previously started transaction.
136          */
137         int   (*dt_trans_stop)(const struct lu_env *env,
138                                struct thandle *th);
139         /**
140          * Add commit callback to the transaction.
141          */
142         int   (*dt_trans_cb_add)(struct thandle *th,
143                                  struct dt_txn_commit_cb *dcb);
144         /**
145          * Return fid of root index object.
146          */
147         int   (*dt_root_get)(const struct lu_env *env,
148                              struct dt_device *dev, struct lu_fid *f);
149         /**
150          * Return device configuration data.
151          */
152         void  (*dt_conf_get)(const struct lu_env *env,
153                              const struct dt_device *dev,
154                              struct dt_device_param *param);
155         /**
156          *  handling device state, mostly for tests
157          */
158         int   (*dt_sync)(const struct lu_env *env, struct dt_device *dev);
159         int   (*dt_ro)(const struct lu_env *env, struct dt_device *dev);
160         /**
161           * Start a transaction commit asynchronously
162           *
163           * \param env environment
164           * \param dev dt_device to start commit on
165           *
166           * \return 0 success, negative value if error
167           */
168          int   (*dt_commit_async)(const struct lu_env *env,
169                                   struct dt_device *dev);
170         /**
171          * Initialize capability context.
172          */
173         int   (*dt_init_capa_ctxt)(const struct lu_env *env,
174                                    struct dt_device *dev,
175                                    int mode, unsigned long timeout,
176                                    __u32 alg, struct lustre_capa_key *keys);
177         /**
178          * Initialize quota context.
179          */
180         void (*dt_init_quota_ctxt)(const struct lu_env *env,
181                                    struct dt_device *dev,
182                                    struct dt_quota_ctxt *ctxt, void *data);
183 };
184
185 struct dt_index_features {
186         /** required feature flags from enum dt_index_flags */
187         __u32 dif_flags;
188         /** minimal required key size */
189         size_t dif_keysize_min;
190         /** maximal required key size, 0 if no limit */
191         size_t dif_keysize_max;
192         /** minimal required record size */
193         size_t dif_recsize_min;
194         /** maximal required record size, 0 if no limit */
195         size_t dif_recsize_max;
196         /** pointer size for record */
197         size_t dif_ptrsize;
198 };
199
200 enum dt_index_flags {
201         /** index supports variable sized keys */
202         DT_IND_VARKEY = 1 << 0,
203         /** index supports variable sized records */
204         DT_IND_VARREC = 1 << 1,
205         /** index can be modified */
206         DT_IND_UPDATE = 1 << 2,
207         /** index supports records with non-unique (duplicate) keys */
208         DT_IND_NONUNQ = 1 << 3,
209         /**
210          * index support fixed-size keys sorted with natural numerical way
211          * and is able to return left-side value if no exact value found
212          */
213         DT_IND_RANGE = 1 << 4,
214 };
215
216 /**
217  * Features, required from index to support file system directories (mapping
218  * names to fids).
219  */
220 extern const struct dt_index_features dt_directory_features;
221 extern const struct dt_index_features dt_otable_features;
222
223 /* index features supported by the accounting objects */
224 extern const struct dt_index_features dt_acct_features;
225
226 /* index features supported by the quota global indexes */
227 extern const struct dt_index_features dt_quota_glb_features;
228
229 /* index features supported by the quota slave indexes */
230 extern const struct dt_index_features dt_quota_slv_features;
231
232 /**
233  * This is a general purpose dt allocation hint.
234  * It now contains the parent object.
235  * It can contain any allocation hint in the future.
236  */
237 struct dt_allocation_hint {
238         struct dt_object           *dah_parent;
239         __u32                       dah_mode;
240 };
241
242 /**
243  * object type specifier.
244  */
245
246 enum dt_format_type {
247         DFT_REGULAR,
248         DFT_DIR,
249         /** for mknod */
250         DFT_NODE,
251         /** for special index */
252         DFT_INDEX,
253         /** for symbolic link */
254         DFT_SYM,
255 };
256
257 /**
258  * object format specifier.
259  */
260 struct dt_object_format {
261         /** type for dt object */
262         enum dt_format_type dof_type;
263         union {
264                 struct dof_regular {
265                 } dof_reg;
266                 struct dof_dir {
267                 } dof_dir;
268                 struct dof_node {
269                 } dof_node;
270                 /**
271                  * special index need feature as parameter to create
272                  * special idx
273                  */
274                 struct dof_index {
275                         const struct dt_index_features *di_feat;
276                 } dof_idx;
277         } u;
278 };
279
280 enum dt_format_type dt_mode_to_dft(__u32 mode);
281
282 typedef __u64 dt_obj_version_t;
283
284 /**
285  * Per-dt-object operations.
286  */
287 struct dt_object_operations {
288         void  (*do_read_lock)(const struct lu_env *env,
289                               struct dt_object *dt, unsigned role);
290         void  (*do_write_lock)(const struct lu_env *env,
291                                struct dt_object *dt, unsigned role);
292         void  (*do_read_unlock)(const struct lu_env *env,
293                                 struct dt_object *dt);
294         void  (*do_write_unlock)(const struct lu_env *env,
295                                  struct dt_object *dt);
296         int  (*do_write_locked)(const struct lu_env *env,
297                                 struct dt_object *dt);
298         /**
299          * Note: following ->do_{x,}attr_{set,get}() operations are very
300          * similar to ->moo_{x,}attr_{set,get}() operations in struct
301          * md_object_operations (see md_object.h). These operations are not in
302          * lu_object_operations, because ->do_{x,}attr_set() versions take
303          * transaction handle as an argument (this transaction is started by
304          * caller). We might factor ->do_{x,}attr_get() into
305          * lu_object_operations, but that would break existing symmetry.
306          */
307
308         /**
309          * Return standard attributes.
310          *
311          * precondition: lu_object_exists(&dt->do_lu);
312          */
313         int   (*do_attr_get)(const struct lu_env *env,
314                              struct dt_object *dt, struct lu_attr *attr,
315                              struct lustre_capa *capa);
316         /**
317          * Set standard attributes.
318          *
319          * precondition: dt_object_exists(dt);
320          */
321         int   (*do_declare_attr_set)(const struct lu_env *env,
322                                      struct dt_object *dt,
323                                      const struct lu_attr *attr,
324                                      struct thandle *handle);
325         int   (*do_attr_set)(const struct lu_env *env,
326                              struct dt_object *dt,
327                              const struct lu_attr *attr,
328                              struct thandle *handle,
329                              struct lustre_capa *capa);
330         /**
331          * Return a value of an extended attribute.
332          *
333          * precondition: dt_object_exists(dt);
334          */
335         int   (*do_xattr_get)(const struct lu_env *env, struct dt_object *dt,
336                               struct lu_buf *buf, const char *name,
337                               struct lustre_capa *capa);
338         /**
339          * Set value of an extended attribute.
340          *
341          * \a fl - flags from enum lu_xattr_flags
342          *
343          * precondition: dt_object_exists(dt);
344          */
345         int   (*do_declare_xattr_set)(const struct lu_env *env,
346                                       struct dt_object *dt,
347                                       const struct lu_buf *buf,
348                                       const char *name, int fl,
349                                       struct thandle *handle);
350         int   (*do_xattr_set)(const struct lu_env *env,
351                               struct dt_object *dt, const struct lu_buf *buf,
352                               const char *name, int fl, struct thandle *handle,
353                               struct lustre_capa *capa);
354         /**
355          * Delete existing extended attribute.
356          *
357          * precondition: dt_object_exists(dt);
358          */
359         int   (*do_declare_xattr_del)(const struct lu_env *env,
360                                       struct dt_object *dt,
361                                       const char *name, struct thandle *handle);
362         int   (*do_xattr_del)(const struct lu_env *env,
363                               struct dt_object *dt,
364                               const char *name, struct thandle *handle,
365                               struct lustre_capa *capa);
366         /**
367          * Place list of existing extended attributes into \a buf (which has
368          * length len).
369          *
370          * precondition: dt_object_exists(dt);
371          */
372         int   (*do_xattr_list)(const struct lu_env *env,
373                                struct dt_object *dt, struct lu_buf *buf,
374                                struct lustre_capa *capa);
375         /**
376          * Init allocation hint using parent object and child mode.
377          * (1) The \a parent might be NULL if this is a partial creation for
378          *     remote object.
379          * (2) The type of child is in \a child_mode.
380          * (3) The result hint is stored in \a ah;
381          */
382         void  (*do_ah_init)(const struct lu_env *env,
383                             struct dt_allocation_hint *ah,
384                             struct dt_object *parent,
385                             struct dt_object *child,
386                             cfs_umode_t child_mode);
387         /**
388          * Create new object on this device.
389          *
390          * precondition: !dt_object_exists(dt);
391          * postcondition: ergo(result == 0, dt_object_exists(dt));
392          */
393         int   (*do_declare_create)(const struct lu_env *env,
394                                    struct dt_object *dt,
395                                    struct lu_attr *attr,
396                                    struct dt_allocation_hint *hint,
397                                    struct dt_object_format *dof,
398                                    struct thandle *th);
399         int   (*do_create)(const struct lu_env *env, struct dt_object *dt,
400                            struct lu_attr *attr,
401                            struct dt_allocation_hint *hint,
402                            struct dt_object_format *dof,
403                            struct thandle *th);
404
405         /**
406           Destroy object on this device
407          * precondition: !dt_object_exists(dt);
408          * postcondition: ergo(result == 0, dt_object_exists(dt));
409          */
410         int   (*do_declare_destroy)(const struct lu_env *env,
411                                     struct dt_object *dt,
412                                     struct thandle *th);
413         int   (*do_destroy)(const struct lu_env *env, struct dt_object *dt,
414                             struct thandle *th);
415
416         /**
417          * Announce that this object is going to be used as an index. This
418          * operation check that object supports indexing operations and
419          * installs appropriate dt_index_operations vector on success.
420          *
421          * Also probes for features. Operation is successful if all required
422          * features are supported.
423          */
424         int   (*do_index_try)(const struct lu_env *env,
425                               struct dt_object *dt,
426                               const struct dt_index_features *feat);
427         /**
428          * Add nlink of the object
429          * precondition: dt_object_exists(dt);
430          */
431         int   (*do_declare_ref_add)(const struct lu_env *env,
432                                     struct dt_object *dt, struct thandle *th);
433         int   (*do_ref_add)(const struct lu_env *env,
434                             struct dt_object *dt, struct thandle *th);
435         /**
436          * Del nlink of the object
437          * precondition: dt_object_exists(dt);
438          */
439         int   (*do_declare_ref_del)(const struct lu_env *env,
440                                     struct dt_object *dt, struct thandle *th);
441         int   (*do_ref_del)(const struct lu_env *env,
442                             struct dt_object *dt, struct thandle *th);
443
444         struct obd_capa *(*do_capa_get)(const struct lu_env *env,
445                                         struct dt_object *dt,
446                                         struct lustre_capa *old,
447                                         __u64 opc);
448         int (*do_object_sync)(const struct lu_env *, struct dt_object *);
449         /**
450          * Get object info of next level. Currently, only get inode from osd.
451          * This is only used by quota b=16542
452          * precondition: dt_object_exists(dt);
453          */
454         int (*do_data_get)(const struct lu_env *env, struct dt_object *dt,
455                            void **data);
456 };
457
458 /**
459  * Per-dt-object operations on "file body".
460  */
461 struct dt_body_operations {
462         /**
463          * precondition: dt_object_exists(dt);
464          */
465         ssize_t (*dbo_read)(const struct lu_env *env, struct dt_object *dt,
466                             struct lu_buf *buf, loff_t *pos,
467                             struct lustre_capa *capa);
468         /**
469          * precondition: dt_object_exists(dt);
470          */
471         ssize_t (*dbo_declare_write)(const struct lu_env *env,
472                                      struct dt_object *dt,
473                                      const loff_t size, loff_t pos,
474                                      struct thandle *handle);
475         ssize_t (*dbo_write)(const struct lu_env *env, struct dt_object *dt,
476                              const struct lu_buf *buf, loff_t *pos,
477                              struct thandle *handle, struct lustre_capa *capa,
478                              int ignore_quota);
479         /*
480          * methods for zero-copy IO
481          */
482
483         /*
484          * precondition: dt_object_exists(dt);
485          * returns:
486          * < 0 - error code
487          * = 0 - illegal
488          * > 0 - number of local buffers prepared
489          */
490         int (*dbo_bufs_get)(const struct lu_env *env, struct dt_object *dt,
491                             loff_t pos, ssize_t len, struct niobuf_local *lb,
492                             int rw, struct lustre_capa *capa);
493         /*
494          * precondition: dt_object_exists(dt);
495          */
496         int (*dbo_bufs_put)(const struct lu_env *env, struct dt_object *dt,
497                             struct niobuf_local *lb, int nr);
498         /*
499          * precondition: dt_object_exists(dt);
500          */
501         int (*dbo_write_prep)(const struct lu_env *env, struct dt_object *dt,
502                               struct niobuf_local *lb, int nr);
503         /*
504          * precondition: dt_object_exists(dt);
505          */
506         int (*dbo_declare_write_commit)(const struct lu_env *env,
507                                         struct dt_object *dt,
508                                         struct niobuf_local *,
509                                         int, struct thandle *);
510         /*
511          * precondition: dt_object_exists(dt);
512          */
513         int (*dbo_write_commit)(const struct lu_env *env, struct dt_object *dt,
514                                 struct niobuf_local *, int, struct thandle *);
515         /*
516          * precondition: dt_object_exists(dt);
517          */
518         int (*dbo_read_prep)(const struct lu_env *env, struct dt_object *dt,
519                              struct niobuf_local *lnb, int nr);
520         int (*dbo_fiemap_get)(const struct lu_env *env, struct dt_object *dt,
521                               struct ll_user_fiemap *fm);
522         /**
523          * Punch object's content
524          * precondition: regular object, not index
525          */
526         int   (*do_declare_punch)(const struct lu_env *, struct dt_object *,
527                                   __u64, __u64, struct thandle *th);
528         int   (*do_punch)(const struct lu_env *env, struct dt_object *dt,
529                           __u64 start, __u64 end, struct thandle *th,
530                           struct lustre_capa *capa);
531 };
532
533 /**
534  * Incomplete type of index record.
535  */
536 struct dt_rec;
537
538 /**
539  * Incomplete type of index key.
540  */
541 struct dt_key;
542
543 /**
544  * Incomplete type of dt iterator.
545  */
546 struct dt_it;
547
548 /**
549  * Per-dt-object operations on object as index.
550  */
551 struct dt_index_operations {
552         /**
553          * precondition: dt_object_exists(dt);
554          */
555         int (*dio_lookup)(const struct lu_env *env, struct dt_object *dt,
556                           struct dt_rec *rec, const struct dt_key *key,
557                           struct lustre_capa *capa);
558         /**
559          * precondition: dt_object_exists(dt);
560          */
561         int (*dio_declare_insert)(const struct lu_env *env,
562                                   struct dt_object *dt,
563                                   const struct dt_rec *rec,
564                                   const struct dt_key *key,
565                                   struct thandle *handle);
566         int (*dio_insert)(const struct lu_env *env, struct dt_object *dt,
567                           const struct dt_rec *rec, const struct dt_key *key,
568                           struct thandle *handle, struct lustre_capa *capa,
569                           int ignore_quota);
570         /**
571          * precondition: dt_object_exists(dt);
572          */
573         int (*dio_declare_delete)(const struct lu_env *env,
574                                   struct dt_object *dt,
575                                   const struct dt_key *key,
576                                   struct thandle *handle);
577         int (*dio_delete)(const struct lu_env *env, struct dt_object *dt,
578                           const struct dt_key *key, struct thandle *handle,
579                           struct lustre_capa *capa);
580         /**
581          * Iterator interface
582          */
583         struct dt_it_ops {
584                 /**
585                  * Allocate and initialize new iterator.
586                  *
587                  * precondition: dt_object_exists(dt);
588                  */
589                 struct dt_it *(*init)(const struct lu_env *env,
590                                       struct dt_object *dt,
591                                       __u32 attr,
592                                       struct lustre_capa *capa);
593                 void          (*fini)(const struct lu_env *env,
594                                       struct dt_it *di);
595                 int            (*get)(const struct lu_env *env,
596                                       struct dt_it *di,
597                                       const struct dt_key *key);
598                 void           (*put)(const struct lu_env *env,
599                                       struct dt_it *di);
600                 int           (*next)(const struct lu_env *env,
601                                       struct dt_it *di);
602                 struct dt_key *(*key)(const struct lu_env *env,
603                                       const struct dt_it *di);
604                 int       (*key_size)(const struct lu_env *env,
605                                       const struct dt_it *di);
606                 int            (*rec)(const struct lu_env *env,
607                                       const struct dt_it *di,
608                                       struct dt_rec *rec,
609                                       __u32 attr);
610                 __u64        (*store)(const struct lu_env *env,
611                                       const struct dt_it *di);
612                 int           (*load)(const struct lu_env *env,
613                                       const struct dt_it *di, __u64 hash);
614                 int        (*key_rec)(const struct lu_env *env,
615                                       const struct dt_it *di, void* key_rec);
616         } dio_it;
617 };
618
619 enum dt_otable_it_valid {
620         DOIV_ERROR_HANDLE       = 0x0001,
621 };
622
623 enum dt_otable_it_flags {
624         /* Exit when fail. */
625         DOIF_FAILOUT    = 0x0001,
626
627         /* Reset iteration position to the device beginning. */
628         DOIF_RESET      = 0x0002,
629
630         /* There is up layer component uses the iteration. */
631         DOIF_OUTUSED    = 0x0004,
632 };
633
634 /* otable based iteration needs to use the common DT interation APIs.
635  * To initialize the iteration, it needs call dio_it::init() firstly.
636  * Here is how the otable based iteration should prepare arguments to
637  * call dt_it_ops::init().
638  *
639  * For otable based iteration, the 32-bits 'attr' for dt_it_ops::init()
640  * is composed of two parts:
641  * low 16-bits is for valid bits, high 16-bits is for flags bits. */
642 #define DT_OTABLE_IT_FLAGS_SHIFT        16
643 #define DT_OTABLE_IT_FLAGS_MASK         0xffff0000
644
645 struct dt_device {
646         struct lu_device                   dd_lu_dev;
647         const struct dt_device_operations *dd_ops;
648
649         /**
650          * List of dt_txn_callback (see below). This is not protected in any
651          * way, because callbacks are supposed to be added/deleted only during
652          * single-threaded start-up shut-down procedures.
653          */
654         cfs_list_t                         dd_txn_callbacks;
655 };
656
657 int  dt_device_init(struct dt_device *dev, struct lu_device_type *t);
658 void dt_device_fini(struct dt_device *dev);
659
660 static inline int lu_device_is_dt(const struct lu_device *d)
661 {
662         return ergo(d != NULL, d->ld_type->ldt_tags & LU_DEVICE_DT);
663 }
664
665 static inline struct dt_device * lu2dt_dev(struct lu_device *l)
666 {
667         LASSERT(lu_device_is_dt(l));
668         return container_of0(l, struct dt_device, dd_lu_dev);
669 }
670
671 struct dt_object {
672         struct lu_object                   do_lu;
673         const struct dt_object_operations *do_ops;
674         const struct dt_body_operations   *do_body_ops;
675         const struct dt_index_operations  *do_index_ops;
676 };
677
678 /*
679  * In-core representation of per-device local object OID storage
680  */
681 struct local_oid_storage {
682         /* all initialized llog systems on this node linked by this */
683         cfs_list_t        los_list;
684
685         /* how many handle's reference this los has */
686         cfs_atomic_t      los_refcount;
687         struct dt_device *los_dev;
688         struct dt_object *los_obj;
689
690         /* data used to generate new fids */
691         cfs_mutex_t       los_id_lock;
692         __u64             los_seq;
693         __u32             los_last_oid;
694 };
695
696 static inline struct dt_object *lu2dt(struct lu_object *l)
697 {
698         LASSERT(l == NULL || IS_ERR(l) || lu_device_is_dt(l->lo_dev));
699         return container_of0(l, struct dt_object, do_lu);
700 }
701
702 int  dt_object_init(struct dt_object *obj,
703                     struct lu_object_header *h, struct lu_device *d);
704
705 void dt_object_fini(struct dt_object *obj);
706
707 static inline int dt_object_exists(const struct dt_object *dt)
708 {
709         return lu_object_exists(&dt->do_lu);
710 }
711
712 /**
713  * This is the general purpose transaction handle.
714  * 1. Transaction Life Cycle
715  *      This transaction handle is allocated upon starting a new transaction,
716  *      and deallocated after this transaction is committed.
717  * 2. Transaction Nesting
718  *      We do _NOT_ support nested transaction. So, every thread should only
719  *      have one active transaction, and a transaction only belongs to one
720  *      thread. Due to this, transaction handle need no reference count.
721  * 3. Transaction & dt_object locking
722  *      dt_object locks should be taken inside transaction.
723  * 4. Transaction & RPC
724  *      No RPC request should be issued inside transaction.
725  */
726 struct thandle {
727         /** the dt device on which the transactions are executed */
728         struct dt_device *th_dev;
729
730         /** additional tags (layers can add in declare) */
731         __u32             th_tags;
732
733         /** context for this transaction, tag is LCT_TX_HANDLE */
734         struct lu_context th_ctx;
735
736         /** the last operation result in this transaction.
737          * this value is used in recovery */
738         __s32             th_result;
739
740         /** whether we need sync commit */
741         int               th_sync:1;
742
743         /* local transation, no need to inform other layers */
744         int               th_local:1;
745 };
746
747 /**
748  * Transaction call-backs.
749  *
750  * These are invoked by osd (or underlying transaction engine) when
751  * transaction changes state.
752  *
753  * Call-backs are used by upper layers to modify transaction parameters and to
754  * perform some actions on for each transaction state transition. Typical
755  * example is mdt registering call-back to write into last-received file
756  * before each transaction commit.
757  */
758 struct dt_txn_callback {
759         int (*dtc_txn_start)(const struct lu_env *env,
760                              struct thandle *txn, void *cookie);
761         int (*dtc_txn_stop)(const struct lu_env *env,
762                             struct thandle *txn, void *cookie);
763         void (*dtc_txn_commit)(struct thandle *txn, void *cookie);
764         void                *dtc_cookie;
765         __u32                dtc_tag;
766         cfs_list_t           dtc_linkage;
767 };
768
769 void dt_txn_callback_add(struct dt_device *dev, struct dt_txn_callback *cb);
770 void dt_txn_callback_del(struct dt_device *dev, struct dt_txn_callback *cb);
771
772 int dt_txn_hook_start(const struct lu_env *env,
773                       struct dt_device *dev, struct thandle *txn);
774 int dt_txn_hook_stop(const struct lu_env *env, struct thandle *txn);
775 void dt_txn_hook_commit(struct thandle *txn);
776
777 int dt_try_as_dir(const struct lu_env *env, struct dt_object *obj);
778
779 /**
780  * Callback function used for parsing path.
781  * \see llo_store_resolve
782  */
783 typedef int (*dt_entry_func_t)(const struct lu_env *env,
784                             const char *name,
785                             void *pvt);
786
787 #define DT_MAX_PATH 1024
788
789 int dt_path_parser(const struct lu_env *env,
790                    char *local, dt_entry_func_t entry_func,
791                    void *data);
792
793 struct dt_object *dt_store_open(const struct lu_env *env,
794                                 struct dt_device *dt,
795                                 const char *dirname,
796                                 const char *filename,
797                                 struct lu_fid *fid);
798
799 struct dt_object *dt_find_or_create(const struct lu_env *env,
800                                     struct dt_device *dt,
801                                     const struct lu_fid *fid,
802                                     struct dt_object_format *dof,
803                                     struct lu_attr *attr);
804
805 struct dt_object *dt_locate_at(const struct lu_env *env,
806                                struct dt_device *dev,
807                                const struct lu_fid *fid,
808                                struct lu_device *top_dev);
809 static inline struct dt_object *
810 dt_locate(const struct lu_env *env, struct dt_device *dev,
811           const struct lu_fid *fid)
812 {
813         return dt_locate_at(env, dev, fid, dev->dd_lu_dev.ld_site->ls_top_dev);
814 }
815
816
817 int local_oid_storage_init(const struct lu_env *env, struct dt_device *dev,
818                            const struct lu_fid *first_fid,
819                            struct local_oid_storage **los);
820 void local_oid_storage_fini(const struct lu_env *env,
821                             struct local_oid_storage *los);
822 int local_object_fid_generate(const struct lu_env *env,
823                               struct local_oid_storage *los,
824                               struct lu_fid *fid);
825 int local_object_declare_create(const struct lu_env *env,
826                                 struct local_oid_storage *los,
827                                 struct dt_object *o,
828                                 struct lu_attr *attr,
829                                 struct dt_object_format *dof,
830                                 struct thandle *th);
831 int local_object_create(const struct lu_env *env,
832                         struct local_oid_storage *los,
833                         struct dt_object *o,
834                         struct lu_attr *attr, struct dt_object_format *dof,
835                         struct thandle *th);
836 struct dt_object *local_file_find_or_create(const struct lu_env *env,
837                                             struct local_oid_storage *los,
838                                             struct dt_object *parent,
839                                             const char *name, __u32 mode);
840 struct dt_object *local_file_find_or_create_with_fid(const struct lu_env *env,
841                                                      struct dt_device *dt,
842                                                      const struct lu_fid *fid,
843                                                      struct dt_object *parent,
844                                                      const char *name,
845                                                      __u32 mode);
846
847 int dt_lookup_dir(const struct lu_env *env, struct dt_object *dir,
848                   const char *name, struct lu_fid *fid);
849
850 static inline int dt_object_sync(const struct lu_env *env,
851                                  struct dt_object *o)
852 {
853         LASSERT(o);
854         LASSERT(o->do_ops);
855         LASSERT(o->do_ops->do_object_sync);
856         return o->do_ops->do_object_sync(env, o);
857 }
858
859 int dt_declare_version_set(const struct lu_env *env, struct dt_object *o,
860                            struct thandle *th);
861 void dt_version_set(const struct lu_env *env, struct dt_object *o,
862                     dt_obj_version_t version, struct thandle *th);
863 dt_obj_version_t dt_version_get(const struct lu_env *env, struct dt_object *o);
864
865
866 int dt_read(const struct lu_env *env, struct dt_object *dt,
867             struct lu_buf *buf, loff_t *pos);
868 int dt_record_read(const struct lu_env *env, struct dt_object *dt,
869                    struct lu_buf *buf, loff_t *pos);
870 int dt_record_write(const struct lu_env *env, struct dt_object *dt,
871                     const struct lu_buf *buf, loff_t *pos, struct thandle *th);
872
873 static inline struct thandle *dt_trans_create(const struct lu_env *env,
874                                               struct dt_device *d)
875 {
876         LASSERT(d->dd_ops->dt_trans_create);
877         return d->dd_ops->dt_trans_create(env, d);
878 }
879
880 static inline int dt_trans_start(const struct lu_env *env,
881                                  struct dt_device *d, struct thandle *th)
882 {
883         LASSERT(d->dd_ops->dt_trans_start);
884         return d->dd_ops->dt_trans_start(env, d, th);
885 }
886
887 /* for this transaction hooks shouldn't be called */
888 static inline int dt_trans_start_local(const struct lu_env *env,
889                                        struct dt_device *d, struct thandle *th)
890 {
891         LASSERT(d->dd_ops->dt_trans_start);
892         th->th_local = 1;
893         return d->dd_ops->dt_trans_start(env, d, th);
894 }
895
896 static inline int dt_trans_stop(const struct lu_env *env,
897                                 struct dt_device *d, struct thandle *th)
898 {
899         LASSERT(d->dd_ops->dt_trans_stop);
900         return d->dd_ops->dt_trans_stop(env, th);
901 }
902
903 static inline int dt_trans_cb_add(struct thandle *th,
904                                   struct dt_txn_commit_cb *dcb)
905 {
906         LASSERT(th->th_dev->dd_ops->dt_trans_cb_add);
907         dcb->dcb_magic = TRANS_COMMIT_CB_MAGIC;
908         return th->th_dev->dd_ops->dt_trans_cb_add(th, dcb);
909 }
910 /** @} dt */
911
912
913 static inline int dt_declare_record_write(const struct lu_env *env,
914                                           struct dt_object *dt,
915                                           int size, loff_t pos,
916                                           struct thandle *th)
917 {
918         int rc;
919
920         LASSERTF(dt != NULL, "dt is NULL when we want to write record\n");
921         LASSERT(th != NULL);
922         LASSERT(dt->do_body_ops);
923         LASSERT(dt->do_body_ops->dbo_declare_write);
924         rc = dt->do_body_ops->dbo_declare_write(env, dt, size, pos, th);
925         return rc;
926 }
927
928 static inline int dt_declare_create(const struct lu_env *env,
929                                     struct dt_object *dt,
930                                     struct lu_attr *attr,
931                                     struct dt_allocation_hint *hint,
932                                     struct dt_object_format *dof,
933                                     struct thandle *th)
934 {
935         LASSERT(dt);
936         LASSERT(dt->do_ops);
937         LASSERT(dt->do_ops->do_declare_create);
938         return dt->do_ops->do_declare_create(env, dt, attr, hint, dof, th);
939 }
940
941 static inline int dt_create(const struct lu_env *env,
942                                     struct dt_object *dt,
943                                     struct lu_attr *attr,
944                                     struct dt_allocation_hint *hint,
945                                     struct dt_object_format *dof,
946                                     struct thandle *th)
947 {
948         LASSERT(dt);
949         LASSERT(dt->do_ops);
950         LASSERT(dt->do_ops->do_create);
951         return dt->do_ops->do_create(env, dt, attr, hint, dof, th);
952 }
953
954 static inline int dt_declare_destroy(const struct lu_env *env,
955                                      struct dt_object *dt,
956                                      struct thandle *th)
957 {
958         LASSERT(dt);
959         LASSERT(dt->do_ops);
960         LASSERT(dt->do_ops->do_declare_destroy);
961         return dt->do_ops->do_declare_destroy(env, dt, th);
962 }
963
964 static inline int dt_destroy(const struct lu_env *env,
965                              struct dt_object *dt,
966                              struct thandle *th)
967 {
968         LASSERT(dt);
969         LASSERT(dt->do_ops);
970         LASSERT(dt->do_ops->do_destroy);
971         return dt->do_ops->do_destroy(env, dt, th);
972 }
973
974 static inline void dt_read_lock(const struct lu_env *env,
975                                 struct dt_object *dt,
976                                 unsigned role)
977 {
978         LASSERT(dt);
979         LASSERT(dt->do_ops);
980         LASSERT(dt->do_ops->do_read_lock);
981         dt->do_ops->do_read_lock(env, dt, role);
982 }
983
984 static inline void dt_write_lock(const struct lu_env *env,
985                                 struct dt_object *dt,
986                                 unsigned role)
987 {
988         LASSERT(dt);
989         LASSERT(dt->do_ops);
990         LASSERT(dt->do_ops->do_write_lock);
991         dt->do_ops->do_write_lock(env, dt, role);
992 }
993
994 static inline void dt_read_unlock(const struct lu_env *env,
995                                 struct dt_object *dt)
996 {
997         LASSERT(dt);
998         LASSERT(dt->do_ops);
999         LASSERT(dt->do_ops->do_read_unlock);
1000         dt->do_ops->do_read_unlock(env, dt);
1001 }
1002
1003 static inline void dt_write_unlock(const struct lu_env *env,
1004                                 struct dt_object *dt)
1005 {
1006         LASSERT(dt);
1007         LASSERT(dt->do_ops);
1008         LASSERT(dt->do_ops->do_write_unlock);
1009         dt->do_ops->do_write_unlock(env, dt);
1010 }
1011
1012 static inline int dt_write_locked(const struct lu_env *env,
1013                                   struct dt_object *dt)
1014 {
1015         LASSERT(dt);
1016         LASSERT(dt->do_ops);
1017         LASSERT(dt->do_ops->do_write_locked);
1018         return dt->do_ops->do_write_locked(env, dt);
1019 }
1020
1021 static inline int dt_attr_get(const struct lu_env *env, struct dt_object *dt,
1022                               struct lu_attr *la, void *arg)
1023 {
1024         LASSERT(dt);
1025         LASSERT(dt->do_ops);
1026         LASSERT(dt->do_ops->do_attr_get);
1027         return dt->do_ops->do_attr_get(env, dt, la, arg);
1028 }
1029
1030 static inline int dt_declare_attr_set(const struct lu_env *env,
1031                                       struct dt_object *dt,
1032                                       const struct lu_attr *la,
1033                                       struct thandle *th)
1034 {
1035         LASSERT(dt);
1036         LASSERT(dt->do_ops);
1037         LASSERT(dt->do_ops->do_declare_attr_set);
1038         return dt->do_ops->do_declare_attr_set(env, dt, la, th);
1039 }
1040
1041 static inline int dt_attr_set(const struct lu_env *env, struct dt_object *dt,
1042                               const struct lu_attr *la, struct thandle *th,
1043                               struct lustre_capa *capa)
1044 {
1045         LASSERT(dt);
1046         LASSERT(dt->do_ops);
1047         LASSERT(dt->do_ops->do_attr_set);
1048         return dt->do_ops->do_attr_set(env, dt, la, th, capa);
1049 }
1050
1051 static inline int dt_declare_ref_add(const struct lu_env *env,
1052                                      struct dt_object *dt, struct thandle *th)
1053 {
1054         LASSERT(dt);
1055         LASSERT(dt->do_ops);
1056         LASSERT(dt->do_ops->do_declare_ref_add);
1057         return dt->do_ops->do_declare_ref_add(env, dt, th);
1058 }
1059
1060 static inline int dt_ref_add(const struct lu_env *env,
1061                              struct dt_object *dt, struct thandle *th)
1062 {
1063         LASSERT(dt);
1064         LASSERT(dt->do_ops);
1065         LASSERT(dt->do_ops->do_ref_add);
1066         return dt->do_ops->do_ref_add(env, dt, th);
1067 }
1068
1069 static inline int dt_declare_ref_del(const struct lu_env *env,
1070                                      struct dt_object *dt, struct thandle *th)
1071 {
1072         LASSERT(dt);
1073         LASSERT(dt->do_ops);
1074         LASSERT(dt->do_ops->do_declare_ref_del);
1075         return dt->do_ops->do_declare_ref_del(env, dt, th);
1076 }
1077
1078 static inline int dt_ref_del(const struct lu_env *env,
1079                              struct dt_object *dt, struct thandle *th)
1080 {
1081         LASSERT(dt);
1082         LASSERT(dt->do_ops);
1083         LASSERT(dt->do_ops->do_ref_del);
1084         return dt->do_ops->do_ref_del(env, dt, th);
1085 }
1086
1087 static inline struct obd_capa *dt_capa_get(const struct lu_env *env,
1088                                            struct dt_object *dt,
1089                                            struct lustre_capa *old, __u64 opc)
1090 {
1091         LASSERT(dt);
1092         LASSERT(dt->do_ops);
1093         LASSERT(dt->do_ops->do_ref_del);
1094         return dt->do_ops->do_capa_get(env, dt, old, opc);
1095 }
1096
1097 static inline int dt_bufs_get(const struct lu_env *env, struct dt_object *d,
1098                               struct niobuf_remote *rnb,
1099                               struct niobuf_local *lnb, int rw,
1100                               struct lustre_capa *capa)
1101 {
1102         LASSERT(d);
1103         LASSERT(d->do_body_ops);
1104         LASSERT(d->do_body_ops->dbo_bufs_get);
1105         return d->do_body_ops->dbo_bufs_get(env, d, rnb->offset,
1106                                             rnb->len, lnb, rw, capa);
1107 }
1108
1109 static inline int dt_bufs_put(const struct lu_env *env, struct dt_object *d,
1110                               struct niobuf_local *lnb, int n)
1111 {
1112         LASSERT(d);
1113         LASSERT(d->do_body_ops);
1114         LASSERT(d->do_body_ops->dbo_bufs_put);
1115         return d->do_body_ops->dbo_bufs_put(env, d, lnb, n);
1116 }
1117
1118 static inline int dt_write_prep(const struct lu_env *env, struct dt_object *d,
1119                                 struct niobuf_local *lnb, int n)
1120 {
1121         LASSERT(d);
1122         LASSERT(d->do_body_ops);
1123         LASSERT(d->do_body_ops->dbo_write_prep);
1124         return d->do_body_ops->dbo_write_prep(env, d, lnb, n);
1125 }
1126
1127 static inline int dt_declare_write_commit(const struct lu_env *env,
1128                                           struct dt_object *d,
1129                                           struct niobuf_local *lnb,
1130                                           int n, struct thandle *th)
1131 {
1132         LASSERTF(d != NULL, "dt is NULL when we want to declare write\n");
1133         LASSERT(th != NULL);
1134         return d->do_body_ops->dbo_declare_write_commit(env, d, lnb, n, th);
1135 }
1136
1137
1138 static inline int dt_write_commit(const struct lu_env *env,
1139                                   struct dt_object *d, struct niobuf_local *lnb,
1140                                   int n, struct thandle *th)
1141 {
1142         LASSERT(d);
1143         LASSERT(d->do_body_ops);
1144         LASSERT(d->do_body_ops->dbo_write_commit);
1145         return d->do_body_ops->dbo_write_commit(env, d, lnb, n, th);
1146 }
1147
1148 static inline int dt_read_prep(const struct lu_env *env, struct dt_object *d,
1149                                struct niobuf_local *lnb, int n)
1150 {
1151         LASSERT(d);
1152         LASSERT(d->do_body_ops);
1153         LASSERT(d->do_body_ops->dbo_read_prep);
1154         return d->do_body_ops->dbo_read_prep(env, d, lnb, n);
1155 }
1156
1157 static inline int dt_declare_punch(const struct lu_env *env,
1158                                    struct dt_object *dt, __u64 start,
1159                                    __u64 end, struct thandle *th)
1160 {
1161         LASSERT(dt);
1162         LASSERT(dt->do_body_ops);
1163         LASSERT(dt->do_body_ops->do_declare_punch);
1164         return dt->do_body_ops->do_declare_punch(env, dt, start, end, th);
1165 }
1166
1167 static inline int dt_punch(const struct lu_env *env, struct dt_object *dt,
1168                            __u64 start, __u64 end, struct thandle *th,
1169                            struct lustre_capa *capa)
1170 {
1171         LASSERT(dt);
1172         LASSERT(dt->do_body_ops);
1173         LASSERT(dt->do_body_ops->do_punch);
1174         return dt->do_body_ops->do_punch(env, dt, start, end, th, capa);
1175 }
1176
1177 static inline int dt_fiemap_get(const struct lu_env *env, struct dt_object *d,
1178                                 struct ll_user_fiemap *fm)
1179 {
1180         LASSERT(d);
1181         if (d->do_body_ops == NULL)
1182                 return -EPROTO;
1183         if (d->do_body_ops->dbo_fiemap_get == NULL)
1184                 return -EOPNOTSUPP;
1185         return d->do_body_ops->dbo_fiemap_get(env, d, fm);
1186 }
1187
1188 static inline int dt_statfs(const struct lu_env *env, struct dt_device *dev,
1189                             struct obd_statfs *osfs)
1190 {
1191         LASSERT(dev);
1192         LASSERT(dev->dd_ops);
1193         LASSERT(dev->dd_ops->dt_statfs);
1194         return dev->dd_ops->dt_statfs(env, dev, osfs);
1195 }
1196
1197 static inline int dt_root_get(const struct lu_env *env, struct dt_device *dev,
1198                               struct lu_fid *f)
1199 {
1200         LASSERT(dev);
1201         LASSERT(dev->dd_ops);
1202         LASSERT(dev->dd_ops->dt_root_get);
1203         return dev->dd_ops->dt_root_get(env, dev, f);
1204 }
1205
1206 static inline void dt_conf_get(const struct lu_env *env,
1207                                const struct dt_device *dev,
1208                                struct dt_device_param *param)
1209 {
1210         LASSERT(dev);
1211         LASSERT(dev->dd_ops);
1212         LASSERT(dev->dd_ops->dt_conf_get);
1213         return dev->dd_ops->dt_conf_get(env, dev, param);
1214 }
1215
1216 static inline int dt_sync(const struct lu_env *env, struct dt_device *dev)
1217 {
1218         LASSERT(dev);
1219         LASSERT(dev->dd_ops);
1220         LASSERT(dev->dd_ops->dt_sync);
1221         return dev->dd_ops->dt_sync(env, dev);
1222 }
1223
1224 static inline int dt_ro(const struct lu_env *env, struct dt_device *dev)
1225 {
1226         LASSERT(dev);
1227         LASSERT(dev->dd_ops);
1228         LASSERT(dev->dd_ops->dt_ro);
1229         return dev->dd_ops->dt_ro(env, dev);
1230 }
1231
1232 static inline int dt_declare_insert(const struct lu_env *env,
1233                                     struct dt_object *dt,
1234                                     const struct dt_rec *rec,
1235                                     const struct dt_key *key,
1236                                     struct thandle *th)
1237 {
1238         LASSERT(dt);
1239         LASSERT(dt->do_index_ops);
1240         LASSERT(dt->do_index_ops->dio_declare_insert);
1241         return dt->do_index_ops->dio_declare_insert(env, dt, rec, key, th);
1242 }
1243
1244 static inline int dt_insert(const struct lu_env *env,
1245                                     struct dt_object *dt,
1246                                     const struct dt_rec *rec,
1247                                     const struct dt_key *key,
1248                                     struct thandle *th,
1249                                     struct lustre_capa *capa,
1250                                     int noquota)
1251 {
1252         LASSERT(dt);
1253         LASSERT(dt->do_index_ops);
1254         LASSERT(dt->do_index_ops->dio_insert);
1255         return dt->do_index_ops->dio_insert(env, dt, rec, key, th,
1256                                             capa, noquota);
1257 }
1258
1259 static inline int dt_declare_xattr_del(const struct lu_env *env,
1260                                        struct dt_object *dt,
1261                                        const char *name,
1262                                        struct thandle *th)
1263 {
1264         LASSERT(dt);
1265         LASSERT(dt->do_ops);
1266         LASSERT(dt->do_ops->do_declare_xattr_del);
1267         return dt->do_ops->do_declare_xattr_del(env, dt, name, th);
1268 }
1269
1270 static inline int dt_xattr_del(const struct lu_env *env,
1271                                struct dt_object *dt, const char *name,
1272                                struct thandle *th,
1273                                struct lustre_capa *capa)
1274 {
1275         LASSERT(dt);
1276         LASSERT(dt->do_ops);
1277         LASSERT(dt->do_ops->do_xattr_del);
1278         return dt->do_ops->do_xattr_del(env, dt, name, th, capa);
1279 }
1280
1281 static inline int dt_declare_xattr_set(const struct lu_env *env,
1282                                       struct dt_object *dt,
1283                                       const struct lu_buf *buf,
1284                                       const char *name, int fl,
1285                                       struct thandle *th)
1286 {
1287         LASSERT(dt);
1288         LASSERT(dt->do_ops);
1289         LASSERT(dt->do_ops->do_declare_xattr_set);
1290         return dt->do_ops->do_declare_xattr_set(env, dt, buf, name, fl, th);
1291 }
1292
1293 static inline int dt_xattr_set(const struct lu_env *env,
1294                               struct dt_object *dt, const struct lu_buf *buf,
1295                               const char *name, int fl, struct thandle *th,
1296                               struct lustre_capa *capa)
1297 {
1298         LASSERT(dt);
1299         LASSERT(dt->do_ops);
1300         LASSERT(dt->do_ops->do_xattr_set);
1301         return dt->do_ops->do_xattr_set(env, dt, buf, name, fl, th, capa);
1302 }
1303
1304 static inline int dt_xattr_get(const struct lu_env *env,
1305                               struct dt_object *dt, struct lu_buf *buf,
1306                               const char *name, struct lustre_capa *capa)
1307 {
1308         LASSERT(dt);
1309         LASSERT(dt->do_ops);
1310         LASSERT(dt->do_ops->do_xattr_get);
1311         return dt->do_ops->do_xattr_get(env, dt, buf, name, capa);
1312 }
1313
1314 static inline int dt_xattr_list(const struct lu_env *env,
1315                                struct dt_object *dt, struct lu_buf *buf,
1316                                struct lustre_capa *capa)
1317 {
1318         LASSERT(dt);
1319         LASSERT(dt->do_ops);
1320         LASSERT(dt->do_ops->do_xattr_list);
1321         return dt->do_ops->do_xattr_list(env, dt, buf, capa);
1322 }
1323
1324 static inline int dt_declare_delete(const struct lu_env *env,
1325                                     struct dt_object *dt,
1326                                     const struct dt_key *key,
1327                                     struct thandle *th)
1328 {
1329         LASSERT(dt);
1330         LASSERT(dt->do_index_ops);
1331         LASSERT(dt->do_index_ops->dio_declare_delete);
1332         return dt->do_index_ops->dio_declare_delete(env, dt, key, th);
1333 }
1334
1335 static inline int dt_delete(const struct lu_env *env,
1336                             struct dt_object *dt,
1337                             const struct dt_key *key,
1338                             struct thandle *th,
1339                             struct lustre_capa *capa)
1340 {
1341         LASSERT(dt);
1342         LASSERT(dt->do_index_ops);
1343         LASSERT(dt->do_index_ops->dio_delete);
1344         return dt->do_index_ops->dio_delete(env, dt, key, th, capa);
1345 }
1346
1347 static inline int dt_commit_async(const struct lu_env *env,
1348                                   struct dt_device *dev)
1349 {
1350         LASSERT(dev);
1351         LASSERT(dev->dd_ops);
1352         LASSERT(dev->dd_ops->dt_commit_async);
1353         return dev->dd_ops->dt_commit_async(env, dev);
1354 }
1355
1356 static inline int dt_lookup(const struct lu_env *env,
1357                             struct dt_object *dt,
1358                             struct dt_rec *rec,
1359                             const struct dt_key *key,
1360                             struct lustre_capa *capa)
1361 {
1362         int ret;
1363
1364         LASSERT(dt);
1365         LASSERT(dt->do_index_ops);
1366         LASSERT(dt->do_index_ops->dio_lookup);
1367
1368         ret = dt->do_index_ops->dio_lookup(env, dt, rec, key, capa);
1369         if (ret > 0)
1370                 ret = 0;
1371         else if (ret == 0)
1372                 ret = -ENOENT;
1373         return ret;
1374 }
1375
1376 #define LU221_BAD_TIME (0x80000000U + 24 * 3600)
1377
1378 struct dt_find_hint {
1379         struct lu_fid        *dfh_fid;
1380         struct dt_device     *dfh_dt;
1381         struct dt_object     *dfh_o;
1382 };
1383
1384 struct dt_thread_info {
1385         char                     dti_buf[DT_MAX_PATH];
1386         struct dt_find_hint      dti_dfh;
1387         struct lu_attr           dti_attr;
1388         struct lu_fid            dti_fid;
1389         struct dt_object_format  dti_dof;
1390         struct lustre_mdt_attrs  dti_lma;
1391         struct lu_buf            dti_lb;
1392         loff_t                   dti_off;
1393 };
1394
1395 extern struct lu_context_key dt_key;
1396
1397 static inline struct dt_thread_info *dt_info(const struct lu_env *env)
1398 {
1399         struct dt_thread_info *dti;
1400
1401         dti = lu_context_key_get(&env->le_ctx, &dt_key);
1402         LASSERT(dti);
1403         return dti;
1404 }
1405
1406 #endif /* __LUSTRE_DT_OBJECT_H */