Whamcloud - gitweb
remove last scability issue from lov objid. set next id only for OST which
[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 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 int 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         /* capability related */
374         unsigned int             fo_fl_oss_capa;
375         struct list_head         fo_capa_keys;
376         struct hlist_head       *fo_capa_hash;
377 };
378
379 #define OSC_MAX_RIF_DEFAULT       8
380 #define OSC_MAX_RIF_MAX         256
381 #define OSC_MAX_DIRTY_DEFAULT  (OSC_MAX_RIF_DEFAULT * 4)
382 #define OSC_MAX_DIRTY_MB_MAX   2048     /* arbitrary, but < MAX_LONG bytes */
383 #define OSC_DEFAULT_RESENDS      10
384
385 #define MDC_MAX_RIF_DEFAULT       8
386 #define MDC_MAX_RIF_MAX         512
387
388 struct mdc_rpc_lock;
389 struct obd_import;
390 struct client_obd {
391         struct semaphore         cl_sem;
392         struct obd_uuid          cl_target_uuid;
393         struct obd_import       *cl_import; /* ptlrpc connection state */
394         int                      cl_conn_count;
395         /* max_mds_easize is purely a performance thing so we don't have to
396          * call obd_size_diskmd() all the time. */
397         int                      cl_default_mds_easize;
398         int                      cl_max_mds_easize;
399         int                      cl_max_mds_cookiesize;
400
401         /* security configuration */
402         struct sec_flavor_config cl_sec_conf;
403
404         //struct llog_canceld_ctxt *cl_llcd; /* it's included by obd_llog_ctxt */
405         void                    *cl_llcd_offset;
406
407         /* the grant values are protected by loi_list_lock below */
408         long                     cl_dirty;         /* all _dirty_ in bytes */
409         long                     cl_dirty_max;     /* allowed w/o rpc */
410         long                     cl_avail_grant;   /* bytes of credit for ost */
411         long                     cl_lost_grant;    /* lost credits (trunc) */
412         struct list_head         cl_cache_waiters; /* waiting for cache/grant */
413
414         /* keep track of objects that have lois that contain pages which
415          * have been queued for async brw.  this lock also protects the
416          * lists of osc_client_pages that hang off of the loi */
417         /*
418          * ->cl_loi_list_lock protects consistency of
419          * ->cl_loi_{ready,read,write}_list. ->ap_make_ready() and
420          * ->ap_completion() call-backs are executed under this lock. As we
421          * cannot guarantee that these call-backs never block on all platforms
422          * (as a matter of fact they do block on Mac OS X), type of
423          * ->cl_loi_list_lock is platform dependent: it's a spin-lock on Linux
424          * and blocking mutex on Mac OS X. (Alternative is to make this lock
425          * blocking everywhere, but we don't want to slow down fast-path of
426          * our main platform.)
427          *
428          * Exact type of ->cl_loi_list_lock is defined in arch/obd.h together
429          * with client_obd_list_{un,}lock() and
430          * client_obd_list_lock_{init,done}() functions.
431          */
432         client_obd_lock_t        cl_loi_list_lock;
433         struct list_head         cl_loi_ready_list;
434         struct list_head         cl_loi_write_list;
435         struct list_head         cl_loi_read_list;
436         int                      cl_r_in_flight;
437         int                      cl_w_in_flight;
438         /* just a sum of the loi/lop pending numbers to be exported by /proc */
439         int                      cl_pending_w_pages;
440         int                      cl_pending_r_pages;
441         int                      cl_max_pages_per_rpc;
442         int                      cl_max_rpcs_in_flight;
443         struct obd_histogram     cl_read_rpc_hist;
444         struct obd_histogram     cl_write_rpc_hist;
445         struct obd_histogram     cl_read_page_hist;
446         struct obd_histogram     cl_write_page_hist;
447         struct obd_histogram     cl_read_offset_hist;
448         struct obd_histogram     cl_write_offset_hist;
449
450         struct mdc_rpc_lock     *cl_rpc_lock;
451         struct mdc_rpc_lock     *cl_setattr_lock;
452         struct mdc_rpc_lock     *cl_close_lock;
453         struct osc_creator       cl_oscc;
454
455         /* mgc datastruct */
456         struct semaphore         cl_mgc_sem;
457         struct vfsmount         *cl_mgc_vfsmnt;
458         struct dentry           *cl_mgc_configs_dir;
459         atomic_t                 cl_mgc_refcount;
460         struct obd_export       *cl_mgc_mgsexp;
461
462         /* Flags section */
463         unsigned int             cl_checksum:1; /* debug checksums */
464
465         /* also protected by the poorly named _loi_list_lock lock above */
466         struct osc_async_rc      cl_ar;
467
468         /* used by quotacheck */
469         int                      cl_qchk_stat; /* quotacheck stat of the peer */
470
471         /* sequence manager */
472         struct lu_client_seq    *cl_seq;
473
474         atomic_t                 cl_resends; /* resend count */
475 };
476 #define obd2cli_tgt(obd) ((char *)(obd)->u.cli.cl_target_uuid.uuid)
477
478 #define CL_NOT_QUOTACHECKED 1   /* client->cl_qchk_stat init value */
479
480 struct mgs_obd {
481         struct ptlrpc_service           *mgs_service;
482         struct vfsmount                 *mgs_vfsmnt;
483         struct super_block              *mgs_sb;
484         struct dentry                   *mgs_configs_dir;
485         struct dentry                   *mgs_fid_de;
486         struct list_head                 mgs_fs_db_list;
487         struct semaphore                 mgs_sem;
488         cfs_proc_dir_entry_t            *mgs_proc_live;
489 };
490
491 /* hah, upper limit 64 should be enough */
492 #define N_NOSQUASH_NIDS 64
493 struct rootsquash_info {
494         uid_t           rsi_uid;
495         gid_t           rsi_gid;
496         int             rsi_n_nosquash_nids;
497         lnet_nid_t      rsi_nosquash_nids[N_NOSQUASH_NIDS];
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         struct upcall_cache             *mds_rmtacl_cache;
556
557         /* root squash */
558         struct rootsquash_info          *mds_rootsquash_info;
559
560         /* for capability keys update */
561         struct lustre_capa_key          *mds_capa_keys;
562 };
563
564 /* lov objid */
565 extern __u32 mds_max_ost_index;
566
567 #define MDS_LOV_ALLOC_SIZE (CFS_PAGE_SIZE)
568
569 #define OBJID_PER_PAGE() (MDS_LOV_ALLOC_SIZE / sizeof(obd_id))
570
571 #define MDS_LOV_OBJID_PAGES_COUNT (mds_max_ost_index/OBJID_PER_PAGE())
572
573 extern int mds_lov_init_objids(struct obd_device *obd);
574 extern void mds_lov_destroy_objids(struct obd_device *obd);
575
576 struct obd_id_info {
577         __u32   idx;
578         obd_id  *data;
579 };
580
581 /* */
582
583 struct echo_obd {
584         struct obdo          eo_oa;
585         spinlock_t           eo_lock;
586         __u64                eo_lastino;
587         struct lustre_handle eo_nl_lock;
588         atomic_t             eo_prep;
589 };
590
591 struct ost_obd {
592         struct ptlrpc_service *ost_service;
593         struct ptlrpc_service *ost_create_service;
594         struct ptlrpc_service *ost_io_service;
595         struct semaphore       ost_health_sem;
596 };
597
598 struct echo_client_obd {
599         struct obd_export   *ec_exp;   /* the local connection to osc/lov */
600         spinlock_t           ec_lock;
601         struct list_head     ec_objects;
602         int                  ec_nstripes;
603         __u64                ec_unique;
604 };
605
606 struct lov_qos_oss {
607         struct obd_uuid     lqo_uuid;       /* ptlrpc's c_remote_uuid */
608         struct list_head    lqo_oss_list;   /* link to lov_qos */
609         __u32               lqo_ost_count;  /* number of osts on this oss */
610         __u64               lqo_bavail;     /* total bytes avail on OSS */
611         __u64               lqo_penalty;    /* current penalty */
612         __u64               lqo_penalty_per_obj; /* penalty decrease every obj*/
613 };
614
615 struct ltd_qos {
616         struct lov_qos_oss *ltq_oss;         /* oss info */
617         __u64               ltq_penalty;     /* current penalty */
618         __u64               ltq_penalty_per_obj; /* penalty decrease every obj*/
619         __u64               ltq_weight;      /* net weighting */
620         unsigned int        ltq_usable:1;    /* usable for striping */
621 };
622
623 struct lov_qos {
624         struct list_head    lq_oss_list;    /* list of OSSs that targets use */
625         struct rw_semaphore lq_rw_sem;
626         __u32               lq_active_oss_count;
627         __u32              *lq_rr_array;    /* round-robin optimized list */
628         unsigned int        lq_rr_size;     /* rr array size */
629         unsigned int        lq_prio_free;   /* priority for free space */
630         unsigned int        lq_dirty:1,     /* recalc qos data */
631                             lq_dirty_rr:1,  /* recalc round-robin list */
632                             lq_same_space:1,/* the ost's all have approx.
633                                                the same space avail */
634                             lq_reset:1;     /* zero current penalties */
635 };
636
637 struct lov_tgt_desc {
638         struct obd_uuid     ltd_uuid;
639         struct obd_export  *ltd_exp;
640         struct ltd_qos      ltd_qos;     /* qos info per target */
641         __u32               ltd_gen;
642         __u32               ltd_index;   /* index in lov_obd->tgts */
643         unsigned int        ltd_active:1,/* is this target up for requests */
644                             ltd_activate:1,/* should this target be activated */
645                             ltd_reap:1;  /* should this target be deleted */
646 };
647
648 struct lov_obd {
649         struct lov_desc         desc;
650         struct lov_tgt_desc   **lov_tgts;
651         struct semaphore        lov_lock;
652         struct obd_connect_data lov_ocd;
653         struct lov_qos          lov_qos;               /* qos info per lov */
654         atomic_t                lov_refcount;
655         __u32                   lov_tgt_count;         /* how many OBD's */
656         __u32                   lov_active_tgt_count;  /* how many active */
657         __u32                   lov_death_row;/* tgts scheduled to be deleted */
658         __u32                   lov_tgt_size;   /* size of tgts array */
659         __u32                   lov_start_idx;  /* start index of new inode */
660         __u32                   lov_offset_idx; /* aliasing for start_idx  */
661         int                     lov_start_count;/* reseed counter */
662         int                     lov_connects;
663 };
664
665 struct lmv_tgt_desc {
666         struct obd_uuid         ltd_uuid;
667         struct obd_export      *ltd_exp;
668         int                     ltd_active;   /* is this target up for requests */
669         int                     ltd_idx;
670         struct semaphore        ltd_fid_sem;
671 };
672
673 struct lmv_obd {
674         int                     refcount;
675         struct lu_client_fld    lmv_fld;
676         spinlock_t              lmv_lock;
677         struct lmv_desc         desc;
678         struct obd_uuid         cluuid;
679         struct obd_export       *exp;
680
681         int                     connected;
682         int                     max_easize;
683         int                     max_def_easize;
684         int                     max_cookiesize;
685         int                     server_timeout;
686         struct semaphore        init_sem;
687
688         struct lmv_tgt_desc     *tgts;
689         int                     tgts_size;
690
691         struct obd_connect_data *datas;
692         int                     datas_size;
693
694         struct obd_connect_data conn_data;
695 };
696
697 struct niobuf_local {
698         __u64 offset;
699         __u32 len;
700         __u32 flags;
701         cfs_page_t    *page;
702         cfs_dentry_t  *dentry;
703         int lnb_grant_used;
704         int rc;
705 };
706
707 #define LUSTRE_FLD_NAME         "fld"
708 #define LUSTRE_SEQ_NAME         "seq"
709
710 #define LUSTRE_CMM_NAME         "cmm"
711 #define LUSTRE_MDD_NAME         "mdd"
712 #define LUSTRE_OSD_NAME         "osd"
713 #define LUSTRE_LMV_NAME         "lmv"
714 #define LUSTRE_CMM_MDC_NAME     "cmm-mdc"
715
716 /* obd device type names */
717  /* FIXME all the references to LUSTRE_MDS_NAME should be swapped with LUSTRE_MDT_NAME */
718 #define LUSTRE_MDS_NAME         "mds"
719 #define LUSTRE_MDT_NAME         "mdt"
720 #define LUSTRE_MDC_NAME         "mdc"
721 #define LUSTRE_OSS_NAME         "ost"       /* FIXME change name to oss */
722 #define LUSTRE_OST_NAME         "obdfilter" /* FIXME change name to ost */
723 #define LUSTRE_OSC_NAME         "osc"
724 #define LUSTRE_LOV_NAME         "lov"
725 #define LUSTRE_MGS_NAME         "mgs"
726 #define LUSTRE_MGC_NAME         "mgc"
727
728 #define LUSTRE_CACHEOBD_NAME    "cobd"
729 #define LUSTRE_ECHO_NAME        "obdecho"
730 #define LUSTRE_ECHO_CLIENT_NAME "echo_client"
731
732 /* Constant obd names (post-rename) */
733 #define LUSTRE_MDS_OBDNAME "MDS"
734 #define LUSTRE_OSS_OBDNAME "OSS"
735 #define LUSTRE_MGS_OBDNAME "MGS"
736 #define LUSTRE_MGC_OBDNAME "MGC"
737
738 /* Don't conflict with on-wire flags OBD_BRW_WRITE, etc */
739 #define N_LOCAL_TEMP_PAGE 0x10000000
740
741 struct obd_trans_info {
742         __u64                    oti_transno;
743         __u64                    oti_xid;
744         /* Only used on the server side for tracking acks. */
745         struct oti_req_ack_lock {
746                 struct lustre_handle lock;
747                 __u32                mode;
748         }                        oti_ack_locks[4];
749         void                    *oti_handle;
750         struct llog_cookie       oti_onecookie;
751         struct llog_cookie      *oti_logcookies;
752         int                      oti_numcookies;
753
754         /* initial thread handling transaction */
755         int                      oti_thread_id;
756         __u32                    oti_conn_cnt;
757 };
758
759 static inline void oti_init(struct obd_trans_info *oti,
760                             struct ptlrpc_request *req)
761 {
762         if (oti == NULL)
763                 return;
764         memset(oti, 0, sizeof *oti);
765
766         if (req == NULL)
767                 return;
768
769         oti->oti_xid = req->rq_xid;
770
771         if (req->rq_repmsg && req->rq_reqmsg != 0)
772                 oti->oti_transno = lustre_msg_get_transno(req->rq_repmsg);
773         oti->oti_thread_id = req->rq_svc_thread ? req->rq_svc_thread->t_id : -1;
774         oti->oti_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
775 }
776
777 static inline void oti_alloc_cookies(struct obd_trans_info *oti,int num_cookies)
778 {
779         if (!oti)
780                 return;
781
782         if (num_cookies == 1)
783                 oti->oti_logcookies = &oti->oti_onecookie;
784         else
785                 OBD_ALLOC(oti->oti_logcookies,
786                           num_cookies * sizeof(oti->oti_onecookie));
787
788         oti->oti_numcookies = num_cookies;
789 }
790
791 static inline void oti_free_cookies(struct obd_trans_info *oti)
792 {
793         if (!oti || !oti->oti_logcookies)
794                 return;
795
796         if (oti->oti_logcookies == &oti->oti_onecookie)
797                 LASSERT(oti->oti_numcookies == 1);
798         else
799                 OBD_FREE(oti->oti_logcookies,
800                          oti->oti_numcookies * sizeof(oti->oti_onecookie));
801         oti->oti_logcookies = NULL;
802         oti->oti_numcookies = 0;
803 }
804
805 /*
806  * Events signalled through obd_notify() upcall-chain.
807  */
808 enum obd_notify_event {
809         /* Device activated */
810         OBD_NOTIFY_ACTIVE,
811         /* Device deactivated */
812         OBD_NOTIFY_INACTIVE,
813         /* Device disconnected */
814         OBD_NOTIFY_DISCON,
815         /* Connect data for import were changed */
816         OBD_NOTIFY_OCD,
817         /* Sync request */
818         OBD_NOTIFY_SYNC_NONBLOCK,
819         OBD_NOTIFY_SYNC,
820         /* Configuration event */
821         OBD_NOTIFY_CONFIG
822 };
823
824 /* bit-mask flags for config events */
825 enum config_flags {
826         CONFIG_LOG = 0x1,  /* finished processing config log */
827         CONFIG_SYNC = 0x2  /* mdt synced 1 ost */
828 };
829
830 /*
831  * Data structure used to pass obd_notify()-event to non-obd listeners (llite
832  * and liblustre being main examples).
833  */
834 struct obd_notify_upcall {
835         int (*onu_upcall)(struct obd_device *host, struct obd_device *watched,
836                           enum obd_notify_event ev, void *owner);
837         /* Opaque datum supplied by upper layer listener */
838         void *onu_owner;
839 };
840
841 struct target_recovery_data {
842         svc_handler_t     trd_recovery_handler;
843         pid_t             trd_processing_task;
844         struct completion trd_starting;
845         struct completion trd_finishing;
846 };
847
848 /* corresponds to one of the obd's */
849 #define MAX_OBD_NAME 128
850 #define OBD_DEVICE_MAGIC        0XAB5CD6EF
851 struct obd_device {
852         struct obd_type        *obd_type;
853         __u32                   obd_magic;
854
855         /* common and UUID name of this device */
856         char                    obd_name[MAX_OBD_NAME];
857         struct obd_uuid         obd_uuid;
858
859         struct lu_device       *obd_lu_dev;
860
861         int                     obd_minor;
862         unsigned int obd_attached:1,      /* finished attach */
863                      obd_set_up:1,        /* finished setup */
864                      obd_recovering:1,    /* there are recoverable clients */
865                      obd_abort_recovery:1,/* somebody ioctl'ed us to abort */
866                      obd_replayable:1,    /* recovery is enabled; inform clients */
867                      obd_no_transno:1,    /* no committed-transno notification */
868                      obd_no_recov:1,      /* fail instead of retry messages */
869                      obd_req_replaying:1, /* replaying requests */
870                      obd_stopping:1,      /* started cleanup */
871                      obd_starting:1,      /* started setup */
872                      obd_force:1,         /* cleanup with > 0 obd refcount */
873                      obd_fail:1,          /* cleanup with failover */
874                      obd_async_recov:1,   /* allow asyncronous orphan cleanup */
875                      obd_no_conn:1,       /* deny new connections */
876                      obd_inactive:1;      /* device active/inactive
877                                            * (for /proc/status only!!) */
878         /* uuid-export hash body */
879         struct lustre_class_hash_body *obd_uuid_hash_body;
880         /* nid-export hash body */
881         struct lustre_class_hash_body *obd_nid_hash_body; 
882         atomic_t obd_refcount;
883         cfs_waitq_t             obd_refcount_waitq;
884         struct list_head        obd_exports;
885         int                     obd_num_exports;
886         struct ldlm_namespace  *obd_namespace;
887         struct ptlrpc_client    obd_ldlm_client; /* XXX OST/MDS only */
888         /* a spinlock is OK for what we do now, may need a semaphore later */
889         spinlock_t              obd_dev_lock;
890         struct semaphore        obd_dev_sem;
891         __u64                   obd_last_committed;
892         struct fsfilt_operations *obd_fsops;
893         spinlock_t              obd_osfs_lock;
894         struct obd_statfs       obd_osfs;       /* locked by obd_osfs_lock */
895         __u64                   obd_osfs_age;
896         struct lvfs_run_ctxt    obd_lvfs_ctxt;
897         struct llog_ctxt        *obd_llog_ctxt[LLOG_MAX_CTXTS];
898         struct obd_device       *obd_observer;
899         struct obd_notify_upcall obd_upcall;
900         struct obd_export       *obd_self_export;
901         /* list of exports in LRU order, for ping evictor, with obd_dev_lock */
902         struct list_head        obd_exports_timed;
903         time_t                  obd_eviction_timer; /* for ping evictor */
904
905         /* XXX encapsulate all this recovery data into one struct */
906         svc_handler_t                    obd_recovery_handler;
907         pid_t                            obd_processing_task;
908         
909         int                              obd_max_recoverable_clients;
910         int                              obd_connected_clients;
911         int                              obd_recoverable_clients;
912         spinlock_t                       obd_processing_task_lock; /* BH lock (timer) */
913         __u64                            obd_next_recovery_transno;
914         int                              obd_replayed_requests;
915         int                              obd_requests_queued_for_recovery;
916         cfs_waitq_t                      obd_next_transno_waitq;
917         struct list_head                 obd_uncommitted_replies;
918         spinlock_t                       obd_uncommitted_replies_lock;
919         cfs_timer_t                      obd_recovery_timer;
920         time_t                           obd_recovery_start;
921         time_t                           obd_recovery_end;
922         
923         /* new recovery stuff from CMD2 */
924         struct target_recovery_data      obd_recovery_data;
925         int                              obd_replayed_locks;
926         atomic_t                         obd_req_replay_clients;
927         atomic_t                         obd_lock_replay_clients;
928         struct list_head                 obd_req_replay_queue;
929         struct list_head                 obd_lock_replay_queue;
930         struct list_head                 obd_final_req_queue;
931         int                              obd_recovery_stage;
932
933         union {
934                 struct obd_device_target obt;
935                 struct filter_obd filter;
936                 struct mds_obd mds;
937                 struct client_obd cli;
938                 struct ost_obd ost;
939                 struct echo_client_obd echo_client;
940                 struct echo_obd echo;
941                 struct lov_obd lov;
942                 struct lmv_obd lmv;
943                 struct mgs_obd mgs;
944         } u;
945         /* Fields used by LProcFS */
946         unsigned int           obd_cntr_base;
947         struct lprocfs_stats  *obd_stats;
948
949         unsigned int           md_cntr_base;
950         struct lprocfs_stats  *md_stats;
951
952         cfs_proc_dir_entry_t  *obd_proc_entry;
953         cfs_proc_dir_entry_t  *obd_proc_exports;
954         cfs_proc_dir_entry_t  *obd_svc_procroot;
955         struct lprocfs_stats  *obd_svc_stats;
956         struct semaphore       obd_proc_exp_sem;
957         atomic_t               obd_evict_inprogress;
958         cfs_waitq_t            obd_evict_inprogress_waitq;
959 };
960
961 #define OBD_OPT_FORCE           0x0001
962 #define OBD_OPT_FAILOVER        0x0002
963
964 #define OBD_LLOG_FL_SENDNOW     0x0001
965
966 enum obd_cleanup_stage {
967 /* Special case hack for MDS LOVs */
968         OBD_CLEANUP_EARLY,
969 /* Precleanup stage 1, we must make sure all exports (other than the
970    self-export) get destroyed. */
971         OBD_CLEANUP_EXPORTS,
972 /* Precleanup stage 2,  do other type-specific cleanup requiring the
973    self-export. */
974         OBD_CLEANUP_SELF_EXP,
975 /* FIXME we should eliminate the "precleanup" function and make them stages
976    of the "cleanup" function. */
977         OBD_CLEANUP_OBD,
978 };
979
980 /* get/set_info keys */
981 #define KEY_READ_ONLY           "read-only"
982 #define KEY_MDS_CONN            "mds_conn"
983 #define KEY_NEXT_ID             "next_id"
984 #define KEY_LOVDESC             "lovdesc"
985 #define KEY_INIT_RECOV          "initial_recov"
986 #define KEY_INIT_RECOV_BACKUP   "init_recov_bk"
987 #define KEY_FLUSH_CTX           "flush_ctx"
988 #define KEY_CAPA_KEY            "capa_key"
989 #define KEY_CONN_DATA           "conn_data"
990 #define KEY_MAX_EASIZE          "max_easize"
991 #define KEY_REVIMP_UPD          "revimp_update"
992 #define KEY_LOV_IDX             "lov_idx"
993 #define KEY_LAST_ID             "last_id"
994
995 struct lu_context;
996
997 struct md_op_data {
998         struct lu_fid           op_fid1; /* operation fid1 (usualy parent) */
999         struct lu_fid           op_fid2; /* operation fid2 (usualy child) */
1000         struct lu_fid           op_fid3; /* 2 extra fids to find conflicting */
1001         struct lu_fid           op_fid4; /* to the operation locks. */
1002         mdsno_t                 op_mds;  /* what mds server open will go to */
1003         struct lustre_handle    op_handle;
1004         __u64                   op_mod_time;
1005         const char             *op_name;
1006         int                     op_namelen;
1007         __u32                   op_mode;
1008         struct lmv_stripe_md   *op_mea1;
1009         struct lmv_stripe_md   *op_mea2;
1010         __u32                   op_suppgids[2];
1011         __u32                   op_fsuid;
1012         __u32                   op_fsgid;
1013         __u32                   op_cap;
1014         void                   *op_data;
1015
1016         /* iattr fields and blocks. */
1017         struct iattr            op_attr;
1018 #ifdef __KERNEL__
1019 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
1020         unsigned int            op_attr_flags;
1021 #endif
1022 #endif
1023         loff_t                  op_attr_blocks;
1024
1025         /* Size-on-MDS epoch and flags. */
1026         __u64                   op_ioepoch;
1027         __u32                   op_flags;
1028
1029         /* Capa fields */
1030         struct obd_capa        *op_capa1;
1031         struct obd_capa        *op_capa2;
1032
1033         /* Various operation flags. */
1034         __u32                   op_bias;
1035
1036         /* Operation type */
1037         __u32                   op_opc;
1038 };
1039
1040 struct obd_ops {
1041         struct module *o_owner;
1042         int (*o_iocontrol)(unsigned int cmd, struct obd_export *exp, int len,
1043                            void *karg, void *uarg);
1044         int (*o_get_info)(struct obd_export *, __u32 keylen, void *key,
1045                           __u32 *vallen, void *val);
1046         int (*o_set_info_async)(struct obd_export *, __u32 keylen, void *key,
1047                                 __u32 vallen, void *val,
1048                                 struct ptlrpc_request_set *set);
1049         int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
1050         int (*o_detach)(struct obd_device *dev);
1051         int (*o_setup) (struct obd_device *dev, struct lustre_cfg *cfg);
1052         int (*o_precleanup)(struct obd_device *dev,
1053                             enum obd_cleanup_stage cleanup_stage);
1054         int (*o_cleanup)(struct obd_device *dev);
1055         int (*o_process_config)(struct obd_device *dev, obd_count len,
1056                                 void *data);
1057         int (*o_postrecov)(struct obd_device *dev);
1058         int (*o_add_conn)(struct obd_import *imp, struct obd_uuid *uuid,
1059                           int priority);
1060         int (*o_del_conn)(struct obd_import *imp, struct obd_uuid *uuid);
1061         /* connect to the target device with given connection
1062          * data. @ocd->ocd_connect_flags is modified to reflect flags actually
1063          * granted by the target, which are guaranteed to be a subset of flags
1064          * asked for. If @ocd == NULL, use default parameters. */
1065         int (*o_connect)(const struct lu_env *env,
1066                          struct lustre_handle *conn, struct obd_device *src,
1067                          struct obd_uuid *cluuid, struct obd_connect_data *ocd);
1068         int (*o_reconnect)(struct obd_export *exp, struct obd_device *src,
1069                            struct obd_uuid *cluuid,
1070                            struct obd_connect_data *ocd);
1071         int (*o_disconnect)(struct obd_export *exp);
1072
1073         /* Initialize/finalize fids infrastructure. */
1074         int (*o_fid_init)(struct obd_export *exp);
1075         int (*o_fid_fini)(struct obd_export *exp);
1076
1077         /* Allocate new fid according to passed @hint. */
1078         int (*o_fid_alloc)(struct obd_export *exp, struct lu_fid *fid,
1079                            struct md_op_data *op_data);
1080
1081         /* 
1082          * Object with @fid is getting deleted, we may want to do something
1083          * about this.
1084          */
1085         int (*o_fid_delete)(struct obd_export *exp, const struct lu_fid *fid);
1086
1087         int (*o_statfs)(struct obd_device *obd, struct obd_statfs *osfs,
1088                         __u64 max_age);
1089         int (*o_statfs_async)(struct obd_device *obd, struct obd_info *oinfo,
1090                               __u64 max_age, struct ptlrpc_request_set *set);
1091         int (*o_packmd)(struct obd_export *exp, struct lov_mds_md **disk_tgt,
1092                         struct lov_stripe_md *mem_src);
1093         int (*o_unpackmd)(struct obd_export *exp,struct lov_stripe_md **mem_tgt,
1094                           struct lov_mds_md *disk_src, int disk_len);
1095         int (*o_checkmd)(struct obd_export *exp, struct obd_export *md_exp,
1096                          struct lov_stripe_md *mem_tgt);
1097         int (*o_preallocate)(struct lustre_handle *, obd_count *req,
1098                              obd_id *ids);
1099         /* FIXME: add fid capability support for create & destroy! */
1100         int (*o_precreate)(struct obd_export *exp, int need_create);
1101         int (*o_create)(struct obd_export *exp,  struct obdo *oa,
1102                         struct lov_stripe_md **ea, struct obd_trans_info *oti);
1103         int (*o_destroy)(struct obd_export *exp, struct obdo *oa,
1104                          struct lov_stripe_md *ea, struct obd_trans_info *oti,
1105                          struct obd_export *md_exp);
1106         int (*o_setattr)(struct obd_export *exp, struct obd_info *oinfo,
1107                          struct obd_trans_info *oti);
1108         int (*o_setattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1109                                struct obd_trans_info *oti,
1110                                struct ptlrpc_request_set *rqset);
1111         int (*o_getattr)(struct obd_export *exp, struct obd_info *oinfo);
1112         int (*o_getattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1113                                struct ptlrpc_request_set *set);
1114         int (*o_brw)(int rw, struct obd_export *exp, struct obd_info *oinfo,
1115                      obd_count oa_bufs, struct brw_page *pgarr,
1116                      struct obd_trans_info *oti);
1117         int (*o_brw_async)(int rw, struct obd_export *exp,
1118                            struct obd_info *oinfo, obd_count oa_bufs,
1119                            struct brw_page *pgarr, struct obd_trans_info *oti,
1120                            struct ptlrpc_request_set *);
1121         int (*o_prep_async_page)(struct obd_export *exp,
1122                                  struct lov_stripe_md *lsm,
1123                                  struct lov_oinfo *loi,
1124                                  cfs_page_t *page, obd_off offset,
1125                                  struct obd_async_page_ops *ops, void *data,
1126                                  void **res);
1127         int (*o_queue_async_io)(struct obd_export *exp,
1128                                 struct lov_stripe_md *lsm,
1129                                 struct lov_oinfo *loi, void *cookie,
1130                                 int cmd, obd_off off, int count,
1131                                 obd_flag brw_flags, obd_flag async_flags);
1132         int (*o_queue_group_io)(struct obd_export *exp,
1133                                 struct lov_stripe_md *lsm,
1134                                 struct lov_oinfo *loi,
1135                                 struct obd_io_group *oig,
1136                                 void *cookie, int cmd, obd_off off, int count,
1137                                 obd_flag brw_flags, obd_flag async_flags);
1138         int (*o_trigger_group_io)(struct obd_export *exp,
1139                                   struct lov_stripe_md *lsm,
1140                                   struct lov_oinfo *loi,
1141                                   struct obd_io_group *oig);
1142         int (*o_set_async_flags)(struct obd_export *exp,
1143                                 struct lov_stripe_md *lsm,
1144                                 struct lov_oinfo *loi, void *cookie,
1145                                 obd_flag async_flags);
1146         int (*o_teardown_async_page)(struct obd_export *exp,
1147                                      struct lov_stripe_md *lsm,
1148                                      struct lov_oinfo *loi, void *cookie);
1149         int (*o_merge_lvb)(struct obd_export *exp, struct lov_stripe_md *lsm,
1150                            struct ost_lvb *lvb, int kms_only);
1151         int (*o_adjust_kms)(struct obd_export *exp, struct lov_stripe_md *lsm,
1152                             obd_off size, int shrink);
1153         int (*o_punch)(struct obd_export *exp, struct obd_info *oinfo,
1154                        struct obd_trans_info *oti,
1155                        struct ptlrpc_request_set *rqset);
1156         int (*o_sync)(struct obd_export *exp, struct obdo *oa,
1157                       struct lov_stripe_md *ea, obd_size start, obd_size end,
1158                       void *capa);
1159         int (*o_migrate)(struct lustre_handle *conn, struct lov_stripe_md *dst,
1160                          struct lov_stripe_md *src, obd_size start,
1161                          obd_size end, struct obd_trans_info *oti);
1162         int (*o_copy)(struct lustre_handle *dstconn, struct lov_stripe_md *dst,
1163                       struct lustre_handle *srconn, struct lov_stripe_md *src,
1164                       obd_size start, obd_size end, struct obd_trans_info *);
1165         int (*o_iterate)(struct lustre_handle *conn,
1166                          int (*)(obd_id, obd_gr, void *),
1167                          obd_id *startid, obd_gr group, void *data);
1168         int (*o_preprw)(int cmd, struct obd_export *exp, struct obdo *oa,
1169                         int objcount, struct obd_ioobj *obj,
1170                         int niocount, struct niobuf_remote *remote,
1171                         struct niobuf_local *local, struct obd_trans_info *oti,
1172                         struct lustre_capa *capa);
1173         int (*o_commitrw)(int cmd, struct obd_export *exp, struct obdo *oa,
1174                           int objcount, struct obd_ioobj *obj,
1175                           int niocount, struct niobuf_local *local,
1176                           struct obd_trans_info *oti, int rc);
1177         int (*o_enqueue)(struct obd_export *, struct obd_info *oinfo,
1178                          struct ldlm_enqueue_info *einfo,
1179                          struct ptlrpc_request_set *rqset);
1180         int (*o_match)(struct obd_export *, struct lov_stripe_md *, __u32 type,
1181                        ldlm_policy_data_t *, __u32 mode, int *flags, void *data,
1182                        struct lustre_handle *lockh);
1183         int (*o_change_cbdata)(struct obd_export *, struct lov_stripe_md *,
1184                                ldlm_iterator_t it, void *data);
1185         int (*o_cancel)(struct obd_export *, struct lov_stripe_md *md,
1186                         __u32 mode, struct lustre_handle *);
1187         int (*o_cancel_unused)(struct obd_export *, struct lov_stripe_md *,
1188                                int flags, void *opaque);
1189         int (*o_join_lru)(struct obd_export *, struct lov_stripe_md *,
1190                          int join);
1191         int (*o_init_export)(struct obd_export *exp);
1192         int (*o_destroy_export)(struct obd_export *exp);
1193         int (*o_extent_calc)(struct obd_export *, struct lov_stripe_md *,
1194                              int cmd, obd_off *);
1195
1196         /* llog related obd_methods */
1197         int (*o_llog_init)(struct obd_device *obd, struct obd_llogs *llog,
1198                            struct obd_device *disk_obd, int count,
1199                            struct llog_catid *logid, struct obd_uuid *uuid);
1200         int (*o_llog_finish)(struct obd_device *obd, int count);
1201         int (*o_llog_connect)(struct obd_export *, struct llogd_conn_body *);
1202
1203         /* metadata-only methods */
1204         int (*o_pin)(struct obd_export *, const struct lu_fid *fid,
1205                      struct obd_capa *, struct obd_client_handle *, int flag);
1206         int (*o_unpin)(struct obd_export *, struct obd_client_handle *, int);
1207
1208         int (*o_import_event)(struct obd_device *, struct obd_import *,
1209                               enum obd_import_event);
1210
1211         int (*o_notify)(struct obd_device *obd, struct obd_device *watched,
1212                         enum obd_notify_event ev, void *data);
1213
1214         int (*o_health_check)(struct obd_device *);
1215
1216         /* quota methods */
1217         int (*o_quotacheck)(struct obd_export *, struct obd_quotactl *);
1218         int (*o_quotactl)(struct obd_export *, struct obd_quotactl *);
1219
1220         int (*o_ping)(struct obd_export *exp);
1221         /*
1222          * NOTE: If adding ops, add another LPROCFS_OBD_OP_INIT() line
1223          * to lprocfs_alloc_obd_stats() in obdclass/lprocfs_status.c.
1224          * Also, add a wrapper function in include/linux/obd_class.h. */
1225 };
1226
1227 /* TODO: lmv_stripe_md should contain mds capabilities for all slave fids */
1228 struct lmv_stripe_md {
1229         __u32         mea_magic;
1230         __u32         mea_count;
1231         __u32         mea_master;
1232         __u32         mea_padding;
1233         struct lu_fid mea_ids[0];
1234 };
1235
1236 enum {
1237         LUSTRE_OPC_MKDIR    = (1 << 0),
1238         LUSTRE_OPC_SYMLINK  = (1 << 1),
1239         LUSTRE_OPC_MKNOD    = (1 << 2),
1240         LUSTRE_OPC_CREATE   = (1 << 3),
1241         LUSTRE_OPC_ANY      = (1 << 4)
1242 };
1243
1244 /* lmv structures */
1245 #define MEA_MAGIC_LAST_CHAR      0xb2221ca1
1246 #define MEA_MAGIC_ALL_CHARS      0xb222a11c
1247 #define MEA_MAGIC_HASH_SEGMENT   0xb222a11b
1248
1249 #define MAX_HASH_SIZE            0x7fffffffUL
1250 #define MAX_HASH_HIGHEST_BIT     0x10000000
1251
1252 struct lustre_md {
1253         struct mdt_body         *body;
1254         struct lov_stripe_md    *lsm;
1255         struct lmv_stripe_md    *mea;
1256 #ifdef CONFIG_FS_POSIX_ACL
1257         struct posix_acl        *posix_acl;
1258 #endif
1259         struct mdt_remote_perm  *remote_perm;
1260         struct obd_capa         *mds_capa;
1261         struct obd_capa         *oss_capa;
1262 };
1263
1264 struct md_open_data {
1265         struct obd_client_handle *mod_och;
1266         struct list_head          mod_replay_list;
1267 };
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, 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,
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                                int, 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 *, struct ptlrpc_request **);
1352
1353         /*
1354          * NOTE: If adding ops, add another LPROCFS_MD_OP_INIT() line to
1355          * lprocfs_alloc_md_stats() in obdclass/lprocfs_status.c. Also, add a
1356          * wrapper function in include/linux/obd_class.h.
1357          */
1358 };
1359
1360 struct lsm_operations {
1361         void (*lsm_free)(struct lov_stripe_md *);
1362         int (*lsm_destroy)(struct lov_stripe_md *, struct obdo *oa,
1363                            struct obd_export *md_exp);
1364         void (*lsm_stripe_by_index)(struct lov_stripe_md *, int *, obd_off *,
1365                                      unsigned long *);
1366         void (*lsm_stripe_by_offset)(struct lov_stripe_md *, int *, obd_off *,
1367                                      unsigned long *);
1368         obd_off (*lsm_stripe_offset_by_index)(struct lov_stripe_md *, int);
1369         obd_off (*lsm_stripe_offset_by_offset)(struct lov_stripe_md *, obd_off);
1370         int (*lsm_stripe_index_by_offset)(struct lov_stripe_md *, obd_off);
1371         int (*lsm_revalidate) (struct lov_stripe_md *, struct obd_device *obd);
1372         int (*lsm_lmm_verify) (struct lov_mds_md *lmm, int lmm_bytes,
1373                                int *stripe_count);
1374         int (*lsm_unpackmd) (struct lov_obd *lov, struct lov_stripe_md *lsm,
1375                              struct lov_mds_md *lmm);
1376 };
1377
1378 extern struct lsm_operations lsm_plain_ops;
1379 extern struct lsm_operations lsm_join_ops;
1380 static inline struct lsm_operations *lsm_op_find(int magic)
1381 {
1382         switch(magic) {
1383         case LOV_MAGIC:
1384                return &lsm_plain_ops;
1385         case LOV_MAGIC_JOIN:
1386                return &lsm_join_ops;
1387         default:
1388                CERROR("Cannot recognize lsm_magic %d\n", magic);
1389                return NULL;
1390         }
1391 }
1392
1393 int lvfs_check_io_health(struct obd_device *obd, struct file *file);
1394
1395 /* Requests for obd_extent_calc() */
1396 #define OBD_CALC_STRIPE_START   1
1397 #define OBD_CALC_STRIPE_END     2
1398
1399 static inline void obd_transno_commit_cb(struct obd_device *obd, __u64 transno,
1400                                          int error)
1401 {
1402         if (error) {
1403                 CERROR("%s: transno "LPD64" commit error: %d\n",
1404                        obd->obd_name, transno, error);
1405                 return;
1406         }
1407         CDEBUG(D_HA, "%s: transno "LPD64" committed\n",
1408                obd->obd_name, transno);
1409         if (transno > obd->obd_last_committed) {
1410                 obd->obd_last_committed = transno;
1411                 ptlrpc_commit_replies (obd);
1412         }
1413 }
1414
1415 static inline void init_obd_quota_ops(quota_interface_t *interface,
1416                                       struct obd_ops *obd_ops)
1417 {
1418         if (!interface)
1419                 return;
1420
1421         LASSERT(obd_ops);
1422         obd_ops->o_quotacheck = QUOTA_OP(interface, check);
1423         obd_ops->o_quotactl = QUOTA_OP(interface, ctl);
1424 }
1425
1426 static inline __u64 oinfo_mdsno(struct obd_info *oinfo)
1427 {
1428         return oinfo->oi_oa->o_gr - FILTER_GROUP_MDS0;
1429 }
1430
1431 static inline struct lustre_capa *oinfo_capa(struct obd_info *oinfo)
1432 {
1433         return oinfo->oi_capa;
1434 }
1435
1436 #endif /* __OBD_H */