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