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