Whamcloud - gitweb
8121f805388487a94d2d630a11a46d6885777b07
[fs/lustre-release.git] / lustre / include / obd_class.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
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
40 #include <obd_support.h>
41 #include <lustre_import.h>
42 #include <lustre_net.h>
43 #include <obd.h>
44 #include <lustre_lib.h>
45 #include <lustre/lustre_idl.h>
46 #include <lprocfs_status.h>
47
48 #define OBD_STATFS_NODELAY      0x0001  /* requests should be send without delay
49                                          * and resends for avoid deadlocks */
50 #define OBD_STATFS_FROM_CACHE   0x0002  /* the statfs callback should not update
51                                          * obd_osfs_age */
52 #define OBD_STATFS_PTLRPCD      0x0004  /* requests will be sent via ptlrpcd
53                                          * instead of a specific set. This
54                                          * means that we cannot rely on the set
55                                          * interpret routine to be called.
56                                          * lov_statfs_fini() must thus be called
57                                          * by the request interpret routine */
58 #define OBD_STATFS_FOR_MDT0     0x0008  /* The statfs is only for retrieving
59                                          * information from MDT0. */
60
61 /* OBD Device Declarations */
62 extern struct obd_device *obd_devs[MAX_OBD_DEVICES];
63 extern struct list_head obd_types;
64 extern spinlock_t obd_types_lock;
65 extern rwlock_t obd_dev_lock;
66
67 /* OBD Operations Declarations */
68 extern struct obd_device *class_conn2obd(struct lustre_handle *);
69 extern struct obd_device *class_exp2obd(struct obd_export *);
70 extern int class_handle_ioctl(unsigned int cmd, unsigned long arg);
71 extern int lustre_get_jobid(char *jobid);
72
73 struct lu_device_type;
74
75 /* genops.c */
76 struct obd_export *class_conn2export(struct lustre_handle *);
77 int class_register_type(struct obd_ops *, struct md_ops *, bool enable_proc,
78                         struct lprocfs_vars *module_vars,
79                         const char *nm, struct lu_device_type *ldt);
80 int class_unregister_type(const char *nm);
81
82 struct obd_device *class_newdev(const char *type_name, const char *name);
83 void class_release_dev(struct obd_device *obd);
84
85 int class_name2dev(const char *name);
86 struct obd_device *class_name2obd(const char *name);
87 int class_uuid2dev(struct obd_uuid *uuid);
88 struct obd_device *class_uuid2obd(struct obd_uuid *uuid);
89 void class_obd_list(void);
90 struct obd_device * class_find_client_obd(struct obd_uuid *tgt_uuid,
91                                           const char * typ_name,
92                                           struct obd_uuid *grp_uuid);
93 struct obd_device * class_devices_in_group(struct obd_uuid *grp_uuid,
94                                            int *next);
95 struct obd_device * class_num2obd(int num);
96 int get_devices_count(void);
97
98 int class_notify_sptlrpc_conf(const char *fsname, int namelen);
99
100 char *obd_export_nid2str(struct obd_export *exp);
101
102 int obd_export_evict_by_nid(struct obd_device *obd, const char *nid);
103 int obd_export_evict_by_uuid(struct obd_device *obd, const char *uuid);
104 int obd_connect_flags2str(char *page, int count, __u64 flags, char *sep);
105
106 int obd_zombie_impexp_init(void);
107 void obd_zombie_impexp_stop(void);
108 void obd_zombie_impexp_cull(void);
109 void obd_zombie_barrier(void);
110 void obd_exports_barrier(struct obd_device *obd);
111 int kuc_len(int payload_len);
112 struct kuc_hdr * kuc_ptr(void *p);
113 int kuc_ispayload(void *p);
114 void *kuc_alloc(int payload_len, int transport, int type);
115 void kuc_free(void *p, int payload_len);
116 int obd_get_request_slot(struct client_obd *cli);
117 void obd_put_request_slot(struct client_obd *cli);
118 __u32 obd_get_max_rpcs_in_flight(struct client_obd *cli);
119 int obd_set_max_rpcs_in_flight(struct client_obd *cli, __u32 max);
120
121 struct llog_handle;
122 struct llog_rec_hdr;
123 typedef int (*llog_cb_t)(const struct lu_env *, struct llog_handle *,
124                          struct llog_rec_hdr *, void *);
125 /* obd_config.c */
126 struct lustre_cfg *lustre_cfg_rename(struct lustre_cfg *cfg,
127                                      const char *new_name);
128 int class_process_config(struct lustre_cfg *lcfg);
129 int class_process_proc_param(char *prefix, struct lprocfs_vars *lvars,
130                              struct lustre_cfg *lcfg, void *data);
131 int class_attach(struct lustre_cfg *lcfg);
132 int class_setup(struct obd_device *obd, struct lustre_cfg *lcfg);
133 int class_cleanup(struct obd_device *obd, struct lustre_cfg *lcfg);
134 int class_detach(struct obd_device *obd, struct lustre_cfg *lcfg);
135 struct obd_device *class_incref(struct obd_device *obd,
136                                 const char *scope, const void *source);
137 void class_decref(struct obd_device *obd,
138                   const char *scope, const void *source);
139 void dump_exports(struct obd_device *obd, int locks);
140 int class_config_llog_handler(const struct lu_env *env,
141                               struct llog_handle *handle,
142                               struct llog_rec_hdr *rec, void *data);
143 int class_add_conn(struct obd_device *obd, struct lustre_cfg *lcfg);
144 int class_add_uuid(const char *uuid, __u64 nid);
145
146 #define CFG_F_START     0x01   /* Set when we start updating from a log */
147 #define CFG_F_MARKER    0x02   /* We are within a maker */
148 #define CFG_F_SKIP      0x04   /* We should ignore this cfg command */
149 #define CFG_F_COMPAT146 0x08   /* Allow old-style logs */
150 #define CFG_F_EXCLUDE   0x10   /* OST exclusion list */
151
152 /* Passed as data param to class_config_parse_llog */
153 struct config_llog_instance {
154         char                    *cfg_obdname;
155         void                    *cfg_instance;
156         struct super_block      *cfg_sb;
157         struct obd_uuid          cfg_uuid;
158         llog_cb_t                cfg_callback;
159         int                      cfg_last_idx; /* for partial llog processing */
160         int                      cfg_flags;
161         __u32                    cfg_lwp_idx;
162 };
163 int class_config_parse_llog(const struct lu_env *env, struct llog_ctxt *ctxt,
164                             char *name, struct config_llog_instance *cfg);
165 int class_config_dump_llog(const struct lu_env *env, struct llog_ctxt *ctxt,
166                            char *name, struct config_llog_instance *cfg);
167
168 enum {
169         CONFIG_T_CONFIG  = 0,
170         CONFIG_T_SPTLRPC = 1,
171         CONFIG_T_RECOVER = 2,
172         CONFIG_T_PARAMS  = 3,
173         CONFIG_T_MAX     = 4
174 };
175
176 #define PARAMS_FILENAME "params"
177 #define LCTL_UPCALL     "lctl"
178
179 /* list of active configuration logs  */
180 struct config_llog_data {
181         struct ldlm_res_id          cld_resid;
182         struct config_llog_instance cld_cfg;
183         struct list_head            cld_list_chain;
184         atomic_t                    cld_refcount;
185         struct config_llog_data    *cld_sptlrpc;/* depended sptlrpc log */
186         struct config_llog_data    *cld_params; /* common parameters log */
187         struct config_llog_data    *cld_recover;/* imperative recover log */
188         struct obd_export          *cld_mgcexp;
189         struct mutex                cld_lock;
190         int                         cld_type;
191         unsigned int                cld_stopping:1, /* we were told to stop
192                                                      * watching */
193                                     cld_lostlock:1; /* lock not requeued */
194         char                        cld_logname[0];
195 };
196
197 struct lustre_profile {
198         struct list_head         lp_list;
199         char                    *lp_profile;
200         char                    *lp_dt;
201         char                    *lp_md;
202 };
203
204 struct lustre_profile *class_get_profile(const char * prof);
205 void class_del_profile(const char *prof);
206 void class_del_profiles(void);
207
208 #if LUSTRE_TRACKS_LOCK_EXP_REFS
209
210 void __class_export_add_lock_ref(struct obd_export *, struct ldlm_lock *);
211 void __class_export_del_lock_ref(struct obd_export *, struct ldlm_lock *);
212 extern void (*class_export_dump_hook)(struct obd_export *);
213
214 #else
215
216 #define __class_export_add_lock_ref(exp, lock)             do {} while(0)
217 #define __class_export_del_lock_ref(exp, lock)             do {} while(0)
218
219 #endif
220
221 #define class_export_rpc_inc(exp)                                       \
222 ({                                                                      \
223         atomic_inc(&(exp)->exp_rpc_count);                              \
224         CDEBUG(D_INFO, "RPC GETting export %p : new rpc_count %d\n",    \
225                (exp), atomic_read(&(exp)->exp_rpc_count));              \
226 })
227
228 #define class_export_rpc_dec(exp)                                       \
229 ({                                                                      \
230         LASSERT_ATOMIC_POS(&exp->exp_rpc_count);                        \
231         atomic_dec(&(exp)->exp_rpc_count);                              \
232         CDEBUG(D_INFO, "RPC PUTting export %p : new rpc_count %d\n",    \
233                (exp), atomic_read(&(exp)->exp_rpc_count));              \
234 })
235
236 #define class_export_lock_get(exp, lock)                                \
237 ({                                                                      \
238         atomic_inc(&(exp)->exp_locks_count);                            \
239         __class_export_add_lock_ref(exp, lock);                         \
240         CDEBUG(D_INFO, "lock GETting export %p : new locks_count %d\n", \
241                (exp), atomic_read(&(exp)->exp_locks_count));            \
242         class_export_get(exp);                                          \
243 })
244
245 #define class_export_lock_put(exp, lock)                                \
246 ({                                                                      \
247         LASSERT_ATOMIC_POS(&exp->exp_locks_count);                      \
248         atomic_dec(&(exp)->exp_locks_count);                            \
249         __class_export_del_lock_ref(exp, lock);                         \
250         CDEBUG(D_INFO, "lock PUTting export %p : new locks_count %d\n", \
251                (exp), atomic_read(&(exp)->exp_locks_count));            \
252         class_export_put(exp);                                          \
253 })
254
255 #define class_export_cb_get(exp)                                        \
256 ({                                                                      \
257         atomic_inc(&(exp)->exp_cb_count);                               \
258         CDEBUG(D_INFO, "callback GETting export %p : new cb_count %d\n",\
259                (exp), atomic_read(&(exp)->exp_cb_count));               \
260         class_export_get(exp);                                          \
261 })
262
263 #define class_export_cb_put(exp)                                        \
264 ({                                                                      \
265         LASSERT_ATOMIC_POS(&exp->exp_cb_count);                         \
266         atomic_dec(&(exp)->exp_cb_count);                               \
267         CDEBUG(D_INFO, "callback PUTting export %p : new cb_count %d\n",\
268                (exp), atomic_read(&(exp)->exp_cb_count));               \
269         class_export_put(exp);                                          \
270 })
271
272 /* genops.c */
273 struct obd_export *class_export_get(struct obd_export *exp);
274 void class_export_put(struct obd_export *exp);
275 struct obd_export *class_new_export(struct obd_device *obddev,
276                                     struct obd_uuid *cluuid);
277 void class_unlink_export(struct obd_export *exp);
278
279 struct obd_import *class_import_get(struct obd_import *);
280 void class_import_put(struct obd_import *);
281 struct obd_import *class_new_import(struct obd_device *obd);
282 void class_destroy_import(struct obd_import *exp);
283
284 struct obd_type *class_search_type(const char *name);
285 struct obd_type *class_get_type(const char *name);
286 void class_put_type(struct obd_type *type);
287 int class_connect(struct lustre_handle *conn, struct obd_device *obd,
288                   struct obd_uuid *cluuid);
289 int class_disconnect(struct obd_export *exp);
290 void class_fail_export(struct obd_export *exp);
291 int class_connected_export(struct obd_export *exp);
292 void class_disconnect_exports(struct obd_device *obddev);
293 int class_manual_cleanup(struct obd_device *obd);
294 void class_disconnect_stale_exports(struct obd_device *,
295                                     int (*test_export)(struct obd_export *));
296 static inline enum obd_option exp_flags_from_obd(struct obd_device *obd)
297 {
298         return ((obd->obd_fail ? OBD_OPT_FAILOVER : 0) |
299                 (obd->obd_force ? OBD_OPT_FORCE : 0) |
300                 (obd->obd_abort_recovery ? OBD_OPT_ABORT_RECOV : 0) |
301                 0);
302 }
303
304 #ifdef HAVE_SERVER_SUPPORT
305 static inline struct lu_target *class_exp2tgt(struct obd_export *exp)
306 {
307         LASSERT(exp->exp_obd);
308         return exp->exp_obd->u.obt.obt_lut;
309 }
310
311 static inline struct lr_server_data *class_server_data(struct obd_device *obd)
312 {
313         LASSERT(obd->u.obt.obt_lut);
314         return &obd->u.obt.obt_lut->lut_lsd;
315 }
316 #endif
317
318 /* obdo.c */
319 struct lu_attr;
320 struct inode;
321
322 void obdo_from_la(struct obdo *dst, const struct lu_attr *la, u64 valid);
323 void la_from_obdo(struct lu_attr *la, const struct obdo *dst, u64 valid);
324
325 void obdo_cpy_md(struct obdo *dst, const struct obdo *src, u64 valid);
326 void obdo_to_ioobj(const struct obdo *oa, struct obd_ioobj *ioobj);
327
328 #define OBT(dev)        (dev)->obd_type
329 #define OBP(dev, op)    (dev)->obd_type->typ_dt_ops->o_ ## op
330 #define MDP(dev, op)    (dev)->obd_type->typ_md_ops->m_ ## op
331 #define CTXTP(ctxt, op) (ctxt)->loc_logops->lop_##op
332
333 /* Ensure obd_setup: used for cleanup which must be called
334    while obd is stopping */
335 #define OBD_CHECK_DEV(obd)                                      \
336 do {                                                            \
337         if (!(obd)) {                                           \
338                 CERROR("NULL device\n");                        \
339                 RETURN(-ENODEV);                                \
340         }                                                       \
341 } while (0)
342
343 /* ensure obd_setup and !obd_stopping */
344 #define OBD_CHECK_DEV_ACTIVE(obd)                               \
345 do {                                                            \
346         OBD_CHECK_DEV(obd);                                     \
347         if (!(obd)->obd_set_up || (obd)->obd_stopping) {        \
348                 CERROR("Device %d not setup\n",                 \
349                        (obd)->obd_minor);                       \
350                 RETURN(-ENODEV);                                \
351         }                                                       \
352 } while (0)
353
354
355 #ifdef CONFIG_PROC_FS
356 #define OBD_COUNTER_OFFSET(op)                                                 \
357         ((offsetof(struct obd_ops, o_ ## op) -                                 \
358           offsetof(struct obd_ops, o_iocontrol))                               \
359          / sizeof(((struct obd_ops *)NULL)->o_iocontrol))
360
361 /* The '- 1' below is for o_owner. */
362 #define NUM_OBD_STATS                                                          \
363         (sizeof(struct obd_ops) /                                              \
364          sizeof(((struct obd_ops *)NULL)->o_iocontrol) - 1)
365
366 #define OBD_COUNTER_INCREMENT(obd, op)                                         \
367         lprocfs_counter_incr((obd)->obd_stats,                                 \
368                              (obd)->obd_cntr_base + OBD_COUNTER_OFFSET(op))
369
370 #define EXP_COUNTER_INCREMENT(exp, op)                                         \
371         do {                                                                   \
372                 unsigned int _off;                                             \
373                 _off = (exp)->exp_obd->obd_cntr_base + OBD_COUNTER_OFFSET(op); \
374                 lprocfs_counter_incr((exp)->exp_obd->obd_stats, _off);         \
375                 if ((exp)->exp_obd->obd_uses_nid_stats &&                      \
376                     (exp)->exp_nid_stats != NULL)                              \
377                         lprocfs_counter_incr((exp)->exp_nid_stats->nid_stats,  \
378                                              _off);                            \
379         } while (0)
380
381 #define _MD_COUNTER_OFFSET(m_op)                                               \
382         ((offsetof(struct md_ops, m_op) -                                      \
383           offsetof(struct md_ops, MD_STATS_FIRST_OP)) /                        \
384          sizeof(((struct md_ops *)NULL)->MD_STATS_FIRST_OP))
385
386 #define MD_COUNTER_OFFSET(op) _MD_COUNTER_OFFSET(m_ ## op)
387
388 #define NUM_MD_STATS                                                           \
389         (_MD_COUNTER_OFFSET(MD_STATS_LAST_OP) -                                \
390          _MD_COUNTER_OFFSET(MD_STATS_FIRST_OP) + 1)
391
392 /* Note that we only increment md counters for ops whose offset is less
393  * than NUM_MD_STATS. This is explained in a comment in the definition
394  * of struct md_ops. */
395 #define EXP_MD_COUNTER_INCREMENT(exp, op)                                      \
396         do {                                                                   \
397                 if (MD_COUNTER_OFFSET(op) < NUM_MD_STATS)                      \
398                         lprocfs_counter_incr((exp)->exp_obd->obd_md_stats,     \
399                                         (exp)->exp_obd->obd_md_cntr_base +     \
400                                         MD_COUNTER_OFFSET(op));                \
401         } while (0)
402
403 #else
404 #define OBD_COUNTER_OFFSET(op)
405 #define OBD_COUNTER_INCREMENT(obd, op)
406 #define EXP_COUNTER_INCREMENT(exp, op)
407 #define EXP_MD_COUNTER_INCREMENT(exp, op)
408 #endif
409
410 static inline int lprocfs_nid_ldlm_stats_init(struct nid_stat* tmp)
411 {
412         /* Always add in ldlm_stats */
413         tmp->nid_ldlm_stats = lprocfs_alloc_stats(LDLM_LAST_OPC - LDLM_FIRST_OPC
414                                                   ,LPROCFS_STATS_FLAG_NOPERCPU);
415         if (tmp->nid_ldlm_stats == NULL)
416                 return -ENOMEM;
417
418         lprocfs_init_ldlm_stats(tmp->nid_ldlm_stats);
419
420         return lprocfs_register_stats(tmp->nid_proc, "ldlm_stats",
421                                       tmp->nid_ldlm_stats);
422 }
423
424 #define EXP_CHECK_MD_OP(exp, op)                                \
425 do {                                                            \
426         if ((exp) == NULL) {                                    \
427                 CERROR("obd_" #op ": NULL export\n");           \
428                 RETURN(-ENODEV);                                \
429         }                                                       \
430         if ((exp)->exp_obd == NULL || !OBT((exp)->exp_obd)) {   \
431                 CERROR("obd_" #op ": cleaned up obd\n");        \
432                 RETURN(-EOPNOTSUPP);                            \
433         }                                                       \
434         if (!OBT((exp)->exp_obd) || !MDP((exp)->exp_obd, op)) { \
435                 CERROR("obd_" #op ": dev %s/%d no operation\n", \
436                        (exp)->exp_obd->obd_name,                \
437                        (exp)->exp_obd->obd_minor);              \
438                 RETURN(-EOPNOTSUPP);                            \
439         }                                                       \
440 } while (0)
441
442
443 #define OBD_CHECK_DT_OP(obd, op, err)                           \
444 do {                                                            \
445         if (!OBT(obd) || !OBP((obd), op)) {                     \
446                 if (err)                                        \
447                         CERROR("obd_" #op ": dev %d no operation\n",    \
448                                obd->obd_minor);                 \
449                 RETURN(err);                                    \
450         }                                                       \
451 } while (0)
452
453 #define EXP_CHECK_DT_OP(exp, op)                                \
454 do {                                                            \
455         if ((exp) == NULL) {                                    \
456                 CERROR("obd_" #op ": NULL export\n");           \
457                 RETURN(-ENODEV);                                \
458         }                                                       \
459         if ((exp)->exp_obd == NULL || !OBT((exp)->exp_obd)) {   \
460                 CERROR("obd_" #op ": cleaned up obd\n");        \
461                 RETURN(-EOPNOTSUPP);                            \
462         }                                                       \
463         if (!OBT((exp)->exp_obd) || !OBP((exp)->exp_obd, op)) { \
464                 CERROR("obd_" #op ": dev %d no operation\n",    \
465                        (exp)->exp_obd->obd_minor);              \
466                 RETURN(-EOPNOTSUPP);                            \
467         }                                                       \
468 } while (0)
469
470 #define CTXT_CHECK_OP(ctxt, op, err)                                 \
471 do {                                                                 \
472         if (!OBT(ctxt->loc_obd) || !CTXTP((ctxt), op)) {             \
473                 if (err)                                             \
474                         CERROR("lop_" #op ": dev %d no operation\n", \
475                                ctxt->loc_obd->obd_minor);            \
476                 RETURN(err);                                         \
477         }                                                            \
478 } while (0)
479
480 static inline int class_devno_max(void)
481 {
482         return MAX_OBD_DEVICES;
483 }
484
485 static inline int obd_get_info(const struct lu_env *env,
486                                struct obd_export *exp,
487                                __u32 keylen, void *key,
488                                __u32 *vallen, void *val,
489                                struct lov_stripe_md *lsm)
490 {
491         int rc;
492         ENTRY;
493
494         EXP_CHECK_DT_OP(exp, get_info);
495         EXP_COUNTER_INCREMENT(exp, get_info);
496
497         rc = OBP(exp->exp_obd, get_info)(env, exp, keylen, key, vallen, val,
498                                          lsm);
499         RETURN(rc);
500 }
501
502 static inline int obd_set_info_async(const struct lu_env *env,
503                                      struct obd_export *exp,
504                                      __u32 keylen, void *key,
505                                      __u32 vallen, void *val,
506                                      struct ptlrpc_request_set *set)
507 {
508         int rc;
509         ENTRY;
510
511         EXP_CHECK_DT_OP(exp, set_info_async);
512         EXP_COUNTER_INCREMENT(exp, set_info_async);
513
514         rc = OBP(exp->exp_obd, set_info_async)(env, exp, keylen, key, vallen,
515                                                val, set);
516         RETURN(rc);
517 }
518
519 /*
520  * obd-lu integration.
521  *
522  * Functionality is being moved into new lu_device-based layering, but some
523  * pieces of configuration process are still based on obd devices.
524  *
525  * Specifically, lu_device_type_operations::ldto_device_alloc() methods fully
526  * subsume ->o_setup() methods of obd devices they replace. The same for
527  * lu_device_operations::ldo_process_config() and ->o_process_config(). As a
528  * result, obd_setup() and obd_process_config() branch and call one XOR
529  * another.
530  *
531  * Yet neither lu_device_type_operations::ldto_device_fini() nor
532  * lu_device_type_operations::ldto_device_free() fully implement the
533  * functionality of ->o_precleanup() and ->o_cleanup() they override. Hence,
534  * obd_precleanup() and obd_cleanup() call both lu_device and obd operations.
535  */
536
537 #define DECLARE_LU_VARS(ldt, d)                 \
538         struct lu_device_type *ldt;       \
539         struct lu_device *d
540
541 static inline int obd_setup(struct obd_device *obd, struct lustre_cfg *cfg)
542 {
543         int rc;
544         DECLARE_LU_VARS(ldt, d);
545         ENTRY;
546
547         ldt = obd->obd_type->typ_lu;
548         if (ldt != NULL) {
549                 struct lu_context  session_ctx;
550                 struct lu_env env;
551                 lu_context_init(&session_ctx, LCT_SESSION | LCT_SERVER_SESSION);
552                 session_ctx.lc_thread = NULL;
553                 lu_context_enter(&session_ctx);
554
555                 rc = lu_env_init(&env, ldt->ldt_ctx_tags);
556                 if (rc == 0) {
557                         env.le_ses = &session_ctx;
558                         d = ldt->ldt_ops->ldto_device_alloc(&env, ldt, cfg);
559                         lu_env_fini(&env);
560                         if (!IS_ERR(d)) {
561                                 obd->obd_lu_dev = d;
562                                 d->ld_obd = obd;
563                                 rc = 0;
564                         } else
565                                 rc = PTR_ERR(d);
566                 }
567                 lu_context_exit(&session_ctx);
568                 lu_context_fini(&session_ctx);
569
570         } else {
571                 OBD_CHECK_DT_OP(obd, setup, -EOPNOTSUPP);
572                 OBD_COUNTER_INCREMENT(obd, setup);
573                 rc = OBP(obd, setup)(obd, cfg);
574         }
575         RETURN(rc);
576 }
577
578 static inline int obd_precleanup(struct obd_device *obd,
579                                  enum obd_cleanup_stage cleanup_stage)
580 {
581         int rc;
582         DECLARE_LU_VARS(ldt, d);
583         ENTRY;
584
585         OBD_CHECK_DEV(obd);
586         ldt = obd->obd_type->typ_lu;
587         d = obd->obd_lu_dev;
588         if (ldt != NULL && d != NULL) {
589                 if (cleanup_stage == OBD_CLEANUP_EXPORTS) {
590                         struct lu_env env;
591
592                         rc = lu_env_init(&env, ldt->ldt_ctx_tags);
593                         if (rc == 0) {
594                                 ldt->ldt_ops->ldto_device_fini(&env, d);
595                                 lu_env_fini(&env);
596                         }
597                 }
598         }
599         OBD_CHECK_DT_OP(obd, precleanup, 0);
600         OBD_COUNTER_INCREMENT(obd, precleanup);
601
602         rc = OBP(obd, precleanup)(obd, cleanup_stage);
603         RETURN(rc);
604 }
605
606 static inline int obd_cleanup(struct obd_device *obd)
607 {
608         int rc;
609         DECLARE_LU_VARS(ldt, d);
610         ENTRY;
611
612         OBD_CHECK_DEV(obd);
613
614         ldt = obd->obd_type->typ_lu;
615         d = obd->obd_lu_dev;
616         if (ldt != NULL && d != NULL) {
617                 struct lu_env env;
618
619                 rc = lu_env_init(&env, ldt->ldt_ctx_tags);
620                 if (rc == 0) {
621                         ldt->ldt_ops->ldto_device_free(&env, d);
622                         lu_env_fini(&env);
623                         obd->obd_lu_dev = NULL;
624                 }
625         }
626         OBD_CHECK_DT_OP(obd, cleanup, 0);
627         OBD_COUNTER_INCREMENT(obd, cleanup);
628
629         rc = OBP(obd, cleanup)(obd);
630         RETURN(rc);
631 }
632
633 static inline void obd_cleanup_client_import(struct obd_device *obd)
634 {
635         ENTRY;
636
637         /* If we set up but never connected, the
638            client import will not have been cleaned. */
639         down_write(&obd->u.cli.cl_sem);
640         if (obd->u.cli.cl_import) {
641                 struct obd_import *imp;
642                 imp = obd->u.cli.cl_import;
643                 CDEBUG(D_CONFIG, "%s: client import never connected\n",
644                        obd->obd_name);
645                 ptlrpc_invalidate_import(imp);
646                 if (imp->imp_rq_pool) {
647                         ptlrpc_free_rq_pool(imp->imp_rq_pool);
648                         imp->imp_rq_pool = NULL;
649                 }
650                 client_destroy_import(imp);
651                 obd->u.cli.cl_import = NULL;
652         }
653         up_write(&obd->u.cli.cl_sem);
654
655         EXIT;
656 }
657
658 static inline int
659 obd_process_config(struct obd_device *obd, int datalen, void *data)
660 {
661         int rc;
662         DECLARE_LU_VARS(ldt, d);
663         ENTRY;
664
665         OBD_CHECK_DEV(obd);
666
667         obd->obd_process_conf = 1;
668         ldt = obd->obd_type->typ_lu;
669         d = obd->obd_lu_dev;
670         if (ldt != NULL && d != NULL) {
671                 struct lu_env env;
672
673                 rc = lu_env_init(&env, ldt->ldt_ctx_tags);
674                 if (rc == 0) {
675                         rc = d->ld_ops->ldo_process_config(&env, d, data);
676                         lu_env_fini(&env);
677                 }
678         } else {
679                 OBD_CHECK_DT_OP(obd, process_config, -EOPNOTSUPP);
680                 rc = OBP(obd, process_config)(obd, datalen, data);
681         }
682         OBD_COUNTER_INCREMENT(obd, process_config);
683         obd->obd_process_conf = 0;
684
685         RETURN(rc);
686 }
687
688 /* Pack an in-memory MD struct for storage on disk.
689  * Returns +ve size of packed MD (0 for free), or -ve error.
690  *
691  * If @disk_tgt == NULL, MD size is returned (max size if @mem_src == NULL).
692  * If @*disk_tgt != NULL and @mem_src == NULL, @*disk_tgt will be freed.
693  * If @*disk_tgt == NULL, it will be allocated
694  */
695 static inline int obd_packmd(struct obd_export *exp,
696                              struct lov_mds_md **disk_tgt,
697                              struct lov_stripe_md *mem_src)
698 {
699         int rc;
700         ENTRY;
701
702         EXP_CHECK_DT_OP(exp, packmd);
703         EXP_COUNTER_INCREMENT(exp, packmd);
704
705         rc = OBP(exp->exp_obd, packmd)(exp, disk_tgt, mem_src);
706         RETURN(rc);
707 }
708
709 static inline int obd_size_diskmd(struct obd_export *exp,
710                                   struct lov_stripe_md *mem_src)
711 {
712         return obd_packmd(exp, NULL, mem_src);
713 }
714
715 static inline int obd_free_diskmd(struct obd_export *exp,
716                                   struct lov_mds_md **disk_tgt)
717 {
718         LASSERT(disk_tgt);
719         LASSERT(*disk_tgt);
720         /*
721          * LU-2590, for caller's convenience, *disk_tgt could be host
722          * endianness, it needs swab to LE if necessary, while just
723          * lov_mds_md header needs it for figuring out how much memory
724          * needs to be freed.
725          */
726         if ((cpu_to_le32(LOV_MAGIC) != LOV_MAGIC) &&
727             (((*disk_tgt)->lmm_magic == LOV_MAGIC_V1) ||
728              ((*disk_tgt)->lmm_magic == LOV_MAGIC_V3)))
729                 lustre_swab_lov_mds_md(*disk_tgt);
730         return obd_packmd(exp, disk_tgt, NULL);
731 }
732
733 /* Unpack an MD struct from disk to in-memory format.
734  * Returns +ve size of unpacked MD (0 for free), or -ve error.
735  *
736  * If @mem_tgt == NULL, MD size is returned (max size if @disk_src == NULL).
737  * If @*mem_tgt != NULL and @disk_src == NULL, @*mem_tgt will be freed.
738  * If @*mem_tgt == NULL, it will be allocated
739  */
740 static inline int obd_unpackmd(struct obd_export *exp,
741                                struct lov_stripe_md **mem_tgt,
742                                struct lov_mds_md *disk_src,
743                                int disk_len)
744 {
745         int rc;
746         ENTRY;
747
748         EXP_CHECK_DT_OP(exp, unpackmd);
749         EXP_COUNTER_INCREMENT(exp, unpackmd);
750
751         rc = OBP(exp->exp_obd, unpackmd)(exp, mem_tgt, disk_src, disk_len);
752         RETURN(rc);
753 }
754
755 static inline int obd_free_memmd(struct obd_export *exp,
756                                  struct lov_stripe_md **mem_tgt)
757 {
758         int rc;
759
760         LASSERT(mem_tgt);
761         LASSERT(*mem_tgt);
762         rc = obd_unpackmd(exp, mem_tgt, NULL, 0);
763         *mem_tgt = NULL;
764         return rc;
765 }
766
767 static inline int obd_create(const struct lu_env *env, struct obd_export *exp,
768                              struct obdo *obdo, struct obd_trans_info *oti)
769 {
770         int rc;
771         ENTRY;
772
773         EXP_CHECK_DT_OP(exp, create);
774         EXP_COUNTER_INCREMENT(exp, create);
775
776         rc = OBP(exp->exp_obd, create)(env, exp, obdo, oti);
777         RETURN(rc);
778 }
779
780 static inline int obd_destroy(const struct lu_env *env, struct obd_export *exp,
781                               struct obdo *obdo, struct obd_trans_info *oti)
782 {
783         int rc;
784         ENTRY;
785
786         EXP_CHECK_DT_OP(exp, destroy);
787         EXP_COUNTER_INCREMENT(exp, destroy);
788
789         rc = OBP(exp->exp_obd, destroy)(env, exp, obdo, oti);
790         RETURN(rc);
791 }
792
793 static inline int obd_getattr(const struct lu_env *env, struct obd_export *exp,
794                               struct obd_info *oinfo)
795 {
796         int rc;
797         ENTRY;
798
799         EXP_CHECK_DT_OP(exp, getattr);
800         EXP_COUNTER_INCREMENT(exp, getattr);
801
802         rc = OBP(exp->exp_obd, getattr)(env, exp, oinfo);
803         RETURN(rc);
804 }
805
806 static inline int obd_setattr(const struct lu_env *env, struct obd_export *exp,
807                               struct obd_info *oinfo,
808                               struct obd_trans_info *oti)
809 {
810         int rc;
811         ENTRY;
812
813         EXP_CHECK_DT_OP(exp, setattr);
814         EXP_COUNTER_INCREMENT(exp, setattr);
815
816         rc = OBP(exp->exp_obd, setattr)(env, exp, oinfo, oti);
817         RETURN(rc);
818 }
819
820 static inline int obd_add_conn(struct obd_import *imp, struct obd_uuid *uuid,
821                                int priority)
822 {
823         struct obd_device *obd = imp->imp_obd;
824         int rc;
825         ENTRY;
826
827         OBD_CHECK_DEV_ACTIVE(obd);
828         OBD_CHECK_DT_OP(obd, add_conn, -EOPNOTSUPP);
829         OBD_COUNTER_INCREMENT(obd, add_conn);
830
831         rc = OBP(obd, add_conn)(imp, uuid, priority);
832         RETURN(rc);
833 }
834
835 static inline int obd_del_conn(struct obd_import *imp, struct obd_uuid *uuid)
836 {
837         struct obd_device *obd = imp->imp_obd;
838         int rc;
839         ENTRY;
840
841         OBD_CHECK_DEV_ACTIVE(obd);
842         OBD_CHECK_DT_OP(obd, del_conn, -EOPNOTSUPP);
843         OBD_COUNTER_INCREMENT(obd, del_conn);
844
845         rc = OBP(obd, del_conn)(imp, uuid);
846         RETURN(rc);
847 }
848
849 static inline struct obd_uuid *obd_get_uuid(struct obd_export *exp)
850 {
851         struct obd_uuid *uuid;
852         ENTRY;
853
854         OBD_CHECK_DT_OP(exp->exp_obd, get_uuid, NULL);
855         EXP_COUNTER_INCREMENT(exp, get_uuid);
856
857         uuid = OBP(exp->exp_obd, get_uuid)(exp);
858         RETURN(uuid);
859 }
860
861 /** Create a new /a exp on device /a obd for the uuid /a cluuid
862  * @param exp New export handle
863  * @param d Connect data, supported flags are set, flags also understood
864  *    by obd are returned.
865  */
866 static inline int obd_connect(const struct lu_env *env,
867                               struct obd_export **exp,struct obd_device *obd,
868                               struct obd_uuid *cluuid,
869                               struct obd_connect_data *data,
870                               void *localdata)
871 {
872         int rc;
873         __u64 ocf = data ? data->ocd_connect_flags : 0; /* for post-condition
874                                                    * check */
875         ENTRY;
876
877         OBD_CHECK_DEV_ACTIVE(obd);
878         OBD_CHECK_DT_OP(obd, connect, -EOPNOTSUPP);
879         OBD_COUNTER_INCREMENT(obd, connect);
880
881         rc = OBP(obd, connect)(env, exp, obd, cluuid, data, localdata);
882         /* check that only subset is granted */
883         LASSERT(ergo(data != NULL, (data->ocd_connect_flags & ocf) ==
884                                     data->ocd_connect_flags));
885         RETURN(rc);
886 }
887
888 static inline int obd_reconnect(const struct lu_env *env,
889                                 struct obd_export *exp,
890                                 struct obd_device *obd,
891                                 struct obd_uuid *cluuid,
892                                 struct obd_connect_data *d,
893                                 void *localdata)
894 {
895         int rc;
896         __u64 ocf = d ? d->ocd_connect_flags : 0; /* for post-condition
897                                                    * check */
898
899         ENTRY;
900
901         OBD_CHECK_DEV_ACTIVE(obd);
902         OBD_CHECK_DT_OP(obd, reconnect, 0);
903         OBD_COUNTER_INCREMENT(obd, reconnect);
904
905         rc = OBP(obd, reconnect)(env, exp, obd, cluuid, d, localdata);
906         /* check that only subset is granted */
907         LASSERT(ergo(d != NULL,
908                      (d->ocd_connect_flags & ocf) == d->ocd_connect_flags));
909         RETURN(rc);
910 }
911
912 static inline int obd_disconnect(struct obd_export *exp)
913 {
914         int rc;
915         ENTRY;
916
917         EXP_CHECK_DT_OP(exp, disconnect);
918         EXP_COUNTER_INCREMENT(exp, disconnect);
919
920         rc = OBP(exp->exp_obd, disconnect)(exp);
921         RETURN(rc);
922 }
923
924 static inline int obd_fid_init(struct obd_device *obd, struct obd_export *exp,
925                                enum lu_cli_type type)
926 {
927         int rc;
928         ENTRY;
929
930         OBD_CHECK_DT_OP(obd, fid_init, 0);
931         OBD_COUNTER_INCREMENT(obd, fid_init);
932
933         rc = OBP(obd, fid_init)(obd, exp, type);
934         RETURN(rc);
935 }
936
937 static inline int obd_fid_fini(struct obd_device *obd)
938 {
939         int rc;
940         ENTRY;
941
942         OBD_CHECK_DT_OP(obd, fid_fini, 0);
943         OBD_COUNTER_INCREMENT(obd, fid_fini);
944
945         rc = OBP(obd, fid_fini)(obd);
946         RETURN(rc);
947 }
948
949 static inline int obd_fid_alloc(const struct lu_env *env,
950                                 struct obd_export *exp,
951                                 struct lu_fid *fid,
952                                 struct md_op_data *op_data)
953 {
954         int rc;
955         ENTRY;
956
957         EXP_CHECK_DT_OP(exp, fid_alloc);
958         EXP_COUNTER_INCREMENT(exp, fid_alloc);
959
960         rc = OBP(exp->exp_obd, fid_alloc)(env, exp, fid, op_data);
961         RETURN(rc);
962 }
963
964 static inline int obd_ping(const struct lu_env *env, struct obd_export *exp)
965 {
966         int rc;
967         ENTRY;
968
969         OBD_CHECK_DT_OP(exp->exp_obd, ping, 0);
970         EXP_COUNTER_INCREMENT(exp, ping);
971
972         rc = OBP(exp->exp_obd, ping)(env, exp);
973         RETURN(rc);
974 }
975
976 static inline int obd_pool_new(struct obd_device *obd, char *poolname)
977 {
978         int rc;
979         ENTRY;
980
981         OBD_CHECK_DT_OP(obd, pool_new, -EOPNOTSUPP);
982         OBD_COUNTER_INCREMENT(obd, pool_new);
983
984         rc = OBP(obd, pool_new)(obd, poolname);
985         RETURN(rc);
986 }
987
988 static inline int obd_pool_del(struct obd_device *obd, char *poolname)
989 {
990         int rc;
991         ENTRY;
992
993         OBD_CHECK_DT_OP(obd, pool_del, -EOPNOTSUPP);
994         OBD_COUNTER_INCREMENT(obd, pool_del);
995
996         rc = OBP(obd, pool_del)(obd, poolname);
997         RETURN(rc);
998 }
999
1000 static inline int obd_pool_add(struct obd_device *obd, char *poolname, char *ostname)
1001 {
1002         int rc;
1003         ENTRY;
1004
1005         OBD_CHECK_DT_OP(obd, pool_add, -EOPNOTSUPP);
1006         OBD_COUNTER_INCREMENT(obd, pool_add);
1007
1008         rc = OBP(obd, pool_add)(obd, poolname, ostname);
1009         RETURN(rc);
1010 }
1011
1012 static inline int obd_pool_rem(struct obd_device *obd, char *poolname, char *ostname)
1013 {
1014         int rc;
1015         ENTRY;
1016
1017         OBD_CHECK_DT_OP(obd, pool_rem, -EOPNOTSUPP);
1018         OBD_COUNTER_INCREMENT(obd, pool_rem);
1019
1020         rc = OBP(obd, pool_rem)(obd, poolname, ostname);
1021         RETURN(rc);
1022 }
1023
1024 static inline void obd_getref(struct obd_device *obd)
1025 {
1026         ENTRY;
1027         if (OBT(obd) && OBP(obd, getref)) {
1028                 OBD_COUNTER_INCREMENT(obd, getref);
1029                 OBP(obd, getref)(obd);
1030         }
1031         EXIT;
1032 }
1033
1034 static inline void obd_putref(struct obd_device *obd)
1035 {
1036         ENTRY;
1037         if (OBT(obd) && OBP(obd, putref)) {
1038                 OBD_COUNTER_INCREMENT(obd, putref);
1039                 OBP(obd, putref)(obd);
1040         }
1041         EXIT;
1042 }
1043
1044 static inline int obd_init_export(struct obd_export *exp)
1045 {
1046         int rc = 0;
1047
1048         ENTRY;
1049         if ((exp)->exp_obd != NULL && OBT((exp)->exp_obd) &&
1050             OBP((exp)->exp_obd, init_export))
1051                 rc = OBP(exp->exp_obd, init_export)(exp);
1052         RETURN(rc);
1053 }
1054
1055 static inline int obd_destroy_export(struct obd_export *exp)
1056 {
1057         ENTRY;
1058         if ((exp)->exp_obd != NULL && OBT((exp)->exp_obd) &&
1059             OBP((exp)->exp_obd, destroy_export))
1060                 OBP(exp->exp_obd, destroy_export)(exp);
1061         RETURN(0);
1062 }
1063
1064 /* @max_age is the oldest time in jiffies that we accept using a cached data.
1065  * If the cache is older than @max_age we will get a new value from the
1066  * target.  Use a value of "cfs_time_current() + HZ" to guarantee freshness. */
1067 static inline int obd_statfs_async(struct obd_export *exp,
1068                                    struct obd_info *oinfo,
1069                                    __u64 max_age,
1070                                    struct ptlrpc_request_set *rqset)
1071 {
1072         int rc = 0;
1073         struct obd_device *obd;
1074         ENTRY;
1075
1076         if (exp == NULL || exp->exp_obd == NULL)
1077                 RETURN(-EINVAL);
1078
1079         obd = exp->exp_obd;
1080         OBD_CHECK_DT_OP(obd, statfs, -EOPNOTSUPP);
1081         OBD_COUNTER_INCREMENT(obd, statfs);
1082
1083         CDEBUG(D_SUPER, "%s: osfs %p age "LPU64", max_age "LPU64"\n",
1084                obd->obd_name, &obd->obd_osfs, obd->obd_osfs_age, max_age);
1085         if (cfs_time_before_64(obd->obd_osfs_age, max_age)) {
1086                 rc = OBP(obd, statfs_async)(exp, oinfo, max_age, rqset);
1087         } else {
1088                 CDEBUG(D_SUPER,"%s: use %p cache blocks "LPU64"/"LPU64
1089                        " objects "LPU64"/"LPU64"\n",
1090                        obd->obd_name, &obd->obd_osfs,
1091                        obd->obd_osfs.os_bavail, obd->obd_osfs.os_blocks,
1092                        obd->obd_osfs.os_ffree, obd->obd_osfs.os_files);
1093                 spin_lock(&obd->obd_osfs_lock);
1094                 memcpy(oinfo->oi_osfs, &obd->obd_osfs, sizeof(*oinfo->oi_osfs));
1095                 spin_unlock(&obd->obd_osfs_lock);
1096                 oinfo->oi_flags |= OBD_STATFS_FROM_CACHE;
1097                 if (oinfo->oi_cb_up)
1098                         oinfo->oi_cb_up(oinfo, 0);
1099         }
1100         RETURN(rc);
1101 }
1102
1103 static inline int obd_statfs_rqset(struct obd_export *exp,
1104                                    struct obd_statfs *osfs, __u64 max_age,
1105                                    __u32 flags)
1106 {
1107         struct ptlrpc_request_set *set = NULL;
1108         struct obd_info oinfo = { { { 0 } } };
1109         int rc = 0;
1110         ENTRY;
1111
1112         set =  ptlrpc_prep_set();
1113         if (set == NULL)
1114                 RETURN(-ENOMEM);
1115
1116         oinfo.oi_osfs = osfs;
1117         oinfo.oi_flags = flags;
1118         rc = obd_statfs_async(exp, &oinfo, max_age, set);
1119         if (rc == 0)
1120                 rc = ptlrpc_set_wait(set);
1121         ptlrpc_set_destroy(set);
1122         RETURN(rc);
1123 }
1124
1125 /* @max_age is the oldest time in jiffies that we accept using a cached data.
1126  * If the cache is older than @max_age we will get a new value from the
1127  * target.  Use a value of "cfs_time_current() + HZ" to guarantee freshness. */
1128 static inline int obd_statfs(const struct lu_env *env, struct obd_export *exp,
1129                              struct obd_statfs *osfs, __u64 max_age,
1130                              __u32 flags)
1131 {
1132         int rc = 0;
1133         struct obd_device *obd = exp->exp_obd;
1134         ENTRY;
1135
1136         if (obd == NULL)
1137                 RETURN(-EINVAL);
1138
1139         OBD_CHECK_DT_OP(obd, statfs, -EOPNOTSUPP);
1140         OBD_COUNTER_INCREMENT(obd, statfs);
1141
1142         CDEBUG(D_SUPER, "osfs "LPU64", max_age "LPU64"\n",
1143                obd->obd_osfs_age, max_age);
1144         if (cfs_time_before_64(obd->obd_osfs_age, max_age)) {
1145                 rc = OBP(obd, statfs)(env, exp, osfs, max_age, flags);
1146                 if (rc == 0) {
1147                         spin_lock(&obd->obd_osfs_lock);
1148                         memcpy(&obd->obd_osfs, osfs, sizeof(obd->obd_osfs));
1149                         obd->obd_osfs_age = cfs_time_current_64();
1150                         spin_unlock(&obd->obd_osfs_lock);
1151                 }
1152         } else {
1153                 CDEBUG(D_SUPER, "%s: use %p cache blocks "LPU64"/"LPU64
1154                        " objects "LPU64"/"LPU64"\n",
1155                        obd->obd_name, &obd->obd_osfs,
1156                        obd->obd_osfs.os_bavail, obd->obd_osfs.os_blocks,
1157                        obd->obd_osfs.os_ffree, obd->obd_osfs.os_files);
1158                 spin_lock(&obd->obd_osfs_lock);
1159                 memcpy(osfs, &obd->obd_osfs, sizeof(*osfs));
1160                 spin_unlock(&obd->obd_osfs_lock);
1161         }
1162         RETURN(rc);
1163 }
1164
1165 static inline int obd_preprw(const struct lu_env *env, int cmd,
1166                              struct obd_export *exp, struct obdo *oa,
1167                              int objcount, struct obd_ioobj *obj,
1168                              struct niobuf_remote *remote, int *pages,
1169                              struct niobuf_local *local,
1170                              struct obd_trans_info *oti)
1171 {
1172         int rc;
1173         ENTRY;
1174
1175         EXP_CHECK_DT_OP(exp, preprw);
1176         EXP_COUNTER_INCREMENT(exp, preprw);
1177
1178         rc = OBP(exp->exp_obd, preprw)(env, cmd, exp, oa, objcount, obj, remote,
1179                                        pages, local, oti);
1180         RETURN(rc);
1181 }
1182
1183 static inline int obd_commitrw(const struct lu_env *env, int cmd,
1184                                struct obd_export *exp, struct obdo *oa,
1185                                int objcount, struct obd_ioobj *obj,
1186                                struct niobuf_remote *rnb, int pages,
1187                                struct niobuf_local *local,
1188                                struct obd_trans_info *oti, int rc)
1189 {
1190         ENTRY;
1191
1192         EXP_CHECK_DT_OP(exp, commitrw);
1193         EXP_COUNTER_INCREMENT(exp, commitrw);
1194
1195         rc = OBP(exp->exp_obd, commitrw)(env, cmd, exp, oa, objcount, obj,
1196                                          rnb, pages, local, oti, rc);
1197         RETURN(rc);
1198 }
1199
1200 static inline int obd_iocontrol(unsigned int cmd, struct obd_export *exp,
1201                                 int len, void *karg, void __user *uarg)
1202 {
1203         int rc;
1204         ENTRY;
1205
1206         EXP_CHECK_DT_OP(exp, iocontrol);
1207         EXP_COUNTER_INCREMENT(exp, iocontrol);
1208
1209         rc = OBP(exp->exp_obd, iocontrol)(cmd, exp, len, karg, uarg);
1210         RETURN(rc);
1211 }
1212
1213 static inline void obd_import_event(struct obd_device *obd,
1214                                     struct obd_import *imp,
1215                                     enum obd_import_event event)
1216 {
1217         ENTRY;
1218         if (!obd) {
1219                 CERROR("NULL device\n");
1220                 EXIT;
1221                 return;
1222         }
1223         if (obd->obd_set_up && OBP(obd, import_event)) {
1224                 OBD_COUNTER_INCREMENT(obd, import_event);
1225                 OBP(obd, import_event)(obd, imp, event);
1226         }
1227         EXIT;
1228 }
1229
1230 static inline int obd_notify(struct obd_device *obd,
1231                              struct obd_device *watched,
1232                              enum obd_notify_event ev,
1233                              void *data)
1234 {
1235         int rc;
1236         ENTRY;
1237         OBD_CHECK_DEV(obd);
1238
1239         if (!obd->obd_set_up) {
1240                 CDEBUG(D_HA, "obd %s not set up\n", obd->obd_name);
1241                 RETURN(-EINVAL);
1242         }
1243
1244         if (!OBP(obd, notify)) {
1245                 CDEBUG(D_HA, "obd %s has no notify handler\n", obd->obd_name);
1246                 RETURN(-ENOSYS);
1247         }
1248
1249         OBD_COUNTER_INCREMENT(obd, notify);
1250         rc = OBP(obd, notify)(obd, watched, ev, data);
1251         RETURN(rc);
1252 }
1253
1254 static inline int obd_notify_observer(struct obd_device *observer,
1255                                       struct obd_device *observed,
1256                                       enum obd_notify_event ev,
1257                                       void *data)
1258 {
1259         int rc1;
1260         int rc2;
1261
1262         struct obd_notify_upcall *onu;
1263
1264         if (observer->obd_observer)
1265                 rc1 = obd_notify(observer->obd_observer, observed, ev, data);
1266         else
1267                 rc1 = 0;
1268         /*
1269          * Also, call non-obd listener, if any
1270          */
1271         onu = &observer->obd_upcall;
1272         if (onu->onu_upcall != NULL)
1273                 rc2 = onu->onu_upcall(observer, observed, ev,
1274                                       onu->onu_owner, NULL);
1275         else
1276                 rc2 = 0;
1277
1278         return rc1 ? rc1 : rc2;
1279 }
1280
1281 static inline int obd_quotacheck(struct obd_export *exp,
1282                                  struct obd_quotactl *oqctl)
1283 {
1284         int rc;
1285         ENTRY;
1286
1287         EXP_CHECK_DT_OP(exp, quotacheck);
1288         EXP_COUNTER_INCREMENT(exp, quotacheck);
1289
1290         rc = OBP(exp->exp_obd, quotacheck)(exp->exp_obd, exp, oqctl);
1291         RETURN(rc);
1292 }
1293
1294 static inline int obd_quotactl(struct obd_export *exp,
1295                                struct obd_quotactl *oqctl)
1296 {
1297         int rc;
1298         ENTRY;
1299
1300         EXP_CHECK_DT_OP(exp, quotactl);
1301         EXP_COUNTER_INCREMENT(exp, quotactl);
1302
1303         rc = OBP(exp->exp_obd, quotactl)(exp->exp_obd, exp, oqctl);
1304         RETURN(rc);
1305 }
1306
1307 static inline int obd_health_check(const struct lu_env *env,
1308                                    struct obd_device *obd)
1309 {
1310         /* returns: 0 on healthy
1311          *         >0 on unhealthy + reason code/flag
1312          *            however the only suppored reason == 1 right now
1313          *            We'll need to define some better reasons
1314          *            or flags in the future.
1315          *         <0 on error
1316          */
1317         int rc;
1318         ENTRY;
1319
1320         /* don't use EXP_CHECK_DT_OP, because NULL method is normal here */
1321         if (obd == NULL || !OBT(obd)) {
1322                 CERROR("cleaned up obd\n");
1323                 RETURN(-EOPNOTSUPP);
1324         }
1325         if (!obd->obd_set_up || obd->obd_stopping)
1326                 RETURN(0);
1327         if (!OBP(obd, health_check))
1328                 RETURN(0);
1329
1330         rc = OBP(obd, health_check)(env, obd);
1331         RETURN(rc);
1332 }
1333
1334 static inline int obd_register_observer(struct obd_device *obd,
1335                                         struct obd_device *observer)
1336 {
1337         ENTRY;
1338         OBD_CHECK_DEV(obd);
1339         down_write(&obd->obd_observer_link_sem);
1340         if (obd->obd_observer && observer) {
1341                 up_write(&obd->obd_observer_link_sem);
1342                 RETURN(-EALREADY);
1343         }
1344         obd->obd_observer = observer;
1345         up_write(&obd->obd_observer_link_sem);
1346         RETURN(0);
1347 }
1348
1349 /* metadata helpers */
1350 static inline int md_getstatus(struct obd_export *exp,
1351                                struct lu_fid *fid, struct obd_capa **pc)
1352 {
1353         int rc;
1354         ENTRY;
1355
1356         EXP_CHECK_MD_OP(exp, getstatus);
1357         EXP_MD_COUNTER_INCREMENT(exp, getstatus);
1358         rc = MDP(exp->exp_obd, getstatus)(exp, fid, pc);
1359         RETURN(rc);
1360 }
1361
1362 static inline int md_getattr(struct obd_export *exp, struct md_op_data *op_data,
1363                              struct ptlrpc_request **request)
1364 {
1365         int rc;
1366         ENTRY;
1367         EXP_CHECK_MD_OP(exp, getattr);
1368         EXP_MD_COUNTER_INCREMENT(exp, getattr);
1369         rc = MDP(exp->exp_obd, getattr)(exp, op_data, request);
1370         RETURN(rc);
1371 }
1372
1373 static inline int md_null_inode(struct obd_export *exp,
1374                                    const struct lu_fid *fid)
1375 {
1376         int rc;
1377         ENTRY;
1378         EXP_CHECK_MD_OP(exp, null_inode);
1379         EXP_MD_COUNTER_INCREMENT(exp, null_inode);
1380         rc = MDP(exp->exp_obd, null_inode)(exp, fid);
1381         RETURN(rc);
1382 }
1383
1384 static inline int md_find_cbdata(struct obd_export *exp,
1385                                  const struct lu_fid *fid,
1386                                  ldlm_iterator_t it, void *data)
1387 {
1388         int rc;
1389         ENTRY;
1390         EXP_CHECK_MD_OP(exp, find_cbdata);
1391         EXP_MD_COUNTER_INCREMENT(exp, find_cbdata);
1392         rc = MDP(exp->exp_obd, find_cbdata)(exp, fid, it, data);
1393         RETURN(rc);
1394 }
1395
1396 static inline int md_close(struct obd_export *exp, struct md_op_data *op_data,
1397                            struct md_open_data *mod,
1398                            struct ptlrpc_request **request)
1399 {
1400         int rc;
1401         ENTRY;
1402         EXP_CHECK_MD_OP(exp, close);
1403         EXP_MD_COUNTER_INCREMENT(exp, close);
1404         rc = MDP(exp->exp_obd, close)(exp, op_data, mod, request);
1405         RETURN(rc);
1406 }
1407
1408 static inline int md_create(struct obd_export *exp, struct md_op_data *op_data,
1409                             const void *data, size_t datalen, umode_t mode,
1410                             uid_t uid, gid_t gid, cfs_cap_t cap_effective,
1411                             __u64 rdev, struct ptlrpc_request **request)
1412 {
1413         int rc;
1414         ENTRY;
1415         EXP_CHECK_MD_OP(exp, create);
1416         EXP_MD_COUNTER_INCREMENT(exp, create);
1417         rc = MDP(exp->exp_obd, create)(exp, op_data, data, datalen, mode,
1418                                        uid, gid, cap_effective, rdev, request);
1419         RETURN(rc);
1420 }
1421
1422 static inline int md_enqueue(struct obd_export *exp,
1423                              struct ldlm_enqueue_info *einfo,
1424                              const union ldlm_policy_data *policy,
1425                              struct lookup_intent *it,
1426                              struct md_op_data *op_data,
1427                              struct lustre_handle *lockh,
1428                              __u64 extra_lock_flags)
1429 {
1430         int rc;
1431         ENTRY;
1432         EXP_CHECK_MD_OP(exp, enqueue);
1433         EXP_MD_COUNTER_INCREMENT(exp, enqueue);
1434         rc = MDP(exp->exp_obd, enqueue)(exp, einfo, policy, it, op_data, lockh,
1435                                         extra_lock_flags);
1436         RETURN(rc);
1437 }
1438
1439 static inline int md_getattr_name(struct obd_export *exp,
1440                                   struct md_op_data *op_data,
1441                                   struct ptlrpc_request **request)
1442 {
1443         int rc;
1444         ENTRY;
1445         EXP_CHECK_MD_OP(exp, getattr_name);
1446         EXP_MD_COUNTER_INCREMENT(exp, getattr_name);
1447         rc = MDP(exp->exp_obd, getattr_name)(exp, op_data, request);
1448         RETURN(rc);
1449 }
1450
1451 static inline int md_intent_lock(struct obd_export *exp,
1452                                  struct md_op_data *op_data,
1453                                  struct lookup_intent *it,
1454                                  struct ptlrpc_request **reqp,
1455                                  ldlm_blocking_callback cb_blocking,
1456                                  __u64 extra_lock_flags)
1457 {
1458         int rc;
1459         ENTRY;
1460         EXP_CHECK_MD_OP(exp, intent_lock);
1461         EXP_MD_COUNTER_INCREMENT(exp, intent_lock);
1462         rc = MDP(exp->exp_obd, intent_lock)(exp, op_data, it, reqp, cb_blocking,
1463                                             extra_lock_flags);
1464         RETURN(rc);
1465 }
1466
1467 static inline int md_link(struct obd_export *exp, struct md_op_data *op_data,
1468                           struct ptlrpc_request **request)
1469 {
1470         int rc;
1471         ENTRY;
1472         EXP_CHECK_MD_OP(exp, link);
1473         EXP_MD_COUNTER_INCREMENT(exp, link);
1474         rc = MDP(exp->exp_obd, link)(exp, op_data, request);
1475         RETURN(rc);
1476 }
1477
1478 static inline int md_rename(struct obd_export *exp, struct md_op_data *op_data,
1479                             const char *old, size_t oldlen, const char *new,
1480                             size_t newlen, struct ptlrpc_request **request)
1481 {
1482         int rc;
1483         ENTRY;
1484         EXP_CHECK_MD_OP(exp, rename);
1485         EXP_MD_COUNTER_INCREMENT(exp, rename);
1486         rc = MDP(exp->exp_obd, rename)(exp, op_data, old, oldlen, new,
1487                                        newlen, request);
1488         RETURN(rc);
1489 }
1490
1491 static inline int md_setattr(struct obd_export *exp, struct md_op_data *op_data,
1492                              void *ea, size_t ealen,
1493                              struct ptlrpc_request **request)
1494 {
1495         int rc;
1496         ENTRY;
1497         EXP_CHECK_MD_OP(exp, setattr);
1498         EXP_MD_COUNTER_INCREMENT(exp, setattr);
1499         rc = MDP(exp->exp_obd, setattr)(exp, op_data, ea, ealen, request);
1500         RETURN(rc);
1501 }
1502
1503 static inline int md_fsync(struct obd_export *exp, const struct lu_fid *fid,
1504                            struct obd_capa *oc, struct ptlrpc_request **request)
1505 {
1506         int rc;
1507         ENTRY;
1508         EXP_CHECK_MD_OP(exp, fsync);
1509         EXP_MD_COUNTER_INCREMENT(exp, fsync);
1510         rc = MDP(exp->exp_obd, fsync)(exp, fid, oc, request);
1511         RETURN(rc);
1512 }
1513
1514 static inline int md_read_page(struct obd_export *exp,
1515                                struct md_op_data *op_data,
1516                                struct md_callback *cb_op,
1517                                __u64  hash_offset,
1518                                struct page **ppage)
1519 {
1520         int rc;
1521         ENTRY;
1522         EXP_CHECK_MD_OP(exp, read_page);
1523         EXP_MD_COUNTER_INCREMENT(exp, read_page);
1524         rc = MDP(exp->exp_obd, read_page)(exp, op_data, cb_op, hash_offset,
1525                                           ppage);
1526         RETURN(rc);
1527 }
1528
1529 static inline int md_unlink(struct obd_export *exp, struct md_op_data *op_data,
1530                             struct ptlrpc_request **request)
1531 {
1532         int rc;
1533         ENTRY;
1534         EXP_CHECK_MD_OP(exp, unlink);
1535         EXP_MD_COUNTER_INCREMENT(exp, unlink);
1536         rc = MDP(exp->exp_obd, unlink)(exp, op_data, request);
1537         RETURN(rc);
1538 }
1539
1540 static inline int md_get_lustre_md(struct obd_export *exp,
1541                                    struct ptlrpc_request *req,
1542                                    struct obd_export *dt_exp,
1543                                    struct obd_export *md_exp,
1544                                    struct lustre_md *md)
1545 {
1546         ENTRY;
1547         EXP_CHECK_MD_OP(exp, get_lustre_md);
1548         EXP_MD_COUNTER_INCREMENT(exp, get_lustre_md);
1549         RETURN(MDP(exp->exp_obd, get_lustre_md)(exp, req, dt_exp, md_exp, md));
1550 }
1551
1552 static inline int md_free_lustre_md(struct obd_export *exp,
1553                                     struct lustre_md *md)
1554 {
1555         ENTRY;
1556         EXP_CHECK_MD_OP(exp, free_lustre_md);
1557         EXP_MD_COUNTER_INCREMENT(exp, free_lustre_md);
1558         RETURN(MDP(exp->exp_obd, free_lustre_md)(exp, md));
1559 }
1560
1561 static inline int md_merge_attr(struct obd_export *exp,
1562                                 const struct lmv_stripe_md *lsm,
1563                                 struct cl_attr *attr,
1564                                 ldlm_blocking_callback cb)
1565 {
1566         ENTRY;
1567         EXP_CHECK_MD_OP(exp, merge_attr);
1568         EXP_MD_COUNTER_INCREMENT(exp, merge_attr);
1569         RETURN(MDP(exp->exp_obd, merge_attr)(exp, lsm, attr, cb));
1570 }
1571
1572 static inline int md_setxattr(struct obd_export *exp,
1573                               const struct lu_fid *fid, struct obd_capa *oc,
1574                               u64 valid, const char *name,
1575                               const char *input, int input_size,
1576                               int output_size, int flags, __u32 suppgid,
1577                               struct ptlrpc_request **request)
1578 {
1579         ENTRY;
1580         EXP_CHECK_MD_OP(exp, setxattr);
1581         EXP_MD_COUNTER_INCREMENT(exp, setxattr);
1582         RETURN(MDP(exp->exp_obd, setxattr)(exp, fid, oc, valid, name, input,
1583                                            input_size, output_size, flags,
1584                                            suppgid, request));
1585 }
1586
1587 static inline int md_getxattr(struct obd_export *exp,
1588                               const struct lu_fid *fid, struct obd_capa *oc,
1589                               u64 valid, const char *name,
1590                               const char *input, int input_size,
1591                               int output_size, int flags,
1592                               struct ptlrpc_request **request)
1593 {
1594         ENTRY;
1595         EXP_CHECK_MD_OP(exp, getxattr);
1596         EXP_MD_COUNTER_INCREMENT(exp, getxattr);
1597         RETURN(MDP(exp->exp_obd, getxattr)(exp, fid, oc, valid, name, input,
1598                                            input_size, output_size, flags,
1599                                            request));
1600 }
1601
1602 static inline int md_set_open_replay_data(struct obd_export *exp,
1603                                           struct obd_client_handle *och,
1604                                           struct lookup_intent *it)
1605 {
1606         ENTRY;
1607         EXP_CHECK_MD_OP(exp, set_open_replay_data);
1608         EXP_MD_COUNTER_INCREMENT(exp, set_open_replay_data);
1609         RETURN(MDP(exp->exp_obd, set_open_replay_data)(exp, och, it));
1610 }
1611
1612 static inline int md_clear_open_replay_data(struct obd_export *exp,
1613                                             struct obd_client_handle *och)
1614 {
1615         ENTRY;
1616         EXP_CHECK_MD_OP(exp, clear_open_replay_data);
1617         EXP_MD_COUNTER_INCREMENT(exp, clear_open_replay_data);
1618         RETURN(MDP(exp->exp_obd, clear_open_replay_data)(exp, och));
1619 }
1620
1621 static inline int md_set_lock_data(struct obd_export *exp,
1622                                    __u64 *lockh, void *data, __u64 *bits)
1623 {
1624         ENTRY;
1625         EXP_CHECK_MD_OP(exp, set_lock_data);
1626         EXP_MD_COUNTER_INCREMENT(exp, set_lock_data);
1627         RETURN(MDP(exp->exp_obd, set_lock_data)(exp, lockh, data, bits));
1628 }
1629
1630 static inline int md_cancel_unused(struct obd_export *exp,
1631                                    const struct lu_fid *fid,
1632                                    ldlm_policy_data_t *policy,
1633                                    ldlm_mode_t mode,
1634                                    ldlm_cancel_flags_t flags,
1635                                    void *opaque)
1636 {
1637         int rc;
1638         ENTRY;
1639
1640         EXP_CHECK_MD_OP(exp, cancel_unused);
1641         EXP_MD_COUNTER_INCREMENT(exp, cancel_unused);
1642
1643         rc = MDP(exp->exp_obd, cancel_unused)(exp, fid, policy, mode,
1644                                               flags, opaque);
1645         RETURN(rc);
1646 }
1647
1648 static inline ldlm_mode_t md_lock_match(struct obd_export *exp, __u64 flags,
1649                                         const struct lu_fid *fid,
1650                                         ldlm_type_t type,
1651                                         ldlm_policy_data_t *policy,
1652                                         ldlm_mode_t mode,
1653                                         struct lustre_handle *lockh)
1654 {
1655         ENTRY;
1656         EXP_CHECK_MD_OP(exp, lock_match);
1657         EXP_MD_COUNTER_INCREMENT(exp, lock_match);
1658         RETURN(MDP(exp->exp_obd, lock_match)(exp, flags, fid, type,
1659                                              policy, mode, lockh));
1660 }
1661
1662 static inline int md_init_ea_size(struct obd_export *exp, int easize,
1663                                   int def_asize, int cookiesize,
1664                                   int def_cookiesize)
1665 {
1666         ENTRY;
1667         EXP_CHECK_MD_OP(exp, init_ea_size);
1668         EXP_MD_COUNTER_INCREMENT(exp, init_ea_size);
1669         RETURN(MDP(exp->exp_obd, init_ea_size)(exp, easize, def_asize,
1670                                                cookiesize, def_cookiesize));
1671 }
1672
1673 static inline int md_get_remote_perm(struct obd_export *exp,
1674                                      const struct lu_fid *fid,
1675                                      struct obd_capa *oc, __u32 suppgid,
1676                                      struct ptlrpc_request **request)
1677 {
1678         ENTRY;
1679         EXP_CHECK_MD_OP(exp, get_remote_perm);
1680         EXP_MD_COUNTER_INCREMENT(exp, get_remote_perm);
1681         RETURN(MDP(exp->exp_obd, get_remote_perm)(exp, fid, oc, suppgid,
1682                                                   request));
1683 }
1684
1685 static inline int md_renew_capa(struct obd_export *exp, struct obd_capa *ocapa,
1686                                 renew_capa_cb_t cb)
1687 {
1688         int rc;
1689         ENTRY;
1690         EXP_CHECK_MD_OP(exp, renew_capa);
1691         EXP_MD_COUNTER_INCREMENT(exp, renew_capa);
1692         rc = MDP(exp->exp_obd, renew_capa)(exp, ocapa, cb);
1693         RETURN(rc);
1694 }
1695
1696 static inline int md_unpack_capa(struct obd_export *exp,
1697                                  struct ptlrpc_request *req,
1698                                  const struct req_msg_field *field,
1699                                  struct obd_capa **oc)
1700 {
1701         int rc;
1702         ENTRY;
1703         EXP_CHECK_MD_OP(exp, unpack_capa);
1704         EXP_MD_COUNTER_INCREMENT(exp, unpack_capa);
1705         rc = MDP(exp->exp_obd, unpack_capa)(exp, req, field, oc);
1706         RETURN(rc);
1707 }
1708
1709 static inline int md_intent_getattr_async(struct obd_export *exp,
1710                                           struct md_enqueue_info *minfo,
1711                                           struct ldlm_enqueue_info *einfo)
1712 {
1713         int rc;
1714         ENTRY;
1715         EXP_CHECK_MD_OP(exp, intent_getattr_async);
1716         EXP_MD_COUNTER_INCREMENT(exp, intent_getattr_async);
1717         rc = MDP(exp->exp_obd, intent_getattr_async)(exp, minfo, einfo);
1718         RETURN(rc);
1719 }
1720
1721 static inline int md_revalidate_lock(struct obd_export *exp,
1722                                      struct lookup_intent *it,
1723                                      struct lu_fid *fid, __u64 *bits)
1724 {
1725         int rc;
1726         ENTRY;
1727         EXP_CHECK_MD_OP(exp, revalidate_lock);
1728         EXP_MD_COUNTER_INCREMENT(exp, revalidate_lock);
1729         rc = MDP(exp->exp_obd, revalidate_lock)(exp, it, fid, bits);
1730         RETURN(rc);
1731 }
1732
1733 static inline int md_get_fid_from_lsm(struct obd_export *exp,
1734                                       const struct lmv_stripe_md *lsm,
1735                                       const char *name, int namelen,
1736                                       struct lu_fid *fid)
1737 {
1738         int rc;
1739         ENTRY;
1740         EXP_CHECK_MD_OP(exp, get_fid_from_lsm);
1741         EXP_MD_COUNTER_INCREMENT(exp, get_fid_from_lsm);
1742         rc = MDP(exp->exp_obd, get_fid_from_lsm)(exp, lsm, name, namelen, fid);
1743         RETURN(rc);
1744 }
1745
1746 /* OBD Metadata Support */
1747
1748 extern int obd_init_caches(void);
1749 extern void obd_cleanup_caches(void);
1750
1751 /* support routines */
1752 extern struct kmem_cache *obdo_cachep;
1753
1754 #define OBDO_ALLOC(ptr)                                                       \
1755 do {                                                                          \
1756         OBD_SLAB_ALLOC_PTR_GFP((ptr), obdo_cachep, GFP_NOFS);             \
1757 } while(0)
1758
1759 #define OBDO_FREE(ptr)                                                        \
1760 do {                                                                          \
1761         OBD_SLAB_FREE_PTR((ptr), obdo_cachep);                                \
1762 } while(0)
1763
1764
1765 typedef int (*register_lwp_cb)(void *data);
1766
1767 struct lwp_register_item {
1768         struct obd_export **lri_exp;
1769         register_lwp_cb     lri_cb_func;
1770         void               *lri_cb_data;
1771         struct list_head            lri_list;
1772         char                lri_name[MTI_NAME_MAXLEN];
1773 };
1774
1775 /* I'm as embarrassed about this as you are.
1776  *
1777  * <shaver> // XXX do not look into _superhack with remaining eye
1778  * <shaver> // XXX if this were any uglier, I'd get my own show on MTV */
1779 extern int (*ptlrpc_put_connection_superhack)(struct ptlrpc_connection *c);
1780
1781 /* obd_mount.c */
1782 #ifdef HAVE_SERVER_SUPPORT
1783 int lustre_register_lwp_item(const char *lwpname, struct obd_export **exp,
1784                              register_lwp_cb cb_func, void *cb_data);
1785 void lustre_deregister_lwp_item(struct obd_export **exp);
1786 struct obd_export *lustre_find_lwp_by_index(const char *dev, __u32 idx);
1787 int tgt_name2lwp_name(const char *tgt_name, char *lwp_name, int len, __u32 idx);
1788 #endif /* HAVE_SERVER_SUPPORT */
1789 int lustre_register_fs(void);
1790 int lustre_unregister_fs(void);
1791 int lustre_check_exclusion(struct super_block *sb, char *svname);
1792
1793 /* sysctl.c */
1794 extern void obd_sysctl_init (void);
1795 extern void obd_sysctl_clean (void);
1796
1797 /* uuid.c  */
1798 typedef __u8 class_uuid_t[16];
1799 void class_uuid_unparse(class_uuid_t in, struct obd_uuid *out);
1800
1801 /* lustre_peer.c    */
1802 int lustre_uuid_to_peer(const char *uuid, lnet_nid_t *peer_nid, int index);
1803 int class_add_uuid(const char *uuid, __u64 nid);
1804 int class_del_uuid (const char *uuid);
1805 int class_check_uuid(struct obd_uuid *uuid, __u64 nid);
1806 void class_init_uuidlist(void);
1807 void class_exit_uuidlist(void);
1808
1809 /* prng.c */
1810 #define ll_generate_random_uuid(uuid_out) cfs_get_random_bytes(uuid_out, sizeof(class_uuid_t))
1811
1812 /* statfs_pack.c */
1813 struct kstatfs;
1814 void statfs_pack(struct obd_statfs *osfs, struct kstatfs *sfs);
1815 void statfs_unpack(struct kstatfs *sfs, struct obd_statfs *osfs);
1816
1817 /* root squash info */
1818 struct rw_semaphore;
1819 struct root_squash_info {
1820         uid_t                   rsi_uid;
1821         gid_t                   rsi_gid;
1822         struct list_head        rsi_nosquash_nids;
1823         struct rw_semaphore     rsi_sem;
1824 };
1825
1826 int server_name2index(const char *svname, __u32 *idx, const char **endptr);
1827
1828 /* linux-module.c */
1829 extern struct miscdevice obd_psdev;
1830 int class_procfs_init(void);
1831 int class_procfs_clean(void);
1832
1833 #endif /* __LINUX_OBD_CLASS_H */