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