Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / include / obd.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  */
4
5 #ifndef __OBD_H
6 #define __OBD_H
7
8 #if defined(__linux__)
9 #include <linux/obd.h>
10 #elif defined(__APPLE__)
11 #include <darwin/obd.h>
12 #elif defined(__WINNT__)
13 #include <winnt/obd.h>
14 #else
15 #error Unsupported operating system.
16 #endif
17
18 #define IOC_OSC_TYPE         'h'
19 #define IOC_OSC_MIN_NR       20
20 #define IOC_OSC_SET_ACTIVE   _IOWR(IOC_OSC_TYPE, 21, struct obd_device *)
21 #define IOC_OSC_MAX_NR       50
22
23 #define IOC_MDC_TYPE         'i'
24 #define IOC_MDC_MIN_NR       20
25 /* Moved to lustre_user.h
26 #define IOC_MDC_LOOKUP       _IOWR(IOC_MDC_TYPE, 20, struct obd_ioctl_data *)
27 #define IOC_MDC_GETSTRIPE    _IOWR(IOC_MDC_TYPE, 21, struct lov_mds_md *) */
28 #define IOC_MDC_MAX_NR       50
29
30 #include <lustre/lustre_idl.h>
31 #include <lu_object.h>
32 #include <lustre_lib.h>
33 #include <lustre_export.h>
34 #include <lustre_quota.h>
35 #include <lustre_fld.h>
36 #include <lustre_capa.h>
37
38 #define MAX_OBD_DEVICES 8192
39
40 /* this is really local to the OSC */
41 struct loi_oap_pages {
42         struct list_head        lop_pending;
43         struct list_head        lop_urgent;
44         struct list_head        lop_pending_group;
45         int                     lop_num_pending;
46 };
47
48 struct osc_async_rc {
49         int     ar_rc;
50         int     ar_force_sync;
51         int     ar_min_xid;
52 };
53
54 struct lov_oinfo {                 /* per-stripe data structure */
55         __u64 loi_id;              /* object ID on the target OST */
56         __u64 loi_gr;              /* object group on the target OST */
57         int loi_ost_idx;           /* OST stripe index in lov_tgt_desc->tgts */
58         int loi_ost_gen;           /* generation of this loi_ost_idx */
59
60         /* used by the osc to keep track of what objects to build into rpcs */
61         struct loi_oap_pages loi_read_lop;
62         struct loi_oap_pages loi_write_lop;
63         /* _cli_ is poorly named, it should be _ready_ */
64         struct list_head loi_cli_item;
65         struct list_head loi_write_item;
66         struct list_head loi_read_item;
67
68         unsigned loi_kms_valid:1;
69         __u64 loi_kms;             /* known minimum size */
70         struct ost_lvb loi_lvb;
71         struct osc_async_rc     loi_ar;
72 };
73
74 static inline void loi_init(struct lov_oinfo *loi)
75 {
76         CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending);
77         CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_urgent);
78         CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending_group);
79         CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending);
80         CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_urgent);
81         CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending_group);
82         CFS_INIT_LIST_HEAD(&loi->loi_cli_item);
83         CFS_INIT_LIST_HEAD(&loi->loi_write_item);
84         CFS_INIT_LIST_HEAD(&loi->loi_read_item);
85 }
86
87 /*extent array item for describing the joined file extent info*/
88 struct lov_extent {
89         __u64 le_start;            /* extent start */
90         __u64 le_len;              /* extent length */
91         int   le_loi_idx;          /* extent #1 loi's index in lsm loi array */
92         int   le_stripe_count;     /* extent stripe count*/
93 };
94
95 /*Lov array info for describing joined file array EA info*/
96 struct lov_array_info {
97         struct llog_logid    lai_array_id;    /* MDS med llog object id */
98         unsigned             lai_ext_count; /* number of extent count */
99         struct lov_extent    *lai_ext_array; /* extent desc array */
100 };
101
102 struct lov_stripe_md {
103         spinlock_t       lsm_lock;
104         void            *lsm_lock_owner; /* debugging */
105
106         struct {
107                 /* Public members. */
108                 __u64 lw_object_id;        /* lov object id */
109                 __u64 lw_object_gr;        /* lov object group */
110                 __u64 lw_maxbytes;         /* maximum possible file size */
111
112                 /* LOV-private members start here -- only for use in lov/. */
113                 __u32 lw_magic;
114                 __u32 lw_stripe_size;      /* size of the stripe */
115                 __u32 lw_pattern;          /* striping pattern (RAID0, RAID1) */
116                 unsigned lw_stripe_count;  /* number of objects being striped over */
117         } lsm_wire;
118
119         struct lov_array_info *lsm_array; /*Only for joined file array info*/
120         struct lov_oinfo *lsm_oinfo[0];
121 };
122
123 #define lsm_object_id    lsm_wire.lw_object_id
124 #define lsm_object_gr    lsm_wire.lw_object_gr
125 #define lsm_maxbytes     lsm_wire.lw_maxbytes
126 #define lsm_magic        lsm_wire.lw_magic
127 #define lsm_stripe_size  lsm_wire.lw_stripe_size
128 #define lsm_pattern      lsm_wire.lw_pattern
129 #define lsm_stripe_count lsm_wire.lw_stripe_count
130
131 struct obd_info;
132
133 typedef int (*obd_enqueue_update_f)(struct obd_info *oinfo, int rc);
134
135 /* obd info for a particular level (lov, osc). */
136 struct obd_info {
137         /* Lock policy. It keeps an extent which is specific for a particular
138          * OSC. (e.g. lov_prep_enqueue_set initialises extent of the policy,
139          * and osc_enqueue passes it into ldlm_lock_match & ldlm_cli_enqueue. */
140         ldlm_policy_data_t      oi_policy;
141         /* Flags used while lock handling. The flags obtained on the enqueue
142          * request are set here, therefore they are request specific. */
143         int                     oi_flags;
144         /* Lock handle specific for every OSC lock. */
145         struct lustre_handle   *oi_lockh;
146         /* lsm data specific for every OSC. */
147         struct lov_stripe_md   *oi_md;
148         /* obdo data specific for every OSC, if needed at all. */
149         struct obdo            *oi_oa;
150         /* statfs data specific for every OSC, if needed at all. */
151         struct obd_statfs      *oi_osfs;
152         /* An update callback which is called to update some data on upper
153          * level. E.g. it is used for update lsm->lsm_oinfo at every recieved
154          * request in osc level for enqueue requests. It is also possible to
155          * update some caller data from LOV layer if needed. */
156         obd_enqueue_update_f    oi_cb_up;
157         /* oss capability, its type is obd_capa in client to avoid copy.
158          * in contrary its type is lustre_capa in OSS. */
159         void                   *oi_capa;
160 };
161
162 /* compare all relevant fields. */
163 static inline int lov_stripe_md_cmp(struct lov_stripe_md *m1,
164                                     struct lov_stripe_md *m2)
165 {
166         /*
167          * ->lsm_wire contains padding, but it should be zeroed out during
168          * allocation.
169          */
170         return memcmp(&m1->lsm_wire, &m2->lsm_wire, sizeof m1->lsm_wire);
171 }
172
173 void lov_stripe_lock(struct lov_stripe_md *md);
174 void lov_stripe_unlock(struct lov_stripe_md *md);
175
176 struct obd_type {
177         struct list_head typ_chain;
178         struct obd_ops *typ_dt_ops;
179         struct md_ops *typ_md_ops;
180         cfs_proc_dir_entry_t *typ_procroot;
181         char *typ_name;
182         int  typ_refcnt;
183         struct lu_device_type *typ_lu;
184         spinlock_t obd_type_lock;
185 };
186
187 struct brw_page {
188         obd_off  off;
189         cfs_page_t *pg;
190         int count;
191         obd_flag flag;
192 };
193
194 enum async_flags {
195         ASYNC_READY = 0x1, /* ap_make_ready will not be called before this
196                               page is added to an rpc */
197         ASYNC_URGENT = 0x2, /* page must be put into an RPC before return */
198         ASYNC_COUNT_STABLE = 0x4, /* ap_refresh_count will not be called
199                                      to give the caller a chance to update
200                                      or cancel the size of the io */
201         ASYNC_GROUP_SYNC = 0x8,  /* ap_completion will not be called, instead
202                                     the page is accounted for in the
203                                     obd_io_group given to
204                                     obd_queue_group_io */
205 };
206
207 struct obd_async_page_ops {
208         int  (*ap_make_ready)(void *data, int cmd);
209         int  (*ap_refresh_count)(void *data, int cmd);
210         void (*ap_fill_obdo)(void *data, int cmd, struct obdo *oa);
211         void (*ap_update_obdo)(void *data, int cmd, struct obdo *oa,
212                                obd_valid valid);
213         int  (*ap_completion)(void *data, int cmd, struct obdo *oa, int rc);
214         struct obd_capa *(*ap_lookup_capa)(void *data, int cmd);
215 };
216
217 /* the `oig' is passed down from a caller of obd rw methods.  the callee
218  * records enough state such that the caller can sleep on the oig and
219  * be woken when all the callees have finished their work */
220 struct obd_io_group {
221         spinlock_t      oig_lock;
222         atomic_t        oig_refcount;
223         int             oig_pending;
224         int             oig_rc;
225         struct list_head oig_occ_list;
226         cfs_waitq_t     oig_waitq;
227 };
228
229 /* the oig callback context lets the callee of obd rw methods register
230  * for callbacks from the caller. */
231 struct oig_callback_context {
232         struct list_head occ_oig_item;
233         /* called when the caller has received a signal while sleeping.
234          * callees of this method are encouraged to abort their state
235          * in the oig.  This may be called multiple times. */
236         void (*occ_interrupted)(struct oig_callback_context *occ);
237         unsigned int interrupted:1;
238 };
239
240 /* Individual type definitions */
241
242 struct ost_server_data;
243
244 /* hold common fields for "target" device */
245 struct obd_device_target {
246         struct super_block       *obt_sb;
247         atomic_t                  obt_quotachecking;
248         struct lustre_quota_ctxt  obt_qctxt;
249 };
250
251 /* llog contexts */
252 enum llog_ctxt_id {
253         LLOG_CONFIG_ORIG_CTXT  =  0,
254         LLOG_CONFIG_REPL_CTXT  =  1,
255         LLOG_MDS_OST_ORIG_CTXT =  2,
256         LLOG_MDS_OST_REPL_CTXT =  3,
257         LLOG_SIZE_ORIG_CTXT    =  4,
258         LLOG_SIZE_REPL_CTXT    =  5,
259         LLOG_MD_ORIG_CTXT      =  6,
260         LLOG_MD_REPL_CTXT      =  7,
261         LLOG_RD1_ORIG_CTXT     =  8,
262         LLOG_RD1_REPL_CTXT     =  9,
263         LLOG_TEST_ORIG_CTXT    = 10,
264         LLOG_TEST_REPL_CTXT    = 11,
265         LLOG_LOVEA_ORIG_CTXT   = 12,
266         LLOG_LOVEA_REPL_CTXT   = 13,
267         LLOG_MAX_CTXTS
268 };
269
270 #define FILTER_SUBDIR_COUNT      32            /* set to zero for no subdirs */
271
272 #define FILTER_GROUP_LLOG 1
273 #define FILTER_GROUP_ECHO 2
274 #define FILTER_GROUP_MDS0 3
275
276 struct filter_subdirs {
277        cfs_dentry_t *dentry[FILTER_SUBDIR_COUNT];
278 };
279
280
281 struct filter_ext {
282         __u64                fe_start;
283         __u64                fe_end;
284 };
285
286 struct obd_llogs {
287         struct llog_ctxt        *llog_ctxt[LLOG_MAX_CTXTS];
288 };
289
290 struct filter_group_llog {
291         struct list_head list;
292         int group;
293         struct obd_llogs *llogs;
294         struct obd_export *exp;
295 };
296
297 struct filter_obd {
298         /* NB this field MUST be first */
299         struct obd_device_target fo_obt;
300         const char          *fo_fstype;
301         struct vfsmount     *fo_vfsmnt;
302
303         int                  fo_group_count;
304         cfs_dentry_t        *fo_dentry_O;
305         cfs_dentry_t       **fo_dentry_O_groups;
306         struct filter_subdirs   *fo_dentry_O_sub;
307         struct semaphore     fo_init_lock;      /* group initialization lock */
308         int                  fo_committed_group;
309
310
311         spinlock_t           fo_objidlock;      /* protect fo_lastobjid */
312         spinlock_t           fo_translock;      /* protect fsd_last_transno */
313         struct file         *fo_rcvd_filp;
314         struct file         *fo_health_check_filp;
315         struct lr_server_data *fo_fsd;
316         unsigned long       *fo_last_rcvd_slots;
317         __u64                fo_mount_count;
318
319         unsigned long        fo_destroys_in_progress;
320         struct semaphore     fo_create_locks[FILTER_SUBDIR_COUNT];
321
322         struct list_head     fo_export_list;
323         int                  fo_subdir_count;
324
325         obd_size             fo_tot_dirty;      /* protected by obd_osfs_lock */
326         obd_size             fo_tot_granted;    /* all values in bytes */
327         obd_size             fo_tot_pending;
328
329         obd_size             fo_readcache_max_filesize;
330
331         struct obd_import   *fo_mdc_imp;
332         struct obd_uuid      fo_mdc_uuid;
333         struct lustre_handle fo_mdc_conn;
334         struct file        **fo_last_objid_files;
335         __u64               *fo_last_objids; /* last created objid for groups,
336                                               * protected by fo_objidlock */
337
338         struct semaphore     fo_alloc_lock;
339
340         atomic_t             fo_r_in_flight;
341         atomic_t             fo_w_in_flight;
342
343         /*
344          * per-filter pool of kiobuf's allocated by filter_common_setup() and
345          * torn down by filter_cleanup(). Contains OST_NUM_THREADS elements of
346          * which ->fo_iobuf_count were allocated.
347          *
348          * This pool contains kiobuf used by
349          * filter_{prep,commit}rw_{read,write}() and is shared by all OST
350          * threads.
351          *
352          * Locking: none, each OST thread uses only one element, determined by
353          * its "ordinal number", ->t_id.
354          */
355         struct filter_iobuf    **fo_iobuf_pool;
356         int                      fo_iobuf_count;
357
358         struct list_head         fo_llog_list;
359         spinlock_t               fo_llog_list_lock;
360
361         struct brw_stats         fo_filter_stats;
362         struct lustre_quota_ctxt fo_quota_ctxt;
363         spinlock_t               fo_quotacheck_lock;
364         atomic_t                 fo_quotachecking;
365
366         int                      fo_fmd_max_num; /* per exp filter_mod_data */
367         int                      fo_fmd_max_age; /* jiffies to fmd expiry */
368
369         /* capability related */
370         unsigned int             fo_fl_oss_capa;
371         struct list_head         fo_capa_keys;
372         struct hlist_head       *fo_capa_hash;
373 };
374
375 #define OSC_MAX_RIF_DEFAULT       8
376 #define OSC_MAX_RIF_MAX         256
377 #define OSC_MAX_DIRTY_DEFAULT  (OSC_MAX_RIF_DEFAULT * 4)
378 #define OSC_MAX_DIRTY_MB_MAX   2048     /* arbitrary, but < MAX_LONG bytes */
379
380 #define MDC_MAX_RIF_DEFAULT       8
381 #define MDC_MAX_RIF_MAX         512
382
383 struct mdc_rpc_lock;
384 struct obd_import;
385 struct client_obd {
386         struct semaphore         cl_sem;
387         struct obd_uuid          cl_target_uuid;
388         struct obd_import       *cl_import; /* ptlrpc connection state */
389         int                      cl_conn_count;
390         /* max_mds_easize is purely a performance thing so we don't have to
391          * call obd_size_diskmd() all the time. */
392         int                      cl_default_mds_easize;
393         int                      cl_max_mds_easize;
394         int                      cl_max_mds_cookiesize;
395
396         /* security configuration */
397         struct sec_flavor_config cl_sec_conf;
398
399         //struct llog_canceld_ctxt *cl_llcd; /* it's included by obd_llog_ctxt */
400         void                    *cl_llcd_offset;
401
402         /* the grant values are protected by loi_list_lock below */
403         long                     cl_dirty;         /* all _dirty_ in bytes */
404         long                     cl_dirty_max;     /* allowed w/o rpc */
405         long                     cl_avail_grant;   /* bytes of credit for ost */
406         long                     cl_lost_grant;    /* lost credits (trunc) */
407         struct list_head         cl_cache_waiters; /* waiting for cache/grant */
408
409         /* keep track of objects that have lois that contain pages which
410          * have been queued for async brw.  this lock also protects the
411          * lists of osc_client_pages that hang off of the loi */
412         /*
413          * ->cl_loi_list_lock protects consistency of
414          * ->cl_loi_{ready,read,write}_list. ->ap_make_ready() and
415          * ->ap_completion() call-backs are executed under this lock. As we
416          * cannot guarantee that these call-backs never block on all platforms
417          * (as a matter of fact they do block on Mac OS X), type of
418          * ->cl_loi_list_lock is platform dependent: it's a spin-lock on Linux
419          * and blocking mutex on Mac OS X. (Alternative is to make this lock
420          * blocking everywhere, but we don't want to slow down fast-path of
421          * our main platform.)
422          *
423          * Exact type of ->cl_loi_list_lock is defined in arch/obd.h together
424          * with client_obd_list_{un,}lock() and
425          * client_obd_list_lock_{init,done}() functions.
426          */
427         client_obd_lock_t        cl_loi_list_lock;
428         struct list_head         cl_loi_ready_list;
429         struct list_head         cl_loi_write_list;
430         struct list_head         cl_loi_read_list;
431         int                      cl_r_in_flight;
432         int                      cl_w_in_flight;
433         /* just a sum of the loi/lop pending numbers to be exported by /proc */
434         int                      cl_pending_w_pages;
435         int                      cl_pending_r_pages;
436         int                      cl_max_pages_per_rpc;
437         int                      cl_max_rpcs_in_flight;
438         struct obd_histogram     cl_read_rpc_hist;
439         struct obd_histogram     cl_write_rpc_hist;
440         struct obd_histogram     cl_read_page_hist;
441         struct obd_histogram     cl_write_page_hist;
442         struct obd_histogram     cl_read_offset_hist;
443         struct obd_histogram     cl_write_offset_hist;
444
445         struct mdc_rpc_lock     *cl_rpc_lock;
446         struct mdc_rpc_lock     *cl_setattr_lock;
447         struct mdc_rpc_lock     *cl_close_lock;
448         struct osc_creator       cl_oscc;
449
450         /* mgc datastruct */
451         struct semaphore         cl_mgc_sem;
452         struct vfsmount         *cl_mgc_vfsmnt;
453         struct dentry           *cl_mgc_configs_dir;
454         atomic_t                 cl_mgc_refcount;
455         struct obd_export       *cl_mgc_mgsexp;
456
457         /* Flags section */
458         unsigned int             cl_checksum:1; /* debug checksums */
459
460         /* also protected by the poorly named _loi_list_lock lock above */
461         struct osc_async_rc      cl_ar;
462
463         /* used by quotacheck */
464         int                      cl_qchk_stat; /* quotacheck stat of the peer */
465
466         /* sequence manager */
467         struct lu_client_seq    *cl_seq;
468 };
469 #define obd2cli_tgt(obd) ((char *)(obd)->u.cli.cl_target_uuid.uuid)
470
471 #define CL_NOT_QUOTACHECKED 1   /* client->cl_qchk_stat init value */
472
473 struct mgs_obd {
474         struct ptlrpc_service           *mgs_service;
475         struct vfsmount                 *mgs_vfsmnt;
476         struct super_block              *mgs_sb;
477         struct dentry                   *mgs_configs_dir;
478         struct dentry                   *mgs_fid_de;
479         struct list_head                 mgs_fs_db_list;
480         struct semaphore                 mgs_sem;
481         cfs_proc_dir_entry_t            *mgs_proc_live;
482 };
483
484 /* hah, upper limit 64 should be enough */
485 #define N_NOSQUASH_NIDS 64
486 struct rootsquash_info {
487         uid_t           rsi_uid;
488         gid_t           rsi_gid;
489         int             rsi_n_nosquash_nids;
490         lnet_nid_t      rsi_nosquash_nids[N_NOSQUASH_NIDS];
491 };
492
493 struct mds_obd {
494         /* NB this field MUST be first */
495         struct obd_device_target         mds_obt;
496         struct ptlrpc_service           *mds_service;
497         struct ptlrpc_service           *mds_setattr_service;
498         struct ptlrpc_service           *mds_readpage_service;
499         struct vfsmount                 *mds_vfsmnt;
500         cfs_dentry_t                    *mds_fid_de;
501         int                              mds_max_mdsize;
502         int                              mds_max_cookiesize;
503         struct file                     *mds_rcvd_filp;
504         spinlock_t                       mds_transno_lock;
505         __u64                            mds_last_transno;
506         __u64                            mds_mount_count;
507         __u64                            mds_io_epoch;
508         unsigned long                    mds_atime_diff;
509         struct semaphore                 mds_epoch_sem;
510         struct ll_fid                    mds_rootfid;
511         struct lr_server_data           *mds_server_data;
512         cfs_dentry_t                    *mds_pending_dir;
513         cfs_dentry_t                    *mds_logs_dir;
514         cfs_dentry_t                    *mds_objects_dir;
515         struct llog_handle              *mds_cfg_llh;
516 //        struct llog_handle              *mds_catalog;
517         struct obd_device               *mds_osc_obd; /* XXX lov_obd */
518         struct obd_uuid                  mds_lov_uuid;
519         char                            *mds_profile;
520         struct obd_export               *mds_osc_exp; /* XXX lov_exp */
521         struct lov_desc                  mds_lov_desc;
522         __u32                            mds_id;
523         obd_id                          *mds_lov_objids;
524         int                              mds_lov_objids_size;
525         __u32                            mds_lov_objids_in_file;
526         unsigned int                     mds_lov_objids_dirty:1;
527         int                              mds_lov_nextid_set;
528         struct file                     *mds_lov_objid_filp;
529         struct file                     *mds_health_check_filp;
530         unsigned long                   *mds_client_bitmap;
531 //        struct upcall_cache             *mds_group_hash;
532
533         struct lustre_quota_info         mds_quota_info;
534         struct semaphore                 mds_qonoff_sem;
535         struct semaphore                 mds_health_sem;
536         unsigned long                    mds_lov_objids_valid:1,
537                                          mds_fl_user_xattr:1,
538                                          mds_fl_acl:1,
539                                          mds_evict_ost_nids:1;
540
541
542         struct upcall_cache             *mds_identity_cache;
543         struct upcall_cache             *mds_rmtacl_cache;
544
545         /* root squash */
546         struct rootsquash_info          *mds_rootsquash_info;
547
548         /* for capability keys update */
549         struct lustre_capa_key          *mds_capa_keys;
550 };
551
552 struct echo_obd {
553         struct obdo          eo_oa;
554         spinlock_t           eo_lock;
555         __u64                eo_lastino;
556         struct lustre_handle eo_nl_lock;
557         atomic_t             eo_prep;
558 };
559
560 struct ost_obd {
561         struct ptlrpc_service *ost_service;
562         struct ptlrpc_service *ost_create_service;
563         struct ptlrpc_service *ost_io_service;
564         struct semaphore       ost_health_sem;
565 };
566
567 struct echo_client_obd {
568         struct obd_export   *ec_exp;   /* the local connection to osc/lov */
569         spinlock_t           ec_lock;
570         struct list_head     ec_objects;
571         int                  ec_nstripes;
572         __u64                ec_unique;
573 };
574
575 struct lov_qos_oss {
576         struct obd_uuid     lqo_uuid;       /* ptlrpc's c_remote_uuid */
577         struct list_head    lqo_oss_list;   /* link to lov_qos */
578         __u32               lqo_ost_count;  /* number of osts on this oss */
579         __u64               lqo_bavail;     /* total bytes avail on OSS */
580         __u64               lqo_penalty;    /* current penalty */
581         __u64               lqo_penalty_per_obj; /* penalty decrease every obj*/
582 };
583
584 struct ltd_qos {
585         struct lov_qos_oss *ltq_oss;         /* oss info */
586         __u64               ltq_penalty;     /* current penalty */
587         __u64               ltq_penalty_per_obj; /* penalty decrease every obj*/
588         __u64               ltq_weight;      /* net weighting */
589         unsigned int        ltq_usable:1;    /* usable for striping */
590 };
591
592 struct lov_qos {
593         struct list_head    lq_oss_list;    /* list of OSSs that targets use */
594         struct rw_semaphore lq_rw_sem;
595         __u32               lq_active_oss_count;
596         __u32              *lq_rr_array;    /* round-robin optimized list */
597         unsigned int        lq_rr_size;     /* rr array size */
598         unsigned int        lq_prio_free;   /* priority for free space */
599         unsigned int        lq_dirty:1,     /* recalc qos data */
600                             lq_dirty_rr:1,  /* recalc round-robin list */
601                             lq_same_space:1,/* the ost's all have approx.
602                                                the same space avail */
603                             lq_reset:1;     /* zero current penalties */
604 };
605
606 struct lov_tgt_desc {
607         struct obd_uuid     ltd_uuid;
608         struct obd_export  *ltd_exp;
609         struct ltd_qos      ltd_qos;     /* qos info per target */
610         __u32               ltd_gen;
611         __u32               ltd_index;   /* index in lov_obd->tgts */
612         unsigned int        ltd_active:1,/* is this target up for requests */
613                             ltd_activate:1,/* should this target be activated */
614                             ltd_reap:1;  /* should this target be deleted */
615 };
616
617 struct lov_obd {
618         struct lov_desc         desc;
619         struct lov_tgt_desc   **lov_tgts;
620         struct semaphore        lov_lock;
621         struct obd_connect_data lov_ocd;
622         struct lov_qos          lov_qos;               /* qos info per lov */
623         atomic_t                lov_refcount;
624         __u32                   lov_tgt_count;         /* how many OBD's */
625         __u32                   lov_active_tgt_count;  /* how many active */
626         __u32                   lov_death_row;/* tgts scheduled to be deleted */
627         __u32                   lov_tgt_size;   /* size of tgts array */
628         __u32                   lov_start_idx;  /* start index of new inode */
629         __u32                   lov_offset_idx; /* aliasing for start_idx  */
630         int                     lov_start_count;/* reseed counter */
631         int                     lov_connects;
632 };
633
634 struct lmv_tgt_desc {
635         struct obd_uuid         ltd_uuid;
636         struct obd_export      *ltd_exp;
637         int                     ltd_active;   /* is this target up for requests */
638         int                     ltd_idx;
639         struct semaphore        ltd_fid_sem;
640 };
641
642 struct lmv_obd {
643         int                     refcount;
644         struct lu_client_fld    lmv_fld;
645         spinlock_t              lmv_lock;
646         struct lmv_desc         desc;
647         struct obd_uuid         cluuid;
648         struct obd_export       *exp;
649
650         int                     connected;
651         int                     max_easize;
652         int                     max_def_easize;
653         int                     max_cookiesize;
654         int                     server_timeout;
655         struct semaphore        init_sem;
656
657         struct lmv_tgt_desc     *tgts;
658         int                     tgts_size;
659
660         struct obd_connect_data *datas;
661         int                     datas_size;
662
663         struct obd_connect_data conn_data;
664 };
665
666 struct niobuf_local {
667         __u64 offset;
668         __u32 len;
669         __u32 flags;
670         cfs_page_t    *page;
671         cfs_dentry_t  *dentry;
672         int lnb_grant_used;
673         int rc;
674 };
675
676 #define LUSTRE_FLD_NAME         "fld"
677 #define LUSTRE_SEQ_NAME         "seq"
678
679 #define LUSTRE_CMM_NAME         "cmm"
680 #define LUSTRE_MDD_NAME         "mdd"
681 #define LUSTRE_OSD_NAME         "osd"
682 #define LUSTRE_LMV_NAME         "lmv"
683 #define LUSTRE_CMM_MDC_NAME     "cmm-mdc"
684
685 /* obd device type names */
686  /* FIXME all the references to LUSTRE_MDS_NAME should be swapped with LUSTRE_MDT_NAME */
687 #define LUSTRE_MDS_NAME         "mds"
688 #define LUSTRE_MDT_NAME         "mdt"
689 #define LUSTRE_MDC_NAME         "mdc"
690 #define LUSTRE_OSS_NAME         "ost"       /* FIXME change name to oss */
691 #define LUSTRE_OST_NAME         "obdfilter" /* FIXME change name to ost */
692 #define LUSTRE_OSC_NAME         "osc"
693 #define LUSTRE_LOV_NAME         "lov"
694 #define LUSTRE_MGS_NAME         "mgs"
695 #define LUSTRE_MGC_NAME         "mgc"
696
697 #define LUSTRE_CACHEOBD_NAME    "cobd"
698 #define LUSTRE_ECHO_NAME        "obdecho"
699 #define LUSTRE_ECHO_CLIENT_NAME "echo_client"
700
701 /* Constant obd names (post-rename) */
702 #define LUSTRE_MDS_OBDNAME "MDS"
703 #define LUSTRE_OSS_OBDNAME "OSS"
704 #define LUSTRE_MGS_OBDNAME "MGS"
705 #define LUSTRE_MGC_OBDNAME "MGC"
706
707 /* Don't conflict with on-wire flags OBD_BRW_WRITE, etc */
708 #define N_LOCAL_TEMP_PAGE 0x10000000
709
710 struct obd_trans_info {
711         __u64                    oti_transno;
712         __u64                    oti_xid;
713         __u64                   *oti_objid;
714         /* Only used on the server side for tracking acks. */
715         struct oti_req_ack_lock {
716                 struct lustre_handle lock;
717                 __u32                mode;
718         }                        oti_ack_locks[4];
719         void                    *oti_handle;
720         struct llog_cookie       oti_onecookie;
721         struct llog_cookie      *oti_logcookies;
722         int                      oti_numcookies;
723
724         /* initial thread handling transaction */
725         int                      oti_thread_id;
726         __u32                    oti_conn_cnt;
727 };
728
729 static inline void oti_init(struct obd_trans_info *oti,
730                             struct ptlrpc_request *req)
731 {
732         if (oti == NULL)
733                 return;
734         memset(oti, 0, sizeof *oti);
735
736         if (req == NULL)
737                 return;
738
739         oti->oti_xid = req->rq_xid;
740
741         if (req->rq_repmsg && req->rq_reqmsg != 0)
742                 oti->oti_transno = lustre_msg_get_transno(req->rq_repmsg);
743         oti->oti_thread_id = req->rq_svc_thread ? req->rq_svc_thread->t_id : -1;
744         oti->oti_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
745 }
746
747 static inline void oti_alloc_cookies(struct obd_trans_info *oti,int num_cookies)
748 {
749         if (!oti)
750                 return;
751
752         if (num_cookies == 1)
753                 oti->oti_logcookies = &oti->oti_onecookie;
754         else
755                 OBD_ALLOC(oti->oti_logcookies,
756                           num_cookies * sizeof(oti->oti_onecookie));
757
758         oti->oti_numcookies = num_cookies;
759 }
760
761 static inline void oti_free_cookies(struct obd_trans_info *oti)
762 {
763         if (!oti || !oti->oti_logcookies)
764                 return;
765
766         if (oti->oti_logcookies == &oti->oti_onecookie)
767                 LASSERT(oti->oti_numcookies == 1);
768         else
769                 OBD_FREE(oti->oti_logcookies,
770                          oti->oti_numcookies * sizeof(oti->oti_onecookie));
771         oti->oti_logcookies = NULL;
772         oti->oti_numcookies = 0;
773 }
774
775 /*
776  * Events signalled through obd_notify() upcall-chain.
777  */
778 enum obd_notify_event {
779         /* Device activated */
780         OBD_NOTIFY_ACTIVE,
781         /* Device deactivated */
782         OBD_NOTIFY_INACTIVE,
783         /* Device disconnected */
784         OBD_NOTIFY_DISCON,
785         /* Connect data for import were changed */
786         OBD_NOTIFY_OCD,
787         /* Sync request */
788         OBD_NOTIFY_SYNC_NONBLOCK,
789         OBD_NOTIFY_SYNC,
790         /* Configuration event */
791         OBD_NOTIFY_CONFIG
792 };
793
794 /*
795  * Data structure used to pass obd_notify()-event to non-obd listeners (llite
796  * and liblustre being main examples).
797  */
798 struct obd_notify_upcall {
799         int (*onu_upcall)(struct obd_device *host, struct obd_device *watched,
800                           enum obd_notify_event ev, void *owner);
801         /* Opaque datum supplied by upper layer listener */
802         void *onu_owner;
803 };
804
805 struct target_recovery_data {
806         svc_handler_t     trd_recovery_handler;
807         pid_t             trd_processing_task;
808         struct completion trd_starting;
809         struct completion trd_finishing;
810 };
811
812 /* corresponds to one of the obd's */
813 #define MAX_OBD_NAME 128
814 #define OBD_DEVICE_MAGIC        0XAB5CD6EF
815 struct obd_device {
816         struct obd_type        *obd_type;
817         __u32                   obd_magic;
818
819         /* common and UUID name of this device */
820         char                    obd_name[MAX_OBD_NAME];
821         struct obd_uuid         obd_uuid;
822
823         struct lu_device       *obd_lu_dev;
824
825         int                     obd_minor;
826         unsigned int obd_attached:1,      /* finished attach */
827                      obd_set_up:1,        /* finished setup */
828                      obd_recovering:1,    /* there are recoverable clients */
829                      obd_abort_recovery:1,/* somebody ioctl'ed us to abort */
830                      obd_replayable:1,    /* recovery is enabled; inform clients */
831                      obd_no_transno:1,    /* no committed-transno notification */
832                      obd_no_recov:1,      /* fail instead of retry messages */
833                      obd_req_replaying:1, /* replaying requests */
834                      obd_stopping:1,      /* started cleanup */
835                      obd_starting:1,      /* started setup */
836                      obd_force:1,         /* cleanup with > 0 obd refcount */
837                      obd_fail:1,          /* cleanup with failover */
838                      obd_async_recov:1,   /* allow asyncronous orphan cleanup */
839                      obd_no_conn:1;       /* deny new connections */
840         atomic_t obd_refcount;
841         cfs_waitq_t             obd_refcount_waitq;
842         struct list_head        obd_exports;
843         int                     obd_num_exports;
844         struct ldlm_namespace  *obd_namespace;
845         struct ptlrpc_client    obd_ldlm_client; /* XXX OST/MDS only */
846         /* a spinlock is OK for what we do now, may need a semaphore later */
847         spinlock_t              obd_dev_lock;
848         struct semaphore        obd_dev_sem;
849         __u64                   obd_last_committed;
850         struct fsfilt_operations *obd_fsops;
851         spinlock_t              obd_osfs_lock;
852         struct obd_statfs       obd_osfs;       /* locked by obd_osfs_lock */
853         __u64                   obd_osfs_age;
854         struct lvfs_run_ctxt    obd_lvfs_ctxt;
855         struct llog_ctxt        *obd_llog_ctxt[LLOG_MAX_CTXTS];
856         struct obd_device       *obd_observer;
857         struct obd_notify_upcall obd_upcall;
858         struct obd_export       *obd_self_export;
859         /* list of exports in LRU order, for ping evictor, with obd_dev_lock */
860         struct list_head        obd_exports_timed;
861         time_t                  obd_eviction_timer; /* for ping evictor */
862
863         /* XXX encapsulate all this recovery data into one struct */
864         svc_handler_t                    obd_recovery_handler;
865         pid_t                            obd_processing_task;
866         
867         int                              obd_max_recoverable_clients;
868         int                              obd_connected_clients;
869         int                              obd_recoverable_clients;
870         spinlock_t                       obd_processing_task_lock; /* BH lock (timer) */
871         __u64                            obd_next_recovery_transno;
872         int                              obd_replayed_requests;
873         int                              obd_requests_queued_for_recovery;
874         cfs_waitq_t                      obd_next_transno_waitq;
875         struct list_head                 obd_uncommitted_replies;
876         spinlock_t                       obd_uncommitted_replies_lock;
877         cfs_timer_t                      obd_recovery_timer;
878         time_t                           obd_recovery_start;
879         time_t                           obd_recovery_end;
880         
881         /* new recovery stuff from CMD2 */
882         struct target_recovery_data      obd_recovery_data;
883         int                              obd_replayed_locks;
884         atomic_t                         obd_req_replay_clients;
885         atomic_t                         obd_lock_replay_clients;
886         struct list_head                 obd_req_replay_queue;
887         struct list_head                 obd_lock_replay_queue;
888         struct list_head                 obd_final_req_queue;
889         int                              obd_recovery_stage;
890
891         union {
892                 struct obd_device_target obt;
893                 struct filter_obd filter;
894                 struct mds_obd mds;
895                 struct client_obd cli;
896                 struct ost_obd ost;
897                 struct echo_client_obd echo_client;
898                 struct echo_obd echo;
899                 struct lov_obd lov;
900                 struct lmv_obd lmv;
901                 struct mgs_obd mgs;
902         } u;
903         /* Fields used by LProcFS */
904         unsigned int           obd_cntr_base;
905         struct lprocfs_stats  *obd_stats;
906
907         unsigned int           md_cntr_base;
908         struct lprocfs_stats  *md_stats;
909
910         cfs_proc_dir_entry_t  *obd_proc_entry;
911         cfs_proc_dir_entry_t  *obd_proc_exports;
912         cfs_proc_dir_entry_t  *obd_svc_procroot;
913         struct lprocfs_stats  *obd_svc_stats;
914         struct semaphore       obd_proc_exp_sem;
915         atomic_t               obd_evict_inprogress;
916         cfs_waitq_t            obd_evict_inprogress_waitq;
917 };
918
919 #define OBD_OPT_FORCE           0x0001
920 #define OBD_OPT_FAILOVER        0x0002
921
922 #define OBD_LLOG_FL_SENDNOW     0x0001
923
924 enum obd_cleanup_stage {
925 /* Special case hack for MDS LOVs */
926         OBD_CLEANUP_EARLY,
927 /* Precleanup stage 1, we must make sure all exports (other than the
928    self-export) get destroyed. */
929         OBD_CLEANUP_EXPORTS,
930 /* Precleanup stage 2,  do other type-specific cleanup requiring the
931    self-export. */
932         OBD_CLEANUP_SELF_EXP,
933 /* FIXME we should eliminate the "precleanup" function and make them stages
934    of the "cleanup" function. */
935         OBD_CLEANUP_OBD,
936 };
937
938 /* get/set_info keys */
939 #define KEY_READ_ONLY           "read-only"
940 #define KEY_MDS_CONN            "mds_conn"
941 #define KEY_NEXT_ID             "next_id"
942 #define KEY_LOVDESC             "lovdesc"
943 #define KEY_INIT_RECOV          "initial_recov"
944 #define KEY_INIT_RECOV_BACKUP   "init_recov_bk"
945 #define KEY_FLUSH_CTX           "flush_ctx"
946 #define KEY_CAPA_KEY            "capa_key"
947 #define KEY_CONN_DATA           "conn_data"
948 #define KEY_MAX_EASIZE          "max_easize"
949 #define KEY_REVIMP_UPD          "revimp_update"
950
951 struct lu_context;
952
953 struct md_op_data {
954         struct lu_fid           op_fid1; /* operation fid1 (usualy parent) */
955         struct lu_fid           op_fid2; /* operation fid2 (usualy child) */
956         struct lu_fid           op_fid3; /* 2 extra fids to find conflicting */
957         struct lu_fid           op_fid4; /* to the operation locks. */
958         mdsno_t                 op_mds;  /* what mds server open will go to */
959         struct lustre_handle    op_handle;
960         __u64                   op_mod_time;
961         const char             *op_name;
962         int                     op_namelen;
963         __u32                   op_mode;
964         struct lmv_stripe_md   *op_mea1;
965         struct lmv_stripe_md   *op_mea2;
966         __u32                   op_suppgids[2];
967         __u32                   op_fsuid;
968         __u32                   op_fsgid;
969         __u32                   op_cap;
970         void                   *op_data;
971
972         /* iattr fields and blocks. */
973         struct iattr            op_attr;
974 #ifdef __KERNEL__
975 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
976         unsigned int            op_attr_flags;
977 #endif
978 #endif
979         loff_t                  op_attr_blocks;
980
981         /* Size-on-MDS epoch and flags. */
982         __u64                   op_ioepoch;
983         __u32                   op_flags;
984
985         /* Capa fields */
986         struct obd_capa        *op_capa1;
987         struct obd_capa        *op_capa2;
988
989         /* Various operation flags. */
990         __u32                   op_bias;
991
992         /* Operation type */
993         __u32                   op_opc;
994 };
995
996 struct obd_ops {
997         struct module *o_owner;
998         int (*o_iocontrol)(unsigned int cmd, struct obd_export *exp, int len,
999                            void *karg, void *uarg);
1000         int (*o_get_info)(struct obd_export *, __u32 keylen, void *key,
1001                           __u32 *vallen, void *val);
1002         int (*o_set_info_async)(struct obd_export *, __u32 keylen, void *key,
1003                                 __u32 vallen, void *val,
1004                                 struct ptlrpc_request_set *set);
1005         int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
1006         int (*o_detach)(struct obd_device *dev);
1007         int (*o_setup) (struct obd_device *dev, struct lustre_cfg *cfg);
1008         int (*o_precleanup)(struct obd_device *dev,
1009                             enum obd_cleanup_stage cleanup_stage);
1010         int (*o_cleanup)(struct obd_device *dev);
1011         int (*o_process_config)(struct obd_device *dev, obd_count len,
1012                                 void *data);
1013         int (*o_postrecov)(struct obd_device *dev);
1014         int (*o_add_conn)(struct obd_import *imp, struct obd_uuid *uuid,
1015                           int priority);
1016         int (*o_del_conn)(struct obd_import *imp, struct obd_uuid *uuid);
1017         /* connect to the target device with given connection
1018          * data. @ocd->ocd_connect_flags is modified to reflect flags actually
1019          * granted by the target, which are guaranteed to be a subset of flags
1020          * asked for. If @ocd == NULL, use default parameters. */
1021         int (*o_connect)(const struct lu_env *env,
1022                          struct lustre_handle *conn, struct obd_device *src,
1023                          struct obd_uuid *cluuid, struct obd_connect_data *ocd);
1024         int (*o_reconnect)(struct obd_export *exp, struct obd_device *src,
1025                            struct obd_uuid *cluuid,
1026                            struct obd_connect_data *ocd);
1027         int (*o_disconnect)(struct obd_export *exp);
1028
1029         /* Initialize/finalize fids infrastructure. */
1030         int (*o_fid_init)(struct obd_export *exp);
1031         int (*o_fid_fini)(struct obd_export *exp);
1032
1033         /* Allocate new fid according to passed @hint. */
1034         int (*o_fid_alloc)(struct obd_export *exp, struct lu_fid *fid,
1035                            struct md_op_data *op_data);
1036
1037         /* 
1038          * Object with @fid is getting deleted, we may want to do something
1039          * about this.
1040          */
1041         int (*o_fid_delete)(struct obd_export *exp, const struct lu_fid *fid);
1042
1043         int (*o_statfs)(struct obd_device *obd, struct obd_statfs *osfs,
1044                         __u64 max_age);
1045         int (*o_statfs_async)(struct obd_device *obd, struct obd_info *oinfo,
1046                               __u64 max_age, struct ptlrpc_request_set *set);
1047         int (*o_packmd)(struct obd_export *exp, struct lov_mds_md **disk_tgt,
1048                         struct lov_stripe_md *mem_src);
1049         int (*o_unpackmd)(struct obd_export *exp,struct lov_stripe_md **mem_tgt,
1050                           struct lov_mds_md *disk_src, int disk_len);
1051         int (*o_checkmd)(struct obd_export *exp, struct obd_export *md_exp,
1052                          struct lov_stripe_md *mem_tgt);
1053         int (*o_preallocate)(struct lustre_handle *, obd_count *req,
1054                              obd_id *ids);
1055         /* FIXME: add fid capability support for create & destroy! */
1056         int (*o_precreate)(struct obd_export *exp, int need_create);
1057         int (*o_create)(struct obd_export *exp,  struct obdo *oa,
1058                         struct lov_stripe_md **ea, struct obd_trans_info *oti);
1059         int (*o_destroy)(struct obd_export *exp, struct obdo *oa,
1060                          struct lov_stripe_md *ea, struct obd_trans_info *oti,
1061                          struct obd_export *md_exp);
1062         int (*o_setattr)(struct obd_export *exp, struct obd_info *oinfo,
1063                          struct obd_trans_info *oti);
1064         int (*o_setattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1065                                struct obd_trans_info *oti,
1066                                struct ptlrpc_request_set *rqset);
1067         int (*o_getattr)(struct obd_export *exp, struct obd_info *oinfo);
1068         int (*o_getattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1069                                struct ptlrpc_request_set *set);
1070         int (*o_brw)(int rw, struct obd_export *exp, struct obd_info *oinfo,
1071                      obd_count oa_bufs, struct brw_page *pgarr,
1072                      struct obd_trans_info *oti);
1073         int (*o_brw_async)(int rw, struct obd_export *exp,
1074                            struct obd_info *oinfo, obd_count oa_bufs,
1075                            struct brw_page *pgarr, struct obd_trans_info *oti,
1076                            struct ptlrpc_request_set *);
1077         int (*o_prep_async_page)(struct obd_export *exp,
1078                                  struct lov_stripe_md *lsm,
1079                                  struct lov_oinfo *loi,
1080                                  cfs_page_t *page, obd_off offset,
1081                                  struct obd_async_page_ops *ops, void *data,
1082                                  void **res);
1083         int (*o_queue_async_io)(struct obd_export *exp,
1084                                 struct lov_stripe_md *lsm,
1085                                 struct lov_oinfo *loi, void *cookie,
1086                                 int cmd, obd_off off, int count,
1087                                 obd_flag brw_flags, obd_flag async_flags);
1088         int (*o_queue_group_io)(struct obd_export *exp,
1089                                 struct lov_stripe_md *lsm,
1090                                 struct lov_oinfo *loi,
1091                                 struct obd_io_group *oig,
1092                                 void *cookie, int cmd, obd_off off, int count,
1093                                 obd_flag brw_flags, obd_flag async_flags);
1094         int (*o_trigger_group_io)(struct obd_export *exp,
1095                                   struct lov_stripe_md *lsm,
1096                                   struct lov_oinfo *loi,
1097                                   struct obd_io_group *oig);
1098         int (*o_set_async_flags)(struct obd_export *exp,
1099                                 struct lov_stripe_md *lsm,
1100                                 struct lov_oinfo *loi, void *cookie,
1101                                 obd_flag async_flags);
1102         int (*o_teardown_async_page)(struct obd_export *exp,
1103                                      struct lov_stripe_md *lsm,
1104                                      struct lov_oinfo *loi, void *cookie);
1105         int (*o_merge_lvb)(struct obd_export *exp, struct lov_stripe_md *lsm,
1106                            struct ost_lvb *lvb, int kms_only);
1107         int (*o_adjust_kms)(struct obd_export *exp, struct lov_stripe_md *lsm,
1108                             obd_off size, int shrink);
1109         int (*o_punch)(struct obd_export *exp, struct obd_info *oinfo,
1110                        struct obd_trans_info *oti,
1111                        struct ptlrpc_request_set *rqset);
1112         int (*o_sync)(struct obd_export *exp, struct obdo *oa,
1113                       struct lov_stripe_md *ea, obd_size start, obd_size end,
1114                       void *capa);
1115         int (*o_migrate)(struct lustre_handle *conn, struct lov_stripe_md *dst,
1116                          struct lov_stripe_md *src, obd_size start,
1117                          obd_size end, struct obd_trans_info *oti);
1118         int (*o_copy)(struct lustre_handle *dstconn, struct lov_stripe_md *dst,
1119                       struct lustre_handle *srconn, struct lov_stripe_md *src,
1120                       obd_size start, obd_size end, struct obd_trans_info *);
1121         int (*o_iterate)(struct lustre_handle *conn,
1122                          int (*)(obd_id, obd_gr, void *),
1123                          obd_id *startid, obd_gr group, void *data);
1124         int (*o_preprw)(int cmd, struct obd_export *exp, struct obdo *oa,
1125                         int objcount, struct obd_ioobj *obj,
1126                         int niocount, struct niobuf_remote *remote,
1127                         struct niobuf_local *local, struct obd_trans_info *oti,
1128                         struct lustre_capa *capa);
1129         int (*o_commitrw)(int cmd, struct obd_export *exp, struct obdo *oa,
1130                           int objcount, struct obd_ioobj *obj,
1131                           int niocount, struct niobuf_local *local,
1132                           struct obd_trans_info *oti, int rc);
1133         int (*o_enqueue)(struct obd_export *, struct obd_info *oinfo,
1134                          struct ldlm_enqueue_info *einfo,
1135                          struct ptlrpc_request_set *rqset);
1136         int (*o_match)(struct obd_export *, struct lov_stripe_md *, __u32 type,
1137                        ldlm_policy_data_t *, __u32 mode, int *flags, void *data,
1138                        struct lustre_handle *lockh);
1139         int (*o_change_cbdata)(struct obd_export *, struct lov_stripe_md *,
1140                                ldlm_iterator_t it, void *data);
1141         int (*o_cancel)(struct obd_export *, struct lov_stripe_md *md,
1142                         __u32 mode, struct lustre_handle *);
1143         int (*o_cancel_unused)(struct obd_export *, struct lov_stripe_md *,
1144                                int flags, void *opaque);
1145         int (*o_join_lru)(struct obd_export *, struct lov_stripe_md *,
1146                          int join);
1147         int (*o_init_export)(struct obd_export *exp);
1148         int (*o_destroy_export)(struct obd_export *exp);
1149         int (*o_extent_calc)(struct obd_export *, struct lov_stripe_md *,
1150                              int cmd, obd_off *);
1151
1152         /* llog related obd_methods */
1153         int (*o_llog_init)(struct obd_device *obd, struct obd_llogs *llog,
1154                            struct obd_device *disk_obd, int count,
1155                            struct llog_catid *logid, struct obd_uuid *uuid);
1156         int (*o_llog_finish)(struct obd_device *obd, int count);
1157         int (*o_llog_connect)(struct obd_export *, struct llogd_conn_body *);
1158
1159         /* metadata-only methods */
1160         int (*o_pin)(struct obd_export *, const struct lu_fid *fid,
1161                      struct obd_capa *, struct obd_client_handle *, int flag);
1162         int (*o_unpin)(struct obd_export *, struct obd_client_handle *, int);
1163
1164         int (*o_import_event)(struct obd_device *, struct obd_import *,
1165                               enum obd_import_event);
1166
1167         int (*o_notify)(struct obd_device *obd, struct obd_device *watched,
1168                         enum obd_notify_event ev, void *data);
1169
1170         int (*o_health_check)(struct obd_device *);
1171
1172         /* quota methods */
1173         int (*o_quotacheck)(struct obd_export *, struct obd_quotactl *);
1174         int (*o_quotactl)(struct obd_export *, struct obd_quotactl *);
1175
1176         int (*o_ping)(struct obd_export *exp);
1177         /*
1178          * NOTE: If adding ops, add another LPROCFS_OBD_OP_INIT() line
1179          * to lprocfs_alloc_obd_stats() in obdclass/lprocfs_status.c.
1180          * Also, add a wrapper function in include/linux/obd_class.h. */
1181 };
1182
1183 /* TODO: lmv_stripe_md should contain mds capabilities for all slave fids */
1184 struct lmv_stripe_md {
1185         __u32         mea_magic;
1186         __u32         mea_count;
1187         __u32         mea_master;
1188         __u32         mea_padding;
1189         struct lu_fid mea_ids[0];
1190 };
1191
1192 enum {
1193         LUSTRE_OPC_MKDIR    = (1 << 0),
1194         LUSTRE_OPC_SYMLINK  = (1 << 1),
1195         LUSTRE_OPC_MKNOD    = (1 << 2),
1196         LUSTRE_OPC_CREATE   = (1 << 3),
1197         LUSTRE_OPC_ANY      = (1 << 4)
1198 };
1199
1200 /* lmv structures */
1201 #define MEA_MAGIC_LAST_CHAR      0xb2221ca1
1202 #define MEA_MAGIC_ALL_CHARS      0xb222a11c
1203 #define MEA_MAGIC_HASH_SEGMENT   0xb222a11b
1204
1205 #define MAX_HASH_SIZE            0x7fffffffUL
1206 #define MAX_HASH_HIGHEST_BIT     0x10000000
1207
1208 struct lustre_md {
1209         struct mdt_body         *body;
1210         struct lov_stripe_md    *lsm;
1211         struct lmv_stripe_md    *mea;
1212 #ifdef CONFIG_FS_POSIX_ACL
1213         struct posix_acl        *posix_acl;
1214 #endif
1215         struct mdt_remote_perm  *remote_perm;
1216         struct obd_capa         *mds_capa;
1217         struct obd_capa         *oss_capa;
1218 };
1219
1220 struct md_open_data {
1221         struct obd_client_handle *mod_och;
1222         struct list_head          mod_replay_list;
1223 };
1224
1225 struct md_ops {
1226         int (*m_getstatus)(struct obd_export *, struct lu_fid *,
1227                            struct obd_capa **);
1228         int (*m_change_cbdata)(struct obd_export *, const struct lu_fid *,
1229                                ldlm_iterator_t, void *);
1230         int (*m_close)(struct obd_export *, struct md_op_data *,
1231                        struct md_open_data *, struct ptlrpc_request **);
1232         int (*m_create)(struct obd_export *, struct md_op_data *,
1233                         const void *, int, int, __u32, __u32, __u32,
1234                         __u64, struct ptlrpc_request **);
1235         int (*m_done_writing)(struct obd_export *, struct md_op_data  *,
1236                               struct md_open_data *);
1237         int (*m_enqueue)(struct obd_export *, struct ldlm_enqueue_info *,
1238                          struct lookup_intent *, struct md_op_data *,
1239                          struct lustre_handle *, void *, int, int);
1240         int (*m_getattr)(struct obd_export *, const struct lu_fid *,
1241                          struct obd_capa *, obd_valid, int,
1242                          struct ptlrpc_request **);
1243         int (*m_getattr_name)(struct obd_export *, const struct lu_fid *,
1244                               struct obd_capa *, const char *, int, obd_valid,
1245                               int, struct ptlrpc_request **);
1246         int (*m_intent_lock)(struct obd_export *, struct md_op_data *,
1247                              void *, int, struct lookup_intent *, int,
1248                              struct ptlrpc_request **,
1249                              ldlm_blocking_callback, int);
1250         int (*m_link)(struct obd_export *, struct md_op_data *,
1251                       struct ptlrpc_request **);
1252         int (*m_rename)(struct obd_export *, struct md_op_data *,
1253                         const char *, int, const char *, int,
1254                         struct ptlrpc_request **);
1255         int (*m_is_subdir)(struct obd_export *, const struct lu_fid *,
1256                            const struct lu_fid *,
1257                            struct ptlrpc_request **);
1258         int (*m_setattr)(struct obd_export *, struct md_op_data *, void *,
1259                          int , void *, int, struct ptlrpc_request **,
1260                          struct md_open_data **mod);
1261         int (*m_sync)(struct obd_export *, const struct lu_fid *,
1262                       struct obd_capa *, struct ptlrpc_request **);
1263         int (*m_readpage)(struct obd_export *, const struct lu_fid *,
1264                           struct obd_capa *, __u64, struct page *,
1265                           struct ptlrpc_request **);
1266
1267         int (*m_unlink)(struct obd_export *, struct md_op_data *,
1268                         struct ptlrpc_request **);
1269
1270         int (*m_setxattr)(struct obd_export *, const struct lu_fid *,
1271                           struct obd_capa *, obd_valid, const char *,
1272                           const char *, int, int, int,
1273                           struct ptlrpc_request **);
1274
1275         int (*m_getxattr)(struct obd_export *, const struct lu_fid *,
1276                           struct obd_capa *, obd_valid, const char *,
1277                           const char *, int, int, int,
1278                           struct ptlrpc_request **);
1279
1280         int (*m_init_ea_size)(struct obd_export *, int, int, int);
1281
1282         int (*m_get_lustre_md)(struct obd_export *, struct ptlrpc_request *,
1283                                int, struct obd_export *, struct obd_export *,
1284                                struct lustre_md *);
1285
1286         int (*m_free_lustre_md)(struct obd_export *, struct lustre_md *);
1287
1288         int (*m_set_open_replay_data)(struct obd_export *,
1289                                       struct obd_client_handle *,
1290                                       struct ptlrpc_request *);
1291         int (*m_clear_open_replay_data)(struct obd_export *,
1292                                         struct obd_client_handle *);
1293         int (*m_set_lock_data)(struct obd_export *, __u64 *, void *);
1294
1295         int (*m_lock_match)(struct obd_export *, int, const struct lu_fid *,
1296                             ldlm_type_t, ldlm_policy_data_t *, ldlm_mode_t,
1297                             struct lustre_handle *);
1298
1299         int (*m_cancel_unused)(struct obd_export *, const struct lu_fid *,
1300                                ldlm_policy_data_t *, ldlm_mode_t, int flags,
1301                                void *opaque);
1302         int (*m_renew_capa)(struct obd_export *, struct obd_capa *oc,
1303                             renew_capa_cb_t cb);
1304
1305         int (*m_get_remote_perm)(struct obd_export *, const struct lu_fid *,
1306                                  struct obd_capa *, struct ptlrpc_request **);
1307
1308         /*
1309          * NOTE: If adding ops, add another LPROCFS_MD_OP_INIT() line to
1310          * lprocfs_alloc_md_stats() in obdclass/lprocfs_status.c. Also, add a
1311          * wrapper function in include/linux/obd_class.h.
1312          */
1313 };
1314
1315 struct lsm_operations {
1316         void (*lsm_free)(struct lov_stripe_md *);
1317         int (*lsm_destroy)(struct lov_stripe_md *, struct obdo *oa,
1318                            struct obd_export *md_exp);
1319         void (*lsm_stripe_by_index)(struct lov_stripe_md *, int *, obd_off *,
1320                                      unsigned long *);
1321         void (*lsm_stripe_by_offset)(struct lov_stripe_md *, int *, obd_off *,
1322                                      unsigned long *);
1323         obd_off (*lsm_stripe_offset_by_index)(struct lov_stripe_md *, int);
1324         obd_off (*lsm_stripe_offset_by_offset)(struct lov_stripe_md *, obd_off);
1325         int (*lsm_stripe_index_by_offset)(struct lov_stripe_md *, obd_off);
1326         int (*lsm_revalidate) (struct lov_stripe_md *, struct obd_device *obd);
1327         int (*lsm_lmm_verify) (struct lov_mds_md *lmm, int lmm_bytes,
1328                                int *stripe_count);
1329         int (*lsm_unpackmd) (struct lov_obd *lov, struct lov_stripe_md *lsm,
1330                              struct lov_mds_md *lmm);
1331 };
1332
1333 extern struct lsm_operations lsm_plain_ops;
1334 extern struct lsm_operations lsm_join_ops;
1335 static inline struct lsm_operations *lsm_op_find(int magic)
1336 {
1337         switch(magic) {
1338         case LOV_MAGIC:
1339                return &lsm_plain_ops;
1340         case LOV_MAGIC_JOIN:
1341                return &lsm_join_ops;
1342         default:
1343                CERROR("Cannot recognize lsm_magic %d\n", magic);
1344                return NULL;
1345         }
1346 }
1347
1348 int lvfs_check_io_health(struct obd_device *obd, struct file *file);
1349
1350 /* Requests for obd_extent_calc() */
1351 #define OBD_CALC_STRIPE_START   1
1352 #define OBD_CALC_STRIPE_END     2
1353
1354 static inline void obd_transno_commit_cb(struct obd_device *obd, __u64 transno,
1355                                          int error)
1356 {
1357         if (error) {
1358                 CERROR("%s: transno "LPD64" commit error: %d\n",
1359                        obd->obd_name, transno, error);
1360                 return;
1361         }
1362         CDEBUG(D_HA, "%s: transno "LPD64" committed\n",
1363                obd->obd_name, transno);
1364         if (transno > obd->obd_last_committed) {
1365                 obd->obd_last_committed = transno;
1366                 ptlrpc_commit_replies (obd);
1367         }
1368 }
1369
1370 static inline void init_obd_quota_ops(quota_interface_t *interface,
1371                                       struct obd_ops *obd_ops)
1372 {
1373         if (!interface)
1374                 return;
1375
1376         LASSERT(obd_ops);
1377         obd_ops->o_quotacheck = QUOTA_OP(interface, check);
1378         obd_ops->o_quotactl = QUOTA_OP(interface, ctl);
1379 }
1380
1381 static inline __u64 oinfo_mdsno(struct obd_info *oinfo)
1382 {
1383         return oinfo->oi_oa->o_gr - FILTER_GROUP_MDS0;
1384 }
1385
1386 static inline struct lustre_capa *oinfo_capa(struct obd_info *oinfo)
1387 {
1388         return oinfo->oi_capa;
1389 }
1390
1391 #endif /* __OBD_H */