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