Whamcloud - gitweb
timeout and assert in invalidate import.
[fs/lustre-release.git] / lustre / include / obd_class.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001-2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22 #ifndef __CLASS_OBD_H
23 #define __CLASS_OBD_H
24
25 #ifndef __KERNEL__
26 # include <liblustre.h>
27 #endif
28
29 #include <obd_support.h>
30 #include <lustre_import.h>
31 #include <lustre_net.h>
32 #include <obd.h>
33 #include <lustre_lib.h>
34 #include <lustre/lustre_idl.h>
35 #include <lprocfs_status.h>
36
37 #if defined(__linux__)
38 #include <linux/obd_class.h>
39 #elif defined(__APPLE__)
40 #include <darwin/obd_class.h>
41 #elif defined(__WINNT__)
42 #include <winnt/obd_class.h>
43 #else
44 #error Unsupported operating system.
45 #endif
46
47 /* OBD Device Declarations */
48 extern struct obd_device *obd_devs[MAX_OBD_DEVICES];
49 extern spinlock_t obd_dev_lock;
50
51 /* OBD Operations Declarations */
52 extern struct obd_device *class_conn2obd(struct lustre_handle *);
53 extern struct obd_device *class_exp2obd(struct obd_export *);
54
55 struct lu_device_type;
56
57 /* genops.c */
58 struct obd_export *class_conn2export(struct lustre_handle *);
59 int class_register_type(struct obd_ops *, struct md_ops *,
60                         struct lprocfs_vars *, const char *nm,
61                         struct lu_device_type *ldt);
62 int class_unregister_type(const char *nm);
63
64 struct obd_device *class_newdev(const char *type_name, const char *name);
65 void class_release_dev(struct obd_device *obd);
66
67 int class_name2dev(const char *name);
68 struct obd_device *class_name2obd(const char *name);
69 int class_uuid2dev(struct obd_uuid *uuid);
70 struct obd_device *class_uuid2obd(struct obd_uuid *uuid);
71 void class_obd_list(void);
72 struct obd_device * class_find_client_obd(struct obd_uuid *tgt_uuid,
73                                           const char * typ_name,
74                                           struct obd_uuid *grp_uuid);
75 struct obd_device * class_find_client_notype(struct obd_uuid *tgt_uuid,
76                                              struct obd_uuid *grp_uuid);
77 struct obd_device * class_devices_in_group(struct obd_uuid *grp_uuid,
78                                            int *next);
79 struct obd_device * class_num2obd(int num);
80
81 int oig_init(struct obd_io_group **oig);
82 int oig_add_one(struct obd_io_group *oig, struct oig_callback_context *occ);
83 void oig_complete_one(struct obd_io_group *oig,
84                       struct oig_callback_context *occ, int rc);
85 void oig_release(struct obd_io_group *oig);
86 int oig_wait(struct obd_io_group *oig);
87
88 char *obd_export_nid2str(struct obd_export *exp);
89
90 int obd_export_evict_by_nid(struct obd_device *obd, const char *nid);
91 int obd_export_evict_by_uuid(struct obd_device *obd, const char *uuid);
92
93 int obd_zombie_impexp_init(void);
94 void obd_zombie_impexp_stop(void);
95 void obd_zombie_impexp_cull(void);
96
97 /* obd_config.c */
98 int class_process_config(struct lustre_cfg *lcfg);
99 int class_process_proc_param(char *prefix, struct lprocfs_vars *lvars,
100                              struct lustre_cfg *lcfg, void *data);
101 int class_attach(struct lustre_cfg *lcfg);
102 int class_setup(struct obd_device *obd, struct lustre_cfg *lcfg);
103 int class_cleanup(struct obd_device *obd, struct lustre_cfg *lcfg);
104 int class_detach(struct obd_device *obd, struct lustre_cfg *lcfg);
105 struct obd_device *class_incref(struct obd_device *obd);
106 void class_decref(struct obd_device *obd);
107
108 /*obdecho*/
109 #ifdef LPROCFS
110 extern void lprocfs_echo_init_vars(struct lprocfs_static_vars *lvars);
111 #else
112 static inline void lprocfs_echo_init_vars(struct lprocfs_static_vars *lvars)
113 {
114         memset(lvars, 0, sizeof(*lvars));
115 }
116 #endif
117
118 #define CFG_F_START     0x01   /* Set when we start updating from a log */
119 #define CFG_F_MARKER    0x02   /* We are within a maker */
120 #define CFG_F_SKIP      0x04   /* We should ignore this cfg command */
121 #define CFG_F_COMPAT146 0x08   /* Allow old-style logs */
122 #define CFG_F_EXCLUDE   0x10   /* OST exclusion list */
123
124 /* Passed as data param to class_config_parse_llog */
125 struct config_llog_instance {
126         char *              cfg_instance;
127         struct super_block *cfg_sb;
128         struct obd_uuid     cfg_uuid;
129         int                 cfg_last_idx; /* for partial llog processing */
130         int                 cfg_flags;
131 };
132 int class_config_parse_llog(struct llog_ctxt *ctxt, char *name,
133                             struct config_llog_instance *cfg);
134 int class_config_dump_llog(struct llog_ctxt *ctxt, char *name,
135                            struct config_llog_instance *cfg);
136
137 /* list of active configuration logs  */
138 struct config_llog_data {
139         char               *cld_logname;
140         struct ldlm_res_id  cld_resid;
141         struct config_llog_instance cld_cfg;
142         struct list_head    cld_list_chain;
143         atomic_t            cld_refcount;
144         struct obd_export  *cld_mgcexp;
145         unsigned int        cld_stopping:1, /* we were told to stop watching */
146                             cld_lostlock:1; /* lock not requeued */
147 };
148
149 struct lustre_profile {
150         struct list_head lp_list;
151         char            *lp_profile;
152         char            *lp_dt;
153         char            *lp_md;
154 };
155
156 struct lustre_profile *class_get_profile(const char * prof);
157 void class_del_profile(const char *prof);
158 void class_del_profiles(void);
159
160 #define class_export_rpc_get(exp)                                       \
161 ({                                                                      \
162         atomic_inc(&(exp)->exp_rpc_count);                              \
163         CDEBUG(D_INFO, "RPC GETting export %p : new rpc_count %d\n",    \
164                (exp), atomic_read(&(exp)->exp_rpc_count));              \
165         class_export_get(exp);                                          \
166 })
167
168 #define class_export_rpc_put(exp)                                       \
169 ({                                                                      \
170         atomic_dec(&(exp)->exp_rpc_count);                              \
171         CDEBUG(D_INFO, "RPC PUTting export %p : new rpc_count %d\n",    \
172                (exp), atomic_read(&(exp)->exp_rpc_count));              \
173         class_export_put(exp);                                          \
174 })
175
176 /* genops.c */
177 #define class_export_get(exp)                                                  \
178 ({                                                                             \
179         struct obd_export *exp_ = exp;                                         \
180         atomic_inc(&exp_->exp_refcount);                                       \
181         CDEBUG(D_INFO, "GETting export %p : new refcount %d\n", exp_,          \
182                atomic_read(&exp_->exp_refcount));                              \
183         exp_;                                                                  \
184 })
185
186 #define class_export_put(exp)                                                  \
187 do {                                                                           \
188         LASSERT((exp) != NULL);                                                \
189         CDEBUG(D_INFO, "PUTting export %p : new refcount %d\n", (exp),         \
190                atomic_read(&(exp)->exp_refcount) - 1);                         \
191         LASSERT(atomic_read(&(exp)->exp_refcount) > 0);                        \
192         LASSERT(atomic_read(&(exp)->exp_refcount) < 0x5a5a5a);                 \
193         __class_export_put(exp);                                               \
194 } while (0)
195
196 void __class_export_put(struct obd_export *);
197 struct obd_export *class_new_export(struct obd_device *obddev,
198                                     struct obd_uuid *cluuid);
199 void class_unlink_export(struct obd_export *exp);
200
201 struct obd_import *class_import_get(struct obd_import *);
202 void class_import_put(struct obd_import *);
203 struct obd_import *class_new_import(struct obd_device *obd);
204 void class_destroy_import(struct obd_import *exp);
205
206 struct obd_type *class_search_type(const char *name);
207 struct obd_type *class_get_type(const char *name);
208 void class_put_type(struct obd_type *type);
209 int class_connect(struct lustre_handle *conn, struct obd_device *obd,
210                   struct obd_uuid *cluuid);
211 int class_disconnect(struct obd_export *exp);
212 void class_fail_export(struct obd_export *exp);
213 void class_disconnect_exports(struct obd_device *obddev);
214 int class_disconnect_stale_exports(struct obd_device *,
215                                     int (*test_export)(struct obd_export *));
216 int class_manual_cleanup(struct obd_device *obd);
217
218 void obdo_cpy_md(struct obdo *dst, struct obdo *src, obd_flag valid);
219 void obdo_to_ioobj(struct obdo *oa, struct obd_ioobj *ioobj);
220 void obdo_from_iattr(struct obdo *oa, struct iattr *attr,
221                      unsigned int ia_valid);
222 void iattr_from_obdo(struct iattr *attr, struct obdo *oa, obd_flag valid);
223 void md_from_obdo(struct md_op_data *op_data, struct obdo *oa, obd_flag valid);
224 void obdo_from_md(struct obdo *oa, struct md_op_data *op_data,
225                   unsigned int valid);
226
227 #define OBT(dev)        (dev)->obd_type
228 #define OBP(dev, op)    (dev)->obd_type->typ_dt_ops->o_ ## op
229 #define MDP(dev, op)    (dev)->obd_type->typ_md_ops->m_ ## op
230 #define CTXTP(ctxt, op) (ctxt)->loc_logops->lop_##op
231
232 /* Ensure obd_setup: used for cleanup which must be called
233    while obd is stopping */
234 #define OBD_CHECK_DEV(obd)                                      \
235 do {                                                            \
236         if (!(obd)) {                                           \
237                 CERROR("NULL device\n");                        \
238                 RETURN(-ENODEV);                                \
239         }                                                       \
240 } while (0)
241
242 /* ensure obd_setup and !obd_stopping */
243 #define OBD_CHECK_DEV_ACTIVE(obd)                               \
244 do {                                                            \
245         OBD_CHECK_DEV(obd);                                     \
246         if (!(obd)->obd_set_up || (obd)->obd_stopping) {        \
247                 CERROR("Device %d not setup\n",                 \
248                        (obd)->obd_minor);                       \
249                 RETURN(-ENODEV);                                \
250         }                                                       \
251 } while (0)
252
253
254 #ifdef LPROCFS
255 #define OBD_COUNTER_OFFSET(op)                                  \
256         ((offsetof(struct obd_ops, o_ ## op) -                  \
257           offsetof(struct obd_ops, o_iocontrol))                \
258          / sizeof(((struct obd_ops *)(0))->o_iocontrol))
259
260 #define OBD_COUNTER_INCREMENT(obdx, op)                           \
261         if ((obdx)->obd_stats != NULL) {                          \
262                 unsigned int coffset;                             \
263                 coffset = (unsigned int)((obdx)->obd_cntr_base) + \
264                         OBD_COUNTER_OFFSET(op);                   \
265                 LASSERT(coffset < (obdx)->obd_stats->ls_num);     \
266                 lprocfs_counter_incr((obdx)->obd_stats, coffset); \
267         }
268
269 #define EXP_COUNTER_INCREMENT(export, op)                                    \
270         if ((export)->exp_obd->obd_stats != NULL) {                          \
271                 unsigned int coffset;                                        \
272                 coffset = (unsigned int)((export)->exp_obd->obd_cntr_base) + \
273                         OBD_COUNTER_OFFSET(op);                              \
274                 LASSERT(coffset < (export)->exp_obd->obd_stats->ls_num);     \
275                 lprocfs_counter_incr((export)->exp_obd->obd_stats, coffset); \
276                 if ((export)->exp_nid_stats != NULL &&                       \
277                     (export)->exp_nid_stats->nid_stats != NULL)              \
278                         lprocfs_counter_incr(                                \
279                                 (export)->exp_nid_stats->nid_stats, coffset);\
280         }
281
282 #define MD_COUNTER_OFFSET(op)                                   \
283         ((offsetof(struct md_ops, m_ ## op) -                   \
284           offsetof(struct md_ops, m_getstatus))                 \
285          / sizeof(((struct md_ops *)(0))->m_getstatus))
286
287 #define MD_COUNTER_INCREMENT(obdx, op)                           \
288         if ((obd)->md_stats != NULL) {                           \
289                 unsigned int coffset;                            \
290                 coffset = (unsigned int)((obdx)->md_cntr_base) + \
291                         MD_COUNTER_OFFSET(op);                   \
292                 LASSERT(coffset < (obdx)->md_stats->ls_num);     \
293                 lprocfs_counter_incr((obdx)->md_stats, coffset); \
294         }
295
296 #define EXP_MD_COUNTER_INCREMENT(export, op)                                 \
297         if ((export)->exp_obd->obd_stats != NULL) {                          \
298                 unsigned int coffset;                                        \
299                 coffset = (unsigned int)((export)->exp_obd->md_cntr_base) +  \
300                         MD_COUNTER_OFFSET(op);                               \
301                 LASSERT(coffset < (export)->exp_obd->md_stats->ls_num);      \
302                 lprocfs_counter_incr((export)->exp_obd->md_stats, coffset);  \
303                 if ((export)->exp_md_stats != NULL)                          \
304                         lprocfs_counter_incr(                                \
305                                 (export)->exp_md_stats, coffset);            \
306         }
307
308 #else
309 #define OBD_COUNTER_OFFSET(op)
310 #define OBD_COUNTER_INCREMENT(obd, op)
311 #define EXP_COUNTER_INCREMENT(exp, op)
312 #define MD_COUNTER_INCREMENT(obd, op)
313 #define EXP_MD_COUNTER_INCREMENT(exp, op)
314 #endif
315
316 #define OBD_CHECK_MD_OP(obd, op, err)                           \
317 do {                                                            \
318         if (!OBT(obd) || !MDP((obd), op)) {                     \
319                 if (err)                                        \
320                         CERROR("md_" #op ": dev %s/%d no operation\n", \
321                                obd->obd_name, obd->obd_minor);  \
322                 RETURN(err);                                    \
323         }                                                       \
324 } while (0)
325
326 #define EXP_CHECK_MD_OP(exp, op)                                \
327 do {                                                            \
328         if ((exp) == NULL) {                                    \
329                 CERROR("obd_" #op ": NULL export\n");           \
330                 RETURN(-ENODEV);                                \
331         }                                                       \
332         if ((exp)->exp_obd == NULL || !OBT((exp)->exp_obd)) {   \
333                 CERROR("obd_" #op ": cleaned up obd\n");        \
334                 RETURN(-EOPNOTSUPP);                            \
335         }                                                       \
336         if (!OBT((exp)->exp_obd) || !MDP((exp)->exp_obd, op)) { \
337                 CERROR("obd_" #op ": dev %s/%d no operation\n", \
338                        (exp)->exp_obd->obd_name,                \
339                        (exp)->exp_obd->obd_minor);              \
340                 RETURN(-EOPNOTSUPP);                            \
341         }                                                       \
342 } while (0)
343
344
345 #define OBD_CHECK_DT_OP(obd, op, err)                           \
346 do {                                                            \
347         if (!OBT(obd) || !OBP((obd), op)) {                     \
348                 if (err)                                        \
349                         CERROR("obd_" #op ": dev %d no operation\n",    \
350                                obd->obd_minor);                 \
351                 RETURN(err);                                    \
352         }                                                       \
353 } while (0)
354
355 #define EXP_CHECK_DT_OP(exp, op)                                \
356 do {                                                            \
357         if ((exp) == NULL) {                                    \
358                 CERROR("obd_" #op ": NULL export\n");           \
359                 RETURN(-ENODEV);                                \
360         }                                                       \
361         if ((exp)->exp_obd == NULL || !OBT((exp)->exp_obd)) {   \
362                 CERROR("obd_" #op ": cleaned up obd\n");        \
363                 RETURN(-EOPNOTSUPP);                            \
364         }                                                       \
365         if (!OBT((exp)->exp_obd) || !OBP((exp)->exp_obd, op)) { \
366                 CERROR("obd_" #op ": dev %d no operation\n",    \
367                        (exp)->exp_obd->obd_minor);              \
368                 RETURN(-EOPNOTSUPP);                            \
369         }                                                       \
370 } while (0)
371
372 #define CTXT_CHECK_OP(ctxt, op, err)                                 \
373 do {                                                                 \
374         if (!OBT(ctxt->loc_obd) || !CTXTP((ctxt), op)) {             \
375                 if (err)                                             \
376                         CERROR("lop_" #op ": dev %d no operation\n", \
377                                ctxt->loc_obd->obd_minor);            \
378                 RETURN(err);                                         \
379         }                                                            \
380 } while (0)
381
382 static inline int class_devno_max(void)
383 {
384         return MAX_OBD_DEVICES;
385 }
386
387 static inline int obd_get_info(struct obd_export *exp, __u32 keylen,
388                                void *key, __u32 *vallen, void *val)
389 {
390         int rc;
391         ENTRY;
392
393         EXP_CHECK_DT_OP(exp, get_info);
394         EXP_COUNTER_INCREMENT(exp, get_info);
395
396         rc = OBP(exp->exp_obd, get_info)(exp, keylen, key, vallen, val);
397         RETURN(rc);
398 }
399
400 static inline int obd_set_info_async(struct obd_export *exp, obd_count keylen,
401                                      void *key, obd_count vallen, void *val,
402                                      struct ptlrpc_request_set *set)
403 {
404         int rc;
405         ENTRY;
406
407         EXP_CHECK_DT_OP(exp, set_info_async);
408         EXP_COUNTER_INCREMENT(exp, set_info_async);
409
410         rc = OBP(exp->exp_obd, set_info_async)(exp, keylen, key, vallen, val,
411                                                set);
412         RETURN(rc);
413 }
414
415 #ifdef __KERNEL__
416 #define DECLARE_LU_VARS(ldt, d)                 \
417         struct lu_device_type *ldt;             \
418         struct lu_device *d
419 #else
420 #define DECLARE_LU_VARS(ldt, d)                                 \
421         extern void __placeholder_to_put_a_semicolon(void)
422 #endif
423 static inline int obd_setup(struct obd_device *obd, struct lustre_cfg *cfg)
424 {
425         int rc;
426         DECLARE_LU_VARS(ldt, d);
427         ENTRY;
428
429 #ifdef __KERNEL__
430         ldt = obd->obd_type->typ_lu;
431         if (ldt != NULL) {
432                 struct lu_env env;
433
434                 rc = lu_env_init(&env, NULL, ldt->ldt_ctx_tags);
435                 if (rc == 0) {
436                         d = ldt->ldt_ops->ldto_device_alloc(&env, ldt, cfg);
437                         lu_env_fini(&env);
438                         if (!IS_ERR(d)) {
439                                 obd->obd_lu_dev = d;
440                                 d->ld_obd = obd;
441                                 rc = 0;
442                         } else
443                                 rc = PTR_ERR(d);
444                 }
445         } else
446 #endif
447         {
448                 OBD_CHECK_DT_OP(obd, setup, -EOPNOTSUPP);
449                 OBD_COUNTER_INCREMENT(obd, setup);
450                 rc = OBP(obd, setup)(obd, cfg);
451         }
452         RETURN(rc);
453 }
454
455 static inline int obd_precleanup(struct obd_device *obd,
456                                  enum obd_cleanup_stage cleanup_stage)
457 {
458         int rc;
459         DECLARE_LU_VARS(ldt, d);
460         ENTRY;
461
462         OBD_CHECK_DEV(obd);
463 #ifdef __KERNEL__
464         ldt = obd->obd_type->typ_lu;
465         d = obd->obd_lu_dev;
466         if (ldt != NULL) {
467                 LASSERT(d != NULL);
468                 if (cleanup_stage == OBD_CLEANUP_EXPORTS) {
469                         struct lu_env env;
470
471                         rc = lu_env_init(&env, NULL, ldt->ldt_ctx_tags);
472                         if (rc == 0) {
473                                 ldt->ldt_ops->ldto_device_fini(&env, d);
474                                 lu_env_fini(&env);
475                         }
476                 } else {
477                         rc = 0;
478                 }
479         } else
480 #endif
481         {
482                 OBD_CHECK_DT_OP(obd, precleanup, 0);
483                 rc = OBP(obd, precleanup)(obd, cleanup_stage);
484         }
485
486         OBD_COUNTER_INCREMENT(obd, precleanup);
487         RETURN(rc);
488 }
489
490 static inline int obd_cleanup(struct obd_device *obd)
491 {
492         int rc;
493         DECLARE_LU_VARS(ldt, d);
494         ENTRY;
495
496         OBD_CHECK_DEV(obd);
497
498 #ifdef __KERNEL__
499         ldt = obd->obd_type->typ_lu;
500         d = obd->obd_lu_dev;
501         if (ldt != NULL) {
502                 struct lu_env env;
503                 LASSERT(d != NULL);
504
505                 rc = lu_env_init(&env, NULL, ldt->ldt_ctx_tags);
506                 if (rc == 0) {
507                         ldt->ldt_ops->ldto_device_free(&env, d);
508                         lu_env_fini(&env);
509                         obd->obd_lu_dev = NULL;
510                 }
511         } else
512 #endif
513         {
514                 OBD_CHECK_DT_OP(obd, cleanup, 0);
515                 rc = OBP(obd, cleanup)(obd);
516         }
517         OBD_COUNTER_INCREMENT(obd, cleanup);
518         RETURN(rc);
519 }
520
521 static inline int
522 obd_process_config(struct obd_device *obd, int datalen, void *data)
523 {
524         int rc;
525         DECLARE_LU_VARS(ldt, d);
526         ENTRY;
527
528         OBD_CHECK_DEV(obd);
529
530 #ifdef __KERNEL__
531         ldt = obd->obd_type->typ_lu;
532         d = obd->obd_lu_dev;
533         if (ldt != NULL && d != NULL) {
534                 struct lu_env env;
535
536                 rc = lu_env_init(&env, NULL, ldt->ldt_ctx_tags);
537                 if (rc == 0) {
538                         rc = d->ld_ops->ldo_process_config(&env, d, data);
539                         lu_env_fini(&env);
540                 }
541         } else
542 #endif
543         {
544                 OBD_CHECK_DT_OP(obd, process_config, -EOPNOTSUPP);
545                 rc = OBP(obd, process_config)(obd, datalen, data);
546         }
547         OBD_COUNTER_INCREMENT(obd, process_config);
548
549         RETURN(rc);
550 }
551
552 /* Pack an in-memory MD struct for storage on disk.
553  * Returns +ve size of packed MD (0 for free), or -ve error.
554  *
555  * If @disk_tgt == NULL, MD size is returned (max size if @mem_src == NULL).
556  * If @*disk_tgt != NULL and @mem_src == NULL, @*disk_tgt will be freed.
557  * If @*disk_tgt == NULL, it will be allocated
558  */
559 static inline int obd_packmd(struct obd_export *exp,
560                              struct lov_mds_md **disk_tgt,
561                              struct lov_stripe_md *mem_src)
562 {
563         int rc;
564         ENTRY;
565
566         EXP_CHECK_DT_OP(exp, packmd);
567         EXP_COUNTER_INCREMENT(exp, packmd);
568
569         rc = OBP(exp->exp_obd, packmd)(exp, disk_tgt, mem_src);
570         RETURN(rc);
571 }
572
573 static inline int obd_size_diskmd(struct obd_export *exp,
574                                   struct lov_stripe_md *mem_src)
575 {
576         return obd_packmd(exp, NULL, mem_src);
577 }
578
579 /* helper functions */
580 static inline int obd_alloc_diskmd(struct obd_export *exp,
581                                    struct lov_mds_md **disk_tgt)
582 {
583         LASSERT(disk_tgt);
584         LASSERT(*disk_tgt == NULL);
585         return obd_packmd(exp, disk_tgt, NULL);
586 }
587
588 static inline int obd_free_diskmd(struct obd_export *exp,
589                                   struct lov_mds_md **disk_tgt)
590 {
591         LASSERT(disk_tgt);
592         LASSERT(*disk_tgt);
593         return obd_packmd(exp, disk_tgt, NULL);
594 }
595
596 /* Unpack an MD struct from disk to in-memory format.
597  * Returns +ve size of unpacked MD (0 for free), or -ve error.
598  *
599  * If @mem_tgt == NULL, MD size is returned (max size if @disk_src == NULL).
600  * If @*mem_tgt != NULL and @disk_src == NULL, @*mem_tgt will be freed.
601  * If @*mem_tgt == NULL, it will be allocated
602  */
603 static inline int obd_unpackmd(struct obd_export *exp,
604                                struct lov_stripe_md **mem_tgt,
605                                struct lov_mds_md *disk_src,
606                                int disk_len)
607 {
608         int rc;
609         ENTRY;
610
611         EXP_CHECK_DT_OP(exp, unpackmd);
612         EXP_COUNTER_INCREMENT(exp, unpackmd);
613
614         rc = OBP(exp->exp_obd, unpackmd)(exp, mem_tgt, disk_src, disk_len);
615         RETURN(rc);
616 }
617
618 /* helper functions */
619 static inline int obd_alloc_memmd(struct obd_export *exp,
620                                   struct lov_stripe_md **mem_tgt)
621 {
622         LASSERT(mem_tgt);
623         LASSERT(*mem_tgt == NULL);
624         return obd_unpackmd(exp, mem_tgt, NULL, 0);
625 }
626
627 static inline int obd_free_memmd(struct obd_export *exp,
628                                  struct lov_stripe_md **mem_tgt)
629 {
630         LASSERT(mem_tgt);
631         LASSERT(*mem_tgt);
632         return obd_unpackmd(exp, mem_tgt, NULL, 0);
633 }
634
635 static inline int obd_checkmd(struct obd_export *exp,
636                               struct obd_export *md_exp,
637                               struct lov_stripe_md *mem_tgt)
638 {
639         int rc;
640         ENTRY;
641
642         EXP_CHECK_DT_OP(exp, checkmd);
643         EXP_COUNTER_INCREMENT(exp, checkmd);
644
645         rc = OBP(exp->exp_obd, checkmd)(exp, md_exp, mem_tgt);
646         RETURN(rc);
647 }
648
649 static inline int obd_precreate(struct obd_export *exp)
650 {
651         int rc;
652         ENTRY;
653
654         EXP_CHECK_DT_OP(exp, precreate);
655         OBD_COUNTER_INCREMENT(exp->exp_obd, precreate);
656
657         rc = OBP(exp->exp_obd, precreate)(exp);
658         RETURN(rc);
659 }
660
661 static inline int obd_create(struct obd_export *exp, struct obdo *obdo,
662                              struct lov_stripe_md **ea,
663                              struct obd_trans_info *oti)
664 {
665         int rc;
666         ENTRY;
667
668         EXP_CHECK_DT_OP(exp, create);
669         EXP_COUNTER_INCREMENT(exp, create);
670
671         rc = OBP(exp->exp_obd, create)(exp, obdo, ea, oti);
672         RETURN(rc);
673 }
674
675 static inline int obd_destroy(struct obd_export *exp, struct obdo *obdo,
676                               struct lov_stripe_md *ea,
677                               struct obd_trans_info *oti,
678                               struct obd_export *md_exp)
679 {
680         int rc;
681         ENTRY;
682
683         EXP_CHECK_DT_OP(exp, destroy);
684         EXP_COUNTER_INCREMENT(exp, destroy);
685
686         rc = OBP(exp->exp_obd, destroy)(exp, obdo, ea, oti, md_exp);
687         RETURN(rc);
688 }
689
690 static inline int obd_getattr(struct obd_export *exp, struct obd_info *oinfo)
691 {
692         int rc;
693         ENTRY;
694
695         EXP_CHECK_DT_OP(exp, getattr);
696         EXP_COUNTER_INCREMENT(exp, getattr);
697
698         rc = OBP(exp->exp_obd, getattr)(exp, oinfo);
699         RETURN(rc);
700 }
701
702 static inline int obd_getattr_async(struct obd_export *exp,
703                                     struct obd_info *oinfo,
704                                     struct ptlrpc_request_set *set)
705 {
706         int rc;
707         ENTRY;
708
709         EXP_CHECK_DT_OP(exp, getattr_async);
710         EXP_COUNTER_INCREMENT(exp, getattr_async);
711
712         rc = OBP(exp->exp_obd, getattr_async)(exp, oinfo, set);
713         RETURN(rc);
714 }
715
716 static inline int obd_setattr(struct obd_export *exp, struct obd_info *oinfo,
717                               struct obd_trans_info *oti)
718 {
719         int rc;
720         ENTRY;
721
722         EXP_CHECK_DT_OP(exp, setattr);
723         EXP_COUNTER_INCREMENT(exp, setattr);
724
725         rc = OBP(exp->exp_obd, setattr)(exp, oinfo, oti);
726         RETURN(rc);
727 }
728
729 /* This performs all the requests set init/wait/destroy actions. */
730 static inline int obd_setattr_rqset(struct obd_export *exp,
731                                     struct obd_info *oinfo,
732                                     struct obd_trans_info *oti)
733 {
734         struct ptlrpc_request_set *set = NULL;
735         int rc;
736         ENTRY;
737
738         EXP_CHECK_DT_OP(exp, setattr_async);
739         EXP_COUNTER_INCREMENT(exp, setattr_async);
740
741         set =  ptlrpc_prep_set();
742         if (set == NULL)
743                 RETURN(-ENOMEM);
744
745         rc = OBP(exp->exp_obd, setattr_async)(exp, oinfo, oti, set);
746         if (rc == 0)
747                 rc = ptlrpc_set_wait(set);
748         ptlrpc_set_destroy(set);
749         RETURN(rc);
750 }
751
752 /* This adds all the requests into @set if @set != NULL, otherwise
753    all requests are sent asynchronously without waiting for response. */
754 static inline int obd_setattr_async(struct obd_export *exp,
755                                     struct obd_info *oinfo,
756                                     struct obd_trans_info *oti,
757                                     struct ptlrpc_request_set *set)
758 {
759         int rc;
760         ENTRY;
761
762         EXP_CHECK_DT_OP(exp, setattr_async);
763         EXP_COUNTER_INCREMENT(exp, setattr_async);
764
765         rc = OBP(exp->exp_obd, setattr_async)(exp, oinfo, oti, set);
766         RETURN(rc);
767 }
768
769 static inline int obd_add_conn(struct obd_import *imp, struct obd_uuid *uuid,
770                                int priority)
771 {
772         struct obd_device *obd = imp->imp_obd;
773         int rc;
774         ENTRY;
775
776         OBD_CHECK_DEV_ACTIVE(obd);
777         OBD_CHECK_DT_OP(obd, add_conn, -EOPNOTSUPP);
778         OBD_COUNTER_INCREMENT(obd, add_conn);
779
780         rc = OBP(obd, add_conn)(imp, uuid, priority);
781         RETURN(rc);
782 }
783
784 static inline int obd_del_conn(struct obd_import *imp, struct obd_uuid *uuid)
785 {
786         struct obd_device *obd = imp->imp_obd;
787         int rc;
788         ENTRY;
789
790         OBD_CHECK_DEV_ACTIVE(obd);
791         OBD_CHECK_DT_OP(obd, del_conn, -EOPNOTSUPP);
792         OBD_COUNTER_INCREMENT(obd, del_conn);
793
794         rc = OBP(obd, del_conn)(imp, uuid);
795         RETURN(rc);
796 }
797
798 static inline int obd_connect(const struct lu_env *env,
799                               struct lustre_handle *conn,struct obd_device *obd,
800                               struct obd_uuid *cluuid,
801                               struct obd_connect_data *d,
802                               void *localdata)
803 {
804         int rc;
805 #ifdef LIBCFS_DEBUG
806         __u64 ocf = d ? d->ocd_connect_flags : 0; /* for post-condition
807                                                    * check */
808 #endif
809         ENTRY;
810
811         OBD_CHECK_DEV_ACTIVE(obd);
812         OBD_CHECK_DT_OP(obd, connect, -EOPNOTSUPP);
813         OBD_COUNTER_INCREMENT(obd, connect);
814
815         rc = OBP(obd, connect)(env, conn, obd, cluuid, d, localdata);
816         /* check that only subset is granted */
817         LASSERT(ergo(d != NULL,
818                      (d->ocd_connect_flags & ocf) == d->ocd_connect_flags));
819         RETURN(rc);
820 }
821
822 static inline int obd_reconnect(const struct lu_env *env,
823                                 struct obd_export *exp,
824                                 struct obd_device *obd,
825                                 struct obd_uuid *cluuid,
826                                 struct obd_connect_data *d)
827 {
828         int rc;
829 #ifdef LIBCFS_DEBUG
830         __u64 ocf = d ? d->ocd_connect_flags : 0; /* for post-condition
831                                                    * check */
832 #endif
833
834         ENTRY;
835
836         OBD_CHECK_DEV_ACTIVE(obd);
837         OBD_CHECK_DT_OP(obd, reconnect, 0);
838         OBD_COUNTER_INCREMENT(obd, reconnect);
839
840         rc = OBP(obd, reconnect)(env, exp, obd, cluuid, d);
841         /* check that only subset is granted */
842         LASSERT(ergo(d != NULL,
843                      (d->ocd_connect_flags & ocf) == d->ocd_connect_flags));
844         RETURN(rc);
845 }
846
847 static inline int obd_disconnect(struct obd_export *exp)
848 {
849         int rc;
850         ENTRY;
851
852         EXP_CHECK_DT_OP(exp, disconnect);
853         EXP_COUNTER_INCREMENT(exp, disconnect);
854
855         rc = OBP(exp->exp_obd, disconnect)(exp);
856         RETURN(rc);
857 }
858
859 static inline int obd_fid_init(struct obd_export *exp)
860 {
861         int rc;
862         ENTRY;
863
864         OBD_CHECK_DT_OP(exp->exp_obd, fid_init, 0);
865         EXP_COUNTER_INCREMENT(exp, fid_init);
866
867         rc = OBP(exp->exp_obd, fid_init)(exp);
868         RETURN(rc);
869 }
870
871 static inline int obd_fid_fini(struct obd_export *exp)
872 {
873         int rc;
874         ENTRY;
875
876         OBD_CHECK_DT_OP(exp->exp_obd, fid_fini, 0);
877         EXP_COUNTER_INCREMENT(exp, fid_fini);
878
879         rc = OBP(exp->exp_obd, fid_fini)(exp);
880         RETURN(rc);
881 }
882
883 static inline int obd_fid_alloc(struct obd_export *exp,
884                                 struct lu_fid *fid,
885                                 struct md_op_data *op_data)
886 {
887         int rc;
888         ENTRY;
889
890         EXP_CHECK_DT_OP(exp, fid_alloc);
891         EXP_COUNTER_INCREMENT(exp, fid_alloc);
892
893         rc = OBP(exp->exp_obd, fid_alloc)(exp, fid, op_data);
894         RETURN(rc);
895 }
896
897 static inline int obd_fid_delete(struct obd_export *exp,
898                                  const struct lu_fid *fid)
899 {
900         int rc;
901         ENTRY;
902
903         EXP_CHECK_DT_OP(exp, fid_delete);
904         EXP_COUNTER_INCREMENT(exp, fid_delete);
905
906         rc = OBP(exp->exp_obd, fid_delete)(exp, fid);
907         RETURN(rc);
908 }
909
910 static inline int obd_ping(struct obd_export *exp)
911 {
912         int rc;
913         ENTRY;
914
915         OBD_CHECK_DT_OP(exp->exp_obd, ping, 0);
916         EXP_COUNTER_INCREMENT(exp, ping);
917
918         rc = OBP(exp->exp_obd, ping)(exp);
919         RETURN(rc);
920 }
921
922 static inline int obd_init_export(struct obd_export *exp)
923 {
924         int rc = 0;
925
926         ENTRY;
927         if ((exp)->exp_obd != NULL && OBT((exp)->exp_obd) &&
928             OBP((exp)->exp_obd, init_export))
929                 rc = OBP(exp->exp_obd, init_export)(exp);
930         RETURN(rc);
931 }
932
933 static inline int obd_destroy_export(struct obd_export *exp)
934 {
935         ENTRY;
936         if ((exp)->exp_obd != NULL && OBT((exp)->exp_obd) &&
937             OBP((exp)->exp_obd, destroy_export))
938                 OBP(exp->exp_obd, destroy_export)(exp);
939         RETURN(0);
940 }
941
942 static inline int obd_extent_calc(struct obd_export *exp,
943                                   struct lov_stripe_md *md,
944                                   int cmd, obd_off *offset)
945 {
946         int rc;
947         ENTRY;
948         EXP_CHECK_DT_OP(exp, extent_calc);
949         rc = OBP(exp->exp_obd, extent_calc)(exp, md, cmd, offset);
950         RETURN(rc);
951 }
952
953 static inline struct dentry *
954 obd_lvfs_fid2dentry(struct obd_export *exp, __u64 id_ino, __u32 gen, __u64 gr)
955 {
956         LASSERT(exp->exp_obd);
957
958         return lvfs_fid2dentry(&exp->exp_obd->obd_lvfs_ctxt, id_ino, gen, gr,
959                                exp->exp_obd);
960 }
961
962 static inline int
963 obd_lvfs_open_llog(struct obd_export *exp, __u64 id_ino, struct dentry *dentry)
964 {
965         LASSERT(exp->exp_obd);
966         CERROR("FIXME what's the story here?  This needs to be an obd fn?\n");
967 #if 0
968         return lvfs_open_llog(&exp->exp_obd->obd_lvfs_ctxt, id_ino,
969                               dentry, exp->exp_obd);
970 #endif
971         return 0;
972 }
973
974 #ifndef time_before
975 #define time_before(t1, t2) ((long)t2 - (long)t1 > 0)
976 #endif
977
978 /* @max_age is the oldest time in jiffies that we accept using a cached data.
979  * If the cache is older than @max_age we will get a new value from the
980  * target.  Use a value of "cfs_time_current() + HZ" to guarantee freshness. */
981 static inline int obd_statfs_async(struct obd_device *obd,
982                                    struct obd_info *oinfo,
983                                    __u64 max_age,
984                                    struct ptlrpc_request_set *rqset)
985 {
986         int rc = 0;
987         ENTRY;
988
989         if (obd == NULL)
990                 RETURN(-EINVAL);
991
992         OBD_CHECK_DT_OP(obd, statfs, -EOPNOTSUPP);
993         OBD_COUNTER_INCREMENT(obd, statfs);
994
995         CDEBUG(D_SUPER, "%s: osfs %p age "LPU64", max_age "LPU64"\n",
996                obd->obd_name, &obd->obd_osfs, obd->obd_osfs_age, max_age);
997         if (cfs_time_before_64(obd->obd_osfs_age, max_age)) {
998                 rc = OBP(obd, statfs_async)(obd, oinfo, max_age, rqset);
999         } else {
1000                 CDEBUG(D_SUPER,"%s: use %p cache blocks "LPU64"/"LPU64
1001                        " objects "LPU64"/"LPU64"\n",
1002                        obd->obd_name, &obd->obd_osfs,
1003                        obd->obd_osfs.os_bavail, obd->obd_osfs.os_blocks,
1004                        obd->obd_osfs.os_ffree, obd->obd_osfs.os_files);
1005                 spin_lock(&obd->obd_osfs_lock);
1006                 memcpy(oinfo->oi_osfs, &obd->obd_osfs, sizeof(*oinfo->oi_osfs));
1007                 spin_unlock(&obd->obd_osfs_lock);
1008                 if (oinfo->oi_cb_up)
1009                         oinfo->oi_cb_up(oinfo, 0);
1010         }
1011         RETURN(rc);
1012 }
1013
1014 static inline int obd_statfs_rqset(struct obd_device *obd,
1015                                    struct obd_statfs *osfs, __u64 max_age,
1016                                    __u32 flags)
1017 {
1018         struct ptlrpc_request_set *set = NULL;
1019         struct obd_info oinfo = { { { 0 } } };
1020         int rc = 0;
1021         ENTRY;
1022
1023         set =  ptlrpc_prep_set();
1024         if (set == NULL)
1025                 RETURN(-ENOMEM);
1026
1027         oinfo.oi_osfs = osfs;
1028         oinfo.oi_flags = flags;
1029         rc = obd_statfs_async(obd, &oinfo, max_age, set);
1030         if (rc == 0)
1031                 rc = ptlrpc_set_wait(set);
1032         ptlrpc_set_destroy(set);
1033         RETURN(rc);
1034 }
1035
1036 /* @max_age is the oldest time in jiffies that we accept using a cached data.
1037  * If the cache is older than @max_age we will get a new value from the
1038  * target.  Use a value of "cfs_time_current() + HZ" to guarantee freshness. */
1039 static inline int obd_statfs(struct obd_device *obd, struct obd_statfs *osfs,
1040                              __u64 max_age, __u32 flags)
1041 {
1042         int rc = 0;
1043         ENTRY;
1044
1045         if (obd == NULL)
1046                 RETURN(-EINVAL);
1047
1048         OBD_CHECK_DT_OP(obd, statfs, -EOPNOTSUPP);
1049         OBD_COUNTER_INCREMENT(obd, statfs);
1050
1051         CDEBUG(D_SUPER, "osfs "LPU64", max_age "LPU64"\n",
1052                obd->obd_osfs_age, max_age);
1053         if (cfs_time_before_64(obd->obd_osfs_age, max_age)) {
1054                 rc = OBP(obd, statfs)(obd, osfs, max_age, flags);
1055                 if (rc == 0) {
1056                         spin_lock(&obd->obd_osfs_lock);
1057                         memcpy(&obd->obd_osfs, osfs, sizeof(obd->obd_osfs));
1058                         obd->obd_osfs_age = cfs_time_current_64();
1059                         spin_unlock(&obd->obd_osfs_lock);
1060                 }
1061         } else {
1062                 CDEBUG(D_SUPER,"%s: use %p cache blocks "LPU64"/"LPU64
1063                        " objects "LPU64"/"LPU64"\n",
1064                        obd->obd_name, &obd->obd_osfs,
1065                        obd->obd_osfs.os_bavail, obd->obd_osfs.os_blocks,
1066                        obd->obd_osfs.os_ffree, obd->obd_osfs.os_files);
1067                 spin_lock(&obd->obd_osfs_lock);
1068                 memcpy(osfs, &obd->obd_osfs, sizeof(*osfs));
1069                 spin_unlock(&obd->obd_osfs_lock);
1070         }
1071         RETURN(rc);
1072 }
1073
1074 static inline int obd_sync(struct obd_export *exp, struct obdo *oa,
1075                            struct lov_stripe_md *ea, obd_size start,
1076                            obd_size end, void *capa)
1077 {
1078         int rc;
1079         ENTRY;
1080
1081         OBD_CHECK_DT_OP(exp->exp_obd, sync, -EOPNOTSUPP);
1082         EXP_COUNTER_INCREMENT(exp, sync);
1083
1084         rc = OBP(exp->exp_obd, sync)(exp, oa, ea, start, end, capa);
1085         RETURN(rc);
1086 }
1087
1088 static inline int obd_punch_rqset(struct obd_export *exp,
1089                                   struct obd_info *oinfo,
1090                                   struct obd_trans_info *oti)
1091 {
1092         struct ptlrpc_request_set *set = NULL;
1093         int rc;
1094         ENTRY;
1095
1096         EXP_CHECK_DT_OP(exp, punch);
1097         EXP_COUNTER_INCREMENT(exp, punch);
1098
1099         set =  ptlrpc_prep_set();
1100         if (set == NULL)
1101                 RETURN(-ENOMEM);
1102
1103         rc = OBP(exp->exp_obd, punch)(exp, oinfo, oti, set);
1104         if (rc == 0)
1105                 rc = ptlrpc_set_wait(set);
1106         ptlrpc_set_destroy(set);
1107         RETURN(rc);
1108 }
1109
1110 static inline int obd_punch(struct obd_export *exp, struct obd_info *oinfo,
1111                             struct obd_trans_info *oti,
1112                             struct ptlrpc_request_set *rqset)
1113 {
1114         int rc;
1115         ENTRY;
1116
1117         EXP_CHECK_DT_OP(exp, punch);
1118         EXP_COUNTER_INCREMENT(exp, punch);
1119
1120         rc = OBP(exp->exp_obd, punch)(exp, oinfo, oti, rqset);
1121         RETURN(rc);
1122 }
1123
1124 static inline int obd_brw(int cmd, struct obd_export *exp,
1125                           struct obd_info *oinfo, obd_count oa_bufs,
1126                           struct brw_page *pg, struct obd_trans_info *oti)
1127 {
1128         int rc;
1129         ENTRY;
1130
1131         EXP_CHECK_DT_OP(exp, brw);
1132         EXP_COUNTER_INCREMENT(exp, brw);
1133
1134         if (!(cmd & (OBD_BRW_RWMASK | OBD_BRW_CHECK))) {
1135                 CERROR("obd_brw: cmd must be OBD_BRW_READ, OBD_BRW_WRITE, "
1136                        "or OBD_BRW_CHECK\n");
1137                 LBUG();
1138         }
1139
1140         rc = OBP(exp->exp_obd, brw)(cmd, exp, oinfo, oa_bufs, pg, oti);
1141         RETURN(rc);
1142 }
1143
1144 static inline int obd_brw_async(int cmd, struct obd_export *exp,
1145                                 struct obd_info *oinfo, obd_count oa_bufs,
1146                                 struct brw_page *pg, struct obd_trans_info *oti,
1147                                 struct ptlrpc_request_set *set)
1148 {
1149         int rc;
1150         ENTRY;
1151
1152         EXP_CHECK_DT_OP(exp, brw_async);
1153         EXP_COUNTER_INCREMENT(exp, brw_async);
1154
1155         if (!(cmd & OBD_BRW_RWMASK)) {
1156                 CERROR("obd_brw: cmd must be OBD_BRW_READ or OBD_BRW_WRITE\n");
1157                 LBUG();
1158         }
1159
1160         rc = OBP(exp->exp_obd, brw_async)(cmd, exp, oinfo, oa_bufs, pg,oti,set);
1161         RETURN(rc);
1162 }
1163
1164 static inline int obd_brw_rqset(int cmd, struct obd_export *exp,
1165                                 struct obdo *oa, struct lov_stripe_md *lsm,
1166                                 obd_count oa_bufs, struct brw_page *pg,
1167                                 struct obd_trans_info *oti,
1168                                 struct obd_capa *ocapa)
1169 {
1170         struct ptlrpc_request_set *set = NULL;
1171         struct obd_info oinfo = { { { 0 } } };
1172         int rc = 0;
1173         ENTRY;
1174
1175         set =  ptlrpc_prep_set();
1176         if (set == NULL)
1177                 RETURN(-ENOMEM);
1178
1179         oinfo.oi_oa = oa;
1180         oinfo.oi_md = lsm;
1181         oinfo.oi_capa = ocapa;
1182         rc = obd_brw_async(cmd, exp, &oinfo, oa_bufs, pg, oti, set);
1183         if (rc == 0) {
1184                 rc = ptlrpc_set_wait(set);
1185                 if (rc)
1186                         CERROR("error from callback: rc = %d\n", rc);
1187         } else {
1188                 CDEBUG(rc == -ENOSPC ? D_INODE : D_ERROR,
1189                        "error from obd_brw_async: rc = %d\n", rc);
1190         }
1191         ptlrpc_set_destroy(set);
1192         RETURN(rc);
1193 }
1194
1195 static inline  int obd_prep_async_page(struct obd_export *exp,
1196                                        struct lov_stripe_md *lsm,
1197                                        struct lov_oinfo *loi,
1198                                        cfs_page_t *page, obd_off offset,
1199                                        struct obd_async_page_ops *ops,
1200                                        void *data, void **res, int nocache,
1201                                        struct lustre_handle *lockh)
1202 {
1203         int ret;
1204         ENTRY;
1205
1206         EXP_CHECK_DT_OP(exp, prep_async_page);
1207         EXP_COUNTER_INCREMENT(exp, prep_async_page);
1208
1209         ret = OBP(exp->exp_obd, prep_async_page)(exp, lsm, loi, page, offset,
1210                                                  ops, data, res, nocache,
1211                                                  lockh);
1212         RETURN(ret);
1213 }
1214
1215 static inline int obd_queue_async_io(struct obd_export *exp,
1216                                      struct lov_stripe_md *lsm,
1217                                      struct lov_oinfo *loi, void *cookie,
1218                                      int cmd, obd_off off, int count,
1219                                      obd_flag brw_flags, obd_flag async_flags)
1220 {
1221         int rc;
1222         ENTRY;
1223
1224         EXP_CHECK_DT_OP(exp, queue_async_io);
1225         EXP_COUNTER_INCREMENT(exp, queue_async_io);
1226         LASSERT(cmd & OBD_BRW_RWMASK);
1227
1228         rc = OBP(exp->exp_obd, queue_async_io)(exp, lsm, loi, cookie, cmd, off,
1229                                                count, brw_flags, async_flags);
1230         RETURN(rc);
1231 }
1232
1233 static inline int obd_set_async_flags(struct obd_export *exp,
1234                                       struct lov_stripe_md *lsm,
1235                                       struct lov_oinfo *loi, void *cookie,
1236                                       obd_flag async_flags)
1237 {
1238         int rc;
1239         ENTRY;
1240
1241         EXP_CHECK_DT_OP(exp, set_async_flags);
1242         EXP_COUNTER_INCREMENT(exp, set_async_flags);
1243
1244         rc = OBP(exp->exp_obd, set_async_flags)(exp, lsm, loi, cookie,
1245                                                 async_flags);
1246         RETURN(rc);
1247 }
1248
1249 static inline int obd_queue_group_io(struct obd_export *exp,
1250                                      struct lov_stripe_md *lsm,
1251                                      struct lov_oinfo *loi,
1252                                      struct obd_io_group *oig,
1253                                      void *cookie, int cmd, obd_off off,
1254                                      int count, obd_flag brw_flags,
1255                                      obd_flag async_flags)
1256 {
1257         int rc;
1258         ENTRY;
1259
1260         EXP_CHECK_DT_OP(exp, queue_group_io);
1261         EXP_COUNTER_INCREMENT(exp, queue_group_io);
1262         LASSERT(cmd & OBD_BRW_RWMASK);
1263
1264         rc = OBP(exp->exp_obd, queue_group_io)(exp, lsm, loi, oig, cookie,
1265                                                cmd, off, count, brw_flags,
1266                                                async_flags);
1267         RETURN(rc);
1268 }
1269
1270 static inline int obd_trigger_group_io(struct obd_export *exp,
1271                                        struct lov_stripe_md *lsm,
1272                                        struct lov_oinfo *loi,
1273                                        struct obd_io_group *oig)
1274 {
1275         int rc;
1276         ENTRY;
1277
1278         EXP_CHECK_DT_OP(exp, trigger_group_io);
1279         EXP_COUNTER_INCREMENT(exp, trigger_group_io);
1280
1281         rc = OBP(exp->exp_obd, trigger_group_io)(exp, lsm, loi, oig);
1282         RETURN(rc);
1283 }
1284
1285 static inline int obd_teardown_async_page(struct obd_export *exp,
1286                                           struct lov_stripe_md *lsm,
1287                                           struct lov_oinfo *loi, void *cookie)
1288 {
1289         int rc;
1290         ENTRY;
1291
1292         EXP_CHECK_DT_OP(exp, teardown_async_page);
1293         EXP_COUNTER_INCREMENT(exp, teardown_async_page);
1294
1295         rc = OBP(exp->exp_obd, teardown_async_page)(exp, lsm, loi, cookie);
1296         RETURN(rc);
1297 }
1298
1299 static inline int obd_preprw(int cmd, struct obd_export *exp, struct obdo *oa,
1300                              int objcount, struct obd_ioobj *obj,
1301                              int niocount, struct niobuf_remote *remote,
1302                              struct niobuf_local *local,
1303                              struct obd_trans_info *oti,
1304                              struct lustre_capa *capa)
1305 {
1306         int rc;
1307         ENTRY;
1308
1309         EXP_CHECK_DT_OP(exp, preprw);
1310         EXP_COUNTER_INCREMENT(exp, preprw);
1311
1312         rc = OBP(exp->exp_obd, preprw)(cmd, exp, oa, objcount, obj, niocount,
1313                                        remote, local, oti, capa);
1314         RETURN(rc);
1315 }
1316
1317 static inline int obd_commitrw(int cmd, struct obd_export *exp, struct obdo *oa,
1318                                int objcount, struct obd_ioobj *obj,
1319                                int niocount, struct niobuf_local *local,
1320                                struct obd_trans_info *oti, int rc)
1321 {
1322         ENTRY;
1323
1324         EXP_CHECK_DT_OP(exp, commitrw);
1325         EXP_COUNTER_INCREMENT(exp, commitrw);
1326
1327         rc = OBP(exp->exp_obd, commitrw)(cmd, exp, oa, objcount, obj, niocount,
1328                                          local, oti, rc);
1329         RETURN(rc);
1330 }
1331
1332 static inline int obd_merge_lvb(struct obd_export *exp,
1333                                 struct lov_stripe_md *lsm,
1334                                 struct ost_lvb *lvb, int kms_only)
1335 {
1336         int rc;
1337         ENTRY;
1338
1339         EXP_CHECK_DT_OP(exp, merge_lvb);
1340         EXP_COUNTER_INCREMENT(exp, merge_lvb);
1341
1342         rc = OBP(exp->exp_obd, merge_lvb)(exp, lsm, lvb, kms_only);
1343         RETURN(rc);
1344 }
1345
1346 static inline int obd_adjust_kms(struct obd_export *exp,
1347                                  struct lov_stripe_md *lsm, obd_off size,
1348                                  int shrink)
1349 {
1350         int rc;
1351         ENTRY;
1352
1353         EXP_CHECK_DT_OP(exp, adjust_kms);
1354         EXP_COUNTER_INCREMENT(exp, adjust_kms);
1355
1356         rc = OBP(exp->exp_obd, adjust_kms)(exp, lsm, size, shrink);
1357         RETURN(rc);
1358 }
1359
1360 static inline int obd_iocontrol(unsigned int cmd, struct obd_export *exp,
1361                                 int len, void *karg, void *uarg)
1362 {
1363         int rc;
1364         ENTRY;
1365
1366         EXP_CHECK_DT_OP(exp, iocontrol);
1367         EXP_COUNTER_INCREMENT(exp, iocontrol);
1368
1369         rc = OBP(exp->exp_obd, iocontrol)(cmd, exp, len, karg, uarg);
1370         RETURN(rc);
1371 }
1372
1373 static inline int obd_enqueue_rqset(struct obd_export *exp,
1374                                     struct obd_info *oinfo,
1375                                     struct ldlm_enqueue_info *einfo)
1376 {
1377         struct ptlrpc_request_set *set = NULL;
1378         int rc;
1379         ENTRY;
1380
1381         EXP_CHECK_DT_OP(exp, enqueue);
1382         EXP_COUNTER_INCREMENT(exp, enqueue);
1383
1384         set =  ptlrpc_prep_set();
1385         if (set == NULL)
1386                 RETURN(-ENOMEM);
1387
1388         rc = OBP(exp->exp_obd, enqueue)(exp, oinfo, einfo, set);
1389         if (rc == 0)
1390                 rc = ptlrpc_set_wait(set);
1391         ptlrpc_set_destroy(set);
1392         RETURN(rc);
1393 }
1394
1395 static inline int obd_enqueue(struct obd_export *exp,
1396                               struct obd_info *oinfo,
1397                               struct ldlm_enqueue_info *einfo,
1398                               struct ptlrpc_request_set *set)
1399 {
1400         int rc;
1401         ENTRY;
1402
1403         EXP_CHECK_DT_OP(exp, enqueue);
1404         EXP_COUNTER_INCREMENT(exp, enqueue);
1405
1406         rc = OBP(exp->exp_obd, enqueue)(exp, oinfo, einfo, set);
1407         RETURN(rc);
1408 }
1409
1410 static inline int obd_match(struct obd_export *exp, struct lov_stripe_md *ea,
1411                             __u32 type, ldlm_policy_data_t *policy, __u32 mode,
1412                             int *flags, void *data, struct lustre_handle *lockh)
1413 {
1414         int rc;
1415         ENTRY;
1416
1417         EXP_CHECK_DT_OP(exp, match);
1418         EXP_COUNTER_INCREMENT(exp, match);
1419
1420         rc = OBP(exp->exp_obd, match)(exp, ea, type, policy, mode, flags, data,
1421                                       lockh);
1422         RETURN(rc);
1423 }
1424
1425 static inline int obd_change_cbdata(struct obd_export *exp,
1426                                     struct lov_stripe_md *lsm,
1427                                     ldlm_iterator_t it, void *data)
1428 {
1429         int rc;
1430         ENTRY;
1431
1432         EXP_CHECK_DT_OP(exp, change_cbdata);
1433         EXP_COUNTER_INCREMENT(exp, change_cbdata);
1434
1435         rc = OBP(exp->exp_obd, change_cbdata)(exp, lsm, it, data);
1436         RETURN(rc);
1437 }
1438
1439 static inline int obd_cancel(struct obd_export *exp,
1440                              struct lov_stripe_md *ea, __u32 mode,
1441                              struct lustre_handle *lockh)
1442 {
1443         int rc;
1444         ENTRY;
1445
1446         EXP_CHECK_DT_OP(exp, cancel);
1447         EXP_COUNTER_INCREMENT(exp, cancel);
1448
1449         rc = OBP(exp->exp_obd, cancel)(exp, ea, mode, lockh);
1450         RETURN(rc);
1451 }
1452
1453 static inline int obd_cancel_unused(struct obd_export *exp,
1454                                     struct lov_stripe_md *ea,
1455                                     int flags, void *opaque)
1456 {
1457         int rc;
1458         ENTRY;
1459
1460         EXP_CHECK_DT_OP(exp, cancel_unused);
1461         EXP_COUNTER_INCREMENT(exp, cancel_unused);
1462
1463         rc = OBP(exp->exp_obd, cancel_unused)(exp, ea, flags, opaque);
1464         RETURN(rc);
1465 }
1466
1467 static inline int obd_join_lru(struct obd_export *exp,
1468                                struct lov_stripe_md *ea, int join)
1469 {
1470         int rc;
1471         ENTRY;
1472
1473         EXP_CHECK_DT_OP(exp, join_lru);
1474         EXP_COUNTER_INCREMENT(exp, join_lru);
1475
1476         rc = OBP(exp->exp_obd, join_lru)(exp, ea, join);
1477         RETURN(rc);
1478 }
1479
1480 static inline int obd_pin(struct obd_export *exp, const struct lu_fid *fid,
1481                           struct obd_capa *oc, struct obd_client_handle *handle,
1482                           int flag)
1483 {
1484         int rc;
1485         ENTRY;
1486
1487         EXP_CHECK_DT_OP(exp, pin);
1488         EXP_COUNTER_INCREMENT(exp, pin);
1489
1490         rc = OBP(exp->exp_obd, pin)(exp, fid, oc, handle, flag);
1491         RETURN(rc);
1492 }
1493
1494 static inline int obd_unpin(struct obd_export *exp,
1495                             struct obd_client_handle *handle, int flag)
1496 {
1497         int rc;
1498         ENTRY;
1499
1500         EXP_CHECK_DT_OP(exp, unpin);
1501         EXP_COUNTER_INCREMENT(exp, unpin);
1502
1503         rc = OBP(exp->exp_obd, unpin)(exp, handle, flag);
1504         RETURN(rc);
1505 }
1506
1507
1508 static inline void obd_import_event(struct obd_device *obd,
1509                                     struct obd_import *imp,
1510                                     enum obd_import_event event)
1511 {
1512         ENTRY;
1513         if (!obd) {
1514                 CERROR("NULL device\n");
1515                 EXIT;
1516                 return;
1517         }
1518         if (obd->obd_set_up && OBP(obd, import_event)) {
1519                 OBD_COUNTER_INCREMENT(obd, import_event);
1520                 OBP(obd, import_event)(obd, imp, event);
1521         }
1522         EXIT;
1523 }
1524
1525 static inline int obd_llog_connect(struct obd_export *exp,
1526                                    struct llogd_conn_body *body)
1527 {
1528         int rc;
1529         ENTRY;
1530
1531         OBD_CHECK_DT_OP(exp->exp_obd, llog_connect, 0);
1532         EXP_COUNTER_INCREMENT(exp, llog_connect);
1533
1534         rc = OBP(exp->exp_obd, llog_connect)(exp, body);
1535         RETURN(rc);
1536 }
1537
1538
1539 static inline int obd_notify(struct obd_device *obd,
1540                              struct obd_device *watched,
1541                              enum obd_notify_event ev,
1542                              void *data)
1543 {
1544         int rc;
1545         ENTRY;
1546         OBD_CHECK_DEV(obd);
1547
1548         /* the check for async_recov is a complete hack - I'm hereby
1549            overloading the meaning to also mean "this was called from
1550            mds_postsetup".  I know that my mds is able to handle notifies
1551            by this point, and it needs to get them to execute mds_postrecov. */
1552         if (!obd->obd_set_up && !obd->obd_async_recov) {
1553                 CDEBUG(D_HA, "obd %s not set up\n", obd->obd_name);
1554                 RETURN(-EINVAL);
1555         }
1556
1557         if (!OBP(obd, notify)) {
1558                 CERROR("obd %s has no notify handler\n", obd->obd_name);
1559                 RETURN(-ENOSYS);
1560         }
1561
1562         OBD_COUNTER_INCREMENT(obd, notify);
1563         rc = OBP(obd, notify)(obd, watched, ev, data);
1564         RETURN(rc);
1565 }
1566
1567 static inline int obd_notify_observer(struct obd_device *observer,
1568                                       struct obd_device *observed,
1569                                       enum obd_notify_event ev,
1570                                       void *data)
1571 {
1572         int rc1;
1573         int rc2;
1574
1575         struct obd_notify_upcall *onu;
1576
1577         if (observer->obd_observer)
1578                 rc1 = obd_notify(observer->obd_observer, observed, ev, data);
1579         else
1580                 rc1 = 0;
1581         /*
1582          * Also, call non-obd listener, if any
1583          */
1584         onu = &observer->obd_upcall;
1585         if (onu->onu_upcall != NULL)
1586                 rc2 = onu->onu_upcall(observer, observed, ev, onu->onu_owner);
1587         else
1588                 rc2 = 0;
1589
1590         return rc1 ? rc1 : rc2;
1591 }
1592
1593 static inline int obd_quotacheck(struct obd_export *exp,
1594                                  struct obd_quotactl *oqctl)
1595 {
1596         int rc;
1597         ENTRY;
1598
1599         EXP_CHECK_DT_OP(exp, quotacheck);
1600         EXP_COUNTER_INCREMENT(exp, quotacheck);
1601
1602         rc = OBP(exp->exp_obd, quotacheck)(exp, oqctl);
1603         RETURN(rc);
1604 }
1605
1606 static inline int obd_quotactl(struct obd_export *exp,
1607                                struct obd_quotactl *oqctl)
1608 {
1609         int rc;
1610         ENTRY;
1611
1612         EXP_CHECK_DT_OP(exp, quotactl);
1613         EXP_COUNTER_INCREMENT(exp, quotactl);
1614
1615         rc = OBP(exp->exp_obd, quotactl)(exp, oqctl);
1616         RETURN(rc);
1617 }
1618
1619 static inline int obd_health_check(struct obd_device *obd)
1620 {
1621         /* returns: 0 on healthy
1622          *         >0 on unhealthy + reason code/flag
1623          *            however the only suppored reason == 1 right now
1624          *            We'll need to define some better reasons
1625          *            or flags in the future.
1626          *         <0 on error
1627          */
1628         int rc;
1629         ENTRY;
1630
1631         /* don't use EXP_CHECK_DT_OP, because NULL method is normal here */
1632         if (obd == NULL || !OBT(obd)) {
1633                 CERROR("cleaned up obd\n");
1634                 RETURN(-EOPNOTSUPP);
1635         }
1636         if (!obd->obd_set_up || obd->obd_stopping)
1637                 RETURN(0);
1638         if (!OBP(obd, health_check))
1639                 RETURN(0);
1640
1641         rc = OBP(obd, health_check)(obd);
1642         RETURN(rc);
1643 }
1644
1645 static inline int obd_register_observer(struct obd_device *obd,
1646                                         struct obd_device *observer)
1647 {
1648         ENTRY;
1649         OBD_CHECK_DEV(obd);
1650         if (obd->obd_observer && observer)
1651                 RETURN(-EALREADY);
1652         obd->obd_observer = observer;
1653         RETURN(0);
1654 }
1655
1656 static inline int obd_register_page_removal_cb(struct obd_export *exp,
1657                                                obd_page_removal_cb_t cb,
1658                                                obd_pin_extent_cb pin_cb)
1659 {
1660         int rc;
1661         ENTRY;
1662
1663         OBD_CHECK_DT_OP(exp->exp_obd, register_page_removal_cb, 0);
1664         OBD_COUNTER_INCREMENT(exp->exp_obd, register_page_removal_cb);
1665
1666         rc = OBP(exp->exp_obd, register_page_removal_cb)(exp, cb, pin_cb);
1667         RETURN(rc);
1668 }
1669
1670 static inline int obd_unregister_page_removal_cb(struct obd_export *exp,
1671                                                  obd_page_removal_cb_t cb)
1672 {
1673         int rc;
1674         ENTRY;
1675
1676         OBD_CHECK_DT_OP(exp->exp_obd, unregister_page_removal_cb, 0);
1677         OBD_COUNTER_INCREMENT(exp->exp_obd, unregister_page_removal_cb);
1678
1679         rc = OBP(exp->exp_obd, unregister_page_removal_cb)(exp, cb);
1680         RETURN(rc);
1681 }
1682
1683 static inline int obd_register_lock_cancel_cb(struct obd_export *exp,
1684                                               obd_lock_cancel_cb cb)
1685 {
1686         int rc;
1687         ENTRY;
1688
1689         OBD_CHECK_DT_OP(exp->exp_obd, register_lock_cancel_cb, 0);
1690         OBD_COUNTER_INCREMENT(exp->exp_obd, register_lock_cancel_cb);
1691
1692         rc = OBP(exp->exp_obd, register_lock_cancel_cb)(exp, cb);
1693         RETURN(rc);
1694 }
1695
1696 static inline int obd_unregister_lock_cancel_cb(struct obd_export *exp,
1697                                                  obd_lock_cancel_cb cb)
1698 {
1699         int rc;
1700         ENTRY;
1701
1702         OBD_CHECK_DT_OP(exp->exp_obd, unregister_lock_cancel_cb, 0);
1703         OBD_COUNTER_INCREMENT(exp->exp_obd, unregister_lock_cancel_cb);
1704
1705         rc = OBP(exp->exp_obd, unregister_lock_cancel_cb)(exp, cb);
1706         RETURN(rc);
1707 }
1708
1709 /* metadata helpers */
1710 static inline int md_getstatus(struct obd_export *exp,
1711                                struct lu_fid *fid, struct obd_capa **pc)
1712 {
1713         int rc;
1714         ENTRY;
1715
1716         EXP_CHECK_MD_OP(exp, getstatus);
1717         EXP_MD_COUNTER_INCREMENT(exp, getstatus);
1718         rc = MDP(exp->exp_obd, getstatus)(exp, fid, pc);
1719         RETURN(rc);
1720 }
1721
1722 static inline int md_getattr(struct obd_export *exp, const struct lu_fid *fid,
1723                              struct obd_capa *oc, obd_valid valid, int ea_size,
1724                              struct ptlrpc_request **request)
1725 {
1726         int rc;
1727         ENTRY;
1728         EXP_CHECK_MD_OP(exp, getattr);
1729         EXP_MD_COUNTER_INCREMENT(exp, getattr);
1730         rc = MDP(exp->exp_obd, getattr)(exp, fid, oc, valid,
1731                                         ea_size, request);
1732         RETURN(rc);
1733 }
1734
1735 static inline int md_change_cbdata(struct obd_export *exp,
1736                                    const struct lu_fid *fid,
1737                                    ldlm_iterator_t it, void *data)
1738 {
1739         int rc;
1740         ENTRY;
1741         EXP_CHECK_MD_OP(exp, change_cbdata);
1742         EXP_MD_COUNTER_INCREMENT(exp, change_cbdata);
1743         rc = MDP(exp->exp_obd, change_cbdata)(exp, fid, it, data);
1744         RETURN(rc);
1745 }
1746
1747 static inline int md_close(struct obd_export *exp, struct md_op_data *op_data,
1748                            struct md_open_data *mod,
1749                            struct ptlrpc_request **request)
1750 {
1751         int rc;
1752         ENTRY;
1753         EXP_CHECK_MD_OP(exp, close);
1754         EXP_MD_COUNTER_INCREMENT(exp, close);
1755         rc = MDP(exp->exp_obd, close)(exp, op_data, mod, request);
1756         RETURN(rc);
1757 }
1758
1759 static inline int md_create(struct obd_export *exp, struct md_op_data *op_data,
1760                             const void *data, int datalen, int mode, __u32 uid,
1761                             __u32 gid, __u32 cap_effective, __u64 rdev,
1762                             struct ptlrpc_request **request)
1763 {
1764         int rc;
1765         ENTRY;
1766         EXP_CHECK_MD_OP(exp, create);
1767         EXP_MD_COUNTER_INCREMENT(exp, create);
1768         rc = MDP(exp->exp_obd, create)(exp, op_data, data, datalen, mode,
1769                                        uid, gid, cap_effective, rdev, request);
1770         RETURN(rc);
1771 }
1772
1773 static inline int md_done_writing(struct obd_export *exp,
1774                                   struct md_op_data *op_data,
1775                                   struct md_open_data *mod)
1776 {
1777         int rc;
1778         ENTRY;
1779         EXP_CHECK_MD_OP(exp, done_writing);
1780         EXP_MD_COUNTER_INCREMENT(exp, done_writing);
1781         rc = MDP(exp->exp_obd, done_writing)(exp, op_data, mod);
1782         RETURN(rc);
1783 }
1784
1785 static inline int md_enqueue(struct obd_export *exp,
1786                              struct ldlm_enqueue_info *einfo,
1787                              struct lookup_intent *it,
1788                              struct md_op_data *op_data,
1789                              struct lustre_handle *lockh,
1790                              void *lmm, int lmmsize,
1791                              int extra_lock_flags)
1792 {
1793         int rc;
1794         ENTRY;
1795         EXP_CHECK_MD_OP(exp, enqueue);
1796         EXP_MD_COUNTER_INCREMENT(exp, enqueue);
1797         rc = MDP(exp->exp_obd, enqueue)(exp, einfo, it, op_data, lockh,
1798                                         lmm, lmmsize, extra_lock_flags);
1799         RETURN(rc);
1800 }
1801
1802 static inline int md_getattr_name(struct obd_export *exp,
1803                                   const struct lu_fid *fid, struct obd_capa *oc,
1804                                   const char *name, int namelen,
1805                                   obd_valid valid, int ea_size, __u32 suppgid,
1806                                   struct ptlrpc_request **request)
1807 {
1808         int rc;
1809         ENTRY;
1810         EXP_CHECK_MD_OP(exp, getattr_name);
1811         EXP_MD_COUNTER_INCREMENT(exp, getattr_name);
1812         rc = MDP(exp->exp_obd, getattr_name)(exp, fid, oc, name, namelen,
1813                                              valid, ea_size, suppgid, request);
1814         RETURN(rc);
1815 }
1816
1817 static inline int md_intent_lock(struct obd_export *exp,
1818                                  struct md_op_data *op_data, void *lmm,
1819                                  int lmmsize, struct lookup_intent *it,
1820                                  int flags, struct ptlrpc_request **reqp,
1821                                  ldlm_blocking_callback cb_blocking,
1822                                  int extra_lock_flags)
1823 {
1824         int rc;
1825         ENTRY;
1826         EXP_CHECK_MD_OP(exp, intent_lock);
1827         EXP_MD_COUNTER_INCREMENT(exp, intent_lock);
1828         rc = MDP(exp->exp_obd, intent_lock)(exp, op_data, lmm, lmmsize,
1829                                             it, flags, reqp, cb_blocking,
1830                                             extra_lock_flags);
1831         RETURN(rc);
1832 }
1833
1834 static inline int md_link(struct obd_export *exp, struct md_op_data *op_data,
1835                           struct ptlrpc_request **request)
1836 {
1837         int rc;
1838         ENTRY;
1839         EXP_CHECK_MD_OP(exp, link);
1840         EXP_MD_COUNTER_INCREMENT(exp, link);
1841         rc = MDP(exp->exp_obd, link)(exp, op_data, request);
1842         RETURN(rc);
1843 }
1844
1845 static inline int md_rename(struct obd_export *exp, struct md_op_data *op_data,
1846                             const char *old, int oldlen, const char *new,
1847                             int newlen, struct ptlrpc_request **request)
1848 {
1849         int rc;
1850         ENTRY;
1851         EXP_CHECK_MD_OP(exp, rename);
1852         EXP_MD_COUNTER_INCREMENT(exp, rename);
1853         rc = MDP(exp->exp_obd, rename)(exp, op_data, old, oldlen, new,
1854                                        newlen, request);
1855         RETURN(rc);
1856 }
1857
1858 static inline int md_is_subdir(struct obd_export *exp,
1859                                const struct lu_fid *pfid,
1860                                const struct lu_fid *cfid,
1861                                struct ptlrpc_request **request)
1862 {
1863         int rc;
1864         ENTRY;
1865         EXP_CHECK_MD_OP(exp, is_subdir);
1866         EXP_MD_COUNTER_INCREMENT(exp, is_subdir);
1867         rc = MDP(exp->exp_obd, is_subdir)(exp, pfid, cfid, request);
1868         RETURN(rc);
1869 }
1870
1871 static inline int md_setattr(struct obd_export *exp, struct md_op_data *op_data,
1872                              void *ea, int ealen, void *ea2, int ea2len,
1873                              struct ptlrpc_request **request,
1874                              struct md_open_data **mod)
1875 {
1876         int rc;
1877         ENTRY;
1878         EXP_CHECK_MD_OP(exp, setattr);
1879         EXP_MD_COUNTER_INCREMENT(exp, setattr);
1880         rc = MDP(exp->exp_obd, setattr)(exp, op_data, ea, ealen,
1881                                         ea2, ea2len, request, mod);
1882         RETURN(rc);
1883 }
1884
1885 static inline int md_sync(struct obd_export *exp, const struct lu_fid *fid,
1886                           struct obd_capa *oc, struct ptlrpc_request **request)
1887 {
1888         int rc;
1889         ENTRY;
1890         EXP_CHECK_MD_OP(exp, sync);
1891         EXP_MD_COUNTER_INCREMENT(exp, sync);
1892         rc = MDP(exp->exp_obd, sync)(exp, fid, oc, request);
1893         RETURN(rc);
1894 }
1895
1896 static inline int md_readpage(struct obd_export *exp, const struct lu_fid *fid,
1897                               struct obd_capa *oc, __u64 offset,
1898                               struct page *page,
1899                               struct ptlrpc_request **request)
1900 {
1901         int rc;
1902         ENTRY;
1903         EXP_CHECK_MD_OP(exp, readpage);
1904         EXP_MD_COUNTER_INCREMENT(exp, readpage);
1905         rc = MDP(exp->exp_obd, readpage)(exp, fid, oc, offset, page, request);
1906         RETURN(rc);
1907 }
1908
1909 static inline int md_unlink(struct obd_export *exp, struct md_op_data *op_data,
1910                             struct ptlrpc_request **request)
1911 {
1912         int rc;
1913         ENTRY;
1914         EXP_CHECK_MD_OP(exp, unlink);
1915         EXP_MD_COUNTER_INCREMENT(exp, unlink);
1916         rc = MDP(exp->exp_obd, unlink)(exp, op_data, request);
1917         RETURN(rc);
1918 }
1919
1920 static inline int md_get_lustre_md(struct obd_export *exp,
1921                                    struct ptlrpc_request *req,
1922                                    struct obd_export *dt_exp,
1923                                    struct obd_export *md_exp,
1924                                    struct lustre_md *md)
1925 {
1926         ENTRY;
1927         EXP_CHECK_MD_OP(exp, get_lustre_md);
1928         EXP_MD_COUNTER_INCREMENT(exp, get_lustre_md);
1929         RETURN(MDP(exp->exp_obd, get_lustre_md)(exp, req, dt_exp, md_exp, md));
1930 }
1931
1932 static inline int md_free_lustre_md(struct obd_export *exp,
1933                                     struct lustre_md *md)
1934 {
1935         ENTRY;
1936         EXP_CHECK_MD_OP(exp, free_lustre_md);
1937         EXP_MD_COUNTER_INCREMENT(exp, free_lustre_md);
1938         RETURN(MDP(exp->exp_obd, free_lustre_md)(exp, md));
1939 }
1940
1941 static inline int md_setxattr(struct obd_export *exp,
1942                               const struct lu_fid *fid, struct obd_capa *oc,
1943                               obd_valid valid, const char *name,
1944                               const char *input, int input_size,
1945                               int output_size, int flags, __u32 suppgid,
1946                               struct ptlrpc_request **request)
1947 {
1948         ENTRY;
1949         EXP_CHECK_MD_OP(exp, setxattr);
1950         EXP_MD_COUNTER_INCREMENT(exp, setxattr);
1951         RETURN(MDP(exp->exp_obd, setxattr)(exp, fid, oc, valid, name, input,
1952                                            input_size, output_size, flags,
1953                                            suppgid, request));
1954 }
1955
1956 static inline int md_getxattr(struct obd_export *exp,
1957                               const struct lu_fid *fid, struct obd_capa *oc,
1958                               obd_valid valid, const char *name,
1959                               const char *input, int input_size,
1960                               int output_size, int flags,
1961                               struct ptlrpc_request **request)
1962 {
1963         ENTRY;
1964         EXP_CHECK_MD_OP(exp, getxattr);
1965         EXP_MD_COUNTER_INCREMENT(exp, getxattr);
1966         RETURN(MDP(exp->exp_obd, getxattr)(exp, fid, oc, valid, name, input,
1967                                            input_size, output_size, flags,
1968                                            request));
1969 }
1970
1971 static inline int md_set_open_replay_data(struct obd_export *exp,
1972                                           struct obd_client_handle *och,
1973                                           struct ptlrpc_request *open_req)
1974 {
1975         ENTRY;
1976         EXP_CHECK_MD_OP(exp, set_open_replay_data);
1977         EXP_MD_COUNTER_INCREMENT(exp, set_open_replay_data);
1978         RETURN(MDP(exp->exp_obd, set_open_replay_data)(exp, och, open_req));
1979 }
1980
1981 static inline int md_clear_open_replay_data(struct obd_export *exp,
1982                                             struct obd_client_handle *och)
1983 {
1984         ENTRY;
1985         EXP_CHECK_MD_OP(exp, clear_open_replay_data);
1986         EXP_MD_COUNTER_INCREMENT(exp, clear_open_replay_data);
1987         RETURN(MDP(exp->exp_obd, clear_open_replay_data)(exp, och));
1988 }
1989
1990 static inline int md_set_lock_data(struct obd_export *exp,
1991                                    __u64 *lockh, void *data)
1992 {
1993         ENTRY;
1994         EXP_CHECK_MD_OP(exp, set_lock_data);
1995         EXP_MD_COUNTER_INCREMENT(exp, set_lock_data);
1996         RETURN(MDP(exp->exp_obd, set_lock_data)(exp, lockh, data));
1997 }
1998
1999 static inline int md_cancel_unused(struct obd_export *exp,
2000                                    const struct lu_fid *fid,
2001                                    ldlm_policy_data_t *policy,
2002                                    ldlm_mode_t mode, int flags, void *opaque)
2003 {
2004         int rc;
2005         ENTRY;
2006
2007         EXP_CHECK_MD_OP(exp, cancel_unused);
2008         EXP_MD_COUNTER_INCREMENT(exp, cancel_unused);
2009
2010         rc = MDP(exp->exp_obd, cancel_unused)(exp, fid, policy, mode,
2011                                               flags, opaque);
2012         RETURN(rc);
2013 }
2014
2015 static inline ldlm_mode_t md_lock_match(struct obd_export *exp, int flags,
2016                                         const struct lu_fid *fid,
2017                                         ldlm_type_t type,
2018                                         ldlm_policy_data_t *policy,
2019                                         ldlm_mode_t mode,
2020                                         struct lustre_handle *lockh)
2021 {
2022         ENTRY;
2023         EXP_CHECK_MD_OP(exp, lock_match);
2024         EXP_MD_COUNTER_INCREMENT(exp, lock_match);
2025         RETURN(MDP(exp->exp_obd, lock_match)(exp, flags, fid, type,
2026                                              policy, mode, lockh));
2027 }
2028
2029 static inline int md_init_ea_size(struct obd_export *exp, int easize,
2030                                   int def_asize, int cookiesize)
2031 {
2032         ENTRY;
2033         EXP_CHECK_MD_OP(exp, init_ea_size);
2034         EXP_MD_COUNTER_INCREMENT(exp, init_ea_size);
2035         RETURN(MDP(exp->exp_obd, init_ea_size)(exp, easize, def_asize,
2036                                                cookiesize));
2037 }
2038
2039 static inline int md_get_remote_perm(struct obd_export *exp,
2040                                      const struct lu_fid *fid,
2041                                      struct obd_capa *oc, __u32 suppgid,
2042                                      struct ptlrpc_request **request)
2043 {
2044         ENTRY;
2045         EXP_CHECK_MD_OP(exp, get_remote_perm);
2046         EXP_MD_COUNTER_INCREMENT(exp, get_remote_perm);
2047         RETURN(MDP(exp->exp_obd, get_remote_perm)(exp, fid, oc, suppgid,
2048                                                   request));
2049 }
2050
2051 static inline int md_renew_capa(struct obd_export *exp, struct obd_capa *ocapa,
2052                                 renew_capa_cb_t cb)
2053 {
2054         int rc;
2055         ENTRY;
2056         EXP_CHECK_MD_OP(exp, renew_capa);
2057         EXP_MD_COUNTER_INCREMENT(exp, renew_capa);
2058         rc = MDP(exp->exp_obd, renew_capa)(exp, ocapa, cb);
2059         RETURN(rc);
2060 }
2061
2062 static inline int md_intent_getattr_async(struct obd_export *exp,
2063                                           struct md_enqueue_info *minfo,
2064                                           struct ldlm_enqueue_info *einfo)
2065 {
2066         int rc;
2067         ENTRY;
2068         EXP_CHECK_MD_OP(exp, intent_getattr_async);
2069         EXP_MD_COUNTER_INCREMENT(exp, intent_getattr_async);
2070         rc = MDP(exp->exp_obd, intent_getattr_async)(exp, minfo, einfo);
2071         RETURN(rc);
2072 }
2073
2074 static inline int md_revalidate_lock(struct obd_export *exp,
2075                                      struct lookup_intent *it,
2076                                      struct lu_fid *fid)
2077 {
2078         int rc;
2079         ENTRY;
2080         EXP_CHECK_MD_OP(exp, revalidate_lock);
2081         EXP_MD_COUNTER_INCREMENT(exp, revalidate_lock);
2082         rc = MDP(exp->exp_obd, revalidate_lock)(exp, it, fid);
2083         RETURN(rc);
2084 }
2085
2086
2087 /* OBD Metadata Support */
2088
2089 extern int obd_init_caches(void);
2090 extern void obd_cleanup_caches(void);
2091
2092 /* support routines */
2093 extern cfs_mem_cache_t *obdo_cachep;
2094
2095 #define OBDO_ALLOC(ptr)                                                       \
2096 do {                                                                          \
2097         OBD_SLAB_ALLOC_PTR((ptr), obdo_cachep);                               \
2098 } while(0)
2099
2100 #define OBDO_FREE(ptr)                                                        \
2101 do {                                                                          \
2102         OBD_SLAB_FREE_PTR((ptr), obdo_cachep);                                \
2103 } while(0)
2104
2105
2106 static inline void obdo2fid(struct obdo *oa, struct lu_fid *fid)
2107 {
2108         /* something here */
2109 }
2110
2111 static inline void fid2obdo(struct lu_fid *fid, struct obdo *oa)
2112 {
2113         /* something here */
2114 }
2115
2116 /* I'm as embarrassed about this as you are.
2117  *
2118  * <shaver> // XXX do not look into _superhack with remaining eye
2119  * <shaver> // XXX if this were any uglier, I'd get my own show on MTV */
2120 extern int (*ptlrpc_put_connection_superhack)(struct ptlrpc_connection *c);
2121
2122 /* sysctl.c */
2123 extern void obd_sysctl_init (void);
2124 extern void obd_sysctl_clean (void);
2125
2126 /* uuid.c  */
2127 typedef __u8 class_uuid_t[16];
2128 void class_uuid_unparse(class_uuid_t in, struct obd_uuid *out);
2129
2130 /* lustre_peer.c    */
2131 int lustre_uuid_to_peer(const char *uuid, lnet_nid_t *peer_nid, int index);
2132 int class_add_uuid(const char *uuid, __u64 nid);
2133 int class_del_uuid (const char *uuid);
2134 void class_init_uuidlist(void);
2135 void class_exit_uuidlist(void);
2136
2137 /* mea.c */
2138 int mea_name2idx(struct lmv_stripe_md *mea, const char *name, int namelen);
2139 int raw_name2idx(int hashtype, int count, const char *name, int namelen);
2140
2141 /* prng.c */
2142 void ll_generate_random_uuid(class_uuid_t uuid_out);
2143
2144 #endif /* __LINUX_OBD_CLASS_H */