Whamcloud - gitweb
Branch b1_8
[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_lib.h>
63 #include <lustre/lustre_idl.h>
64 #include <lustre_export.h>
65 #include <lustre_quota.h>
66 #include <class_hash.h>
67
68 #include <libcfs/bitmap.h>
69
70
71 #define MAX_OBD_DEVICES 8192
72
73 /* this is really local to the OSC */
74 struct loi_oap_pages {
75         struct list_head        lop_pending;
76         struct list_head        lop_urgent;
77         struct list_head        lop_pending_group;
78         int                     lop_num_pending;
79 };
80
81 struct osc_async_rc {
82         int     ar_rc;
83         int     ar_force_sync;
84         __u64   ar_min_xid;
85 };
86
87 struct lov_oinfo {                 /* per-stripe data structure */
88         __u64 loi_id;              /* object ID on the target OST */
89         __u64 loi_gr;              /* object group on the target OST */
90         int loi_ost_idx;           /* OST stripe index in lov_tgt_desc->tgts */
91         int loi_ost_gen;           /* generation of this loi_ost_idx */
92
93         /* used by the osc to keep track of what objects to build into rpcs */
94         struct loi_oap_pages loi_read_lop;
95         struct loi_oap_pages loi_write_lop;
96         struct list_head loi_ready_item;
97         struct list_head loi_hp_ready_item;
98         struct list_head loi_write_item;
99         struct list_head loi_read_item;
100
101         unsigned long loi_kms_valid:1;
102         __u64 loi_kms;             /* known minimum size */
103         struct ost_lvb loi_lvb;
104         struct osc_async_rc     loi_ar;
105 };
106
107 static inline void loi_init(struct lov_oinfo *loi)
108 {
109         CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending);
110         CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_urgent);
111         CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending_group);
112         CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending);
113         CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_urgent);
114         CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending_group);
115         CFS_INIT_LIST_HEAD(&loi->loi_ready_item);
116         CFS_INIT_LIST_HEAD(&loi->loi_hp_ready_item);
117         CFS_INIT_LIST_HEAD(&loi->loi_write_item);
118         CFS_INIT_LIST_HEAD(&loi->loi_read_item);
119 }
120
121 /*extent array item for describing the joined file extent info*/
122 struct lov_extent {
123         __u64 le_start;            /* extent start */
124         __u64 le_len;              /* extent length */
125         int   le_loi_idx;          /* extent #1 loi's index in lsm loi array */
126         int   le_stripe_count;     /* extent stripe count*/
127 };
128
129 /*Lov array info for describing joined file array EA info*/
130 struct lov_array_info {
131         struct llog_logid    lai_array_id;    /* MDS med llog object id */
132         unsigned             lai_ext_count; /* number of extent count */
133         struct lov_extent    *lai_ext_array; /* extent desc array */
134 };
135
136 struct lov_stripe_md {
137         spinlock_t       lsm_lock;
138         void            *lsm_lock_owner; /* debugging */
139
140         struct {
141                 /* Public members. */
142                 __u64 lw_object_id;        /* lov object id */
143                 __u64 lw_object_gr;        /* lov object group */
144                 __u64 lw_maxbytes;         /* maximum possible file size */
145
146                 /* LOV-private members start here -- only for use in lov/. */
147                 __u32 lw_magic;
148                 __u32 lw_stripe_size;      /* size of the stripe */
149                 __u32 lw_pattern;          /* striping pattern (RAID0, RAID1) */
150                 unsigned lw_stripe_count;  /* number of objects being striped over */
151                 char  lw_pool_name[LOV_MAXPOOLNAME]; /* pool name */
152         } lsm_wire;
153
154         struct lov_array_info *lsm_array; /*Only for joined file array info*/
155         struct lov_oinfo *lsm_oinfo[0];
156 };
157
158 #define lsm_object_id    lsm_wire.lw_object_id
159 #define lsm_object_gr    lsm_wire.lw_object_gr
160 #define lsm_maxbytes     lsm_wire.lw_maxbytes
161 #define lsm_magic        lsm_wire.lw_magic
162 #define lsm_stripe_size  lsm_wire.lw_stripe_size
163 #define lsm_pattern      lsm_wire.lw_pattern
164 #define lsm_stripe_count lsm_wire.lw_stripe_count
165 #define lsm_pool_name    lsm_wire.lw_pool_name
166
167 struct obd_info;
168
169 typedef int (*obd_enqueue_update_f)(struct obd_info *oinfo, int rc);
170
171 /* obd info for a particular level (lov, osc). */
172 struct obd_info {
173         /* Lock policy. It keeps an extent which is specific for a particular
174          * OSC. (e.g. lov_prep_enqueue_set initialises extent of the policy,
175          * and osc_enqueue passes it into ldlm_lock_match & ldlm_cli_enqueue. */
176         ldlm_policy_data_t      oi_policy;
177         /* Flags used for set request specific flags:
178            - while lock handling, the flags obtained on the enqueue
179            request are set here.
180            - while stats, the flags used for control delay/resend.
181          */
182         int                     oi_flags;
183         /* Lock handle specific for every OSC lock. */
184         struct lustre_handle   *oi_lockh;
185         /* lsm data specific for every OSC. */
186         struct lov_stripe_md   *oi_md;
187         /* obdo data specific for every OSC, if needed at all. */
188         struct obdo            *oi_oa;
189         /* statfs data specific for every OSC, if needed at all. */
190         struct obd_statfs      *oi_osfs;
191         /* An update callback which is called to update some data on upper
192          * level. E.g. it is used for update lsm->lsm_oinfo at every recieved
193          * request in osc level for enqueue requests. It is also possible to
194          * update some caller data from LOV layer if needed. */
195         obd_enqueue_update_f    oi_cb_up;
196 };
197
198 /* compare all relevant fields. */
199 static inline int lov_stripe_md_cmp(struct lov_stripe_md *m1,
200                                     struct lov_stripe_md *m2)
201 {
202         /*
203          * ->lsm_wire contains padding, but it should be zeroed out during
204          * allocation.
205          */
206         return memcmp(&m1->lsm_wire, &m2->lsm_wire, sizeof m1->lsm_wire);
207 }
208
209 void lov_stripe_lock(struct lov_stripe_md *md);
210 void lov_stripe_unlock(struct lov_stripe_md *md);
211
212 struct obd_type {
213         struct list_head typ_chain;
214         struct obd_ops *typ_ops;
215         cfs_proc_dir_entry_t *typ_procroot;
216         char *typ_name;
217         int  typ_refcnt;
218         spinlock_t obd_type_lock;
219 };
220
221 struct brw_page {
222         obd_off  off;
223         cfs_page_t *pg;
224         int count;
225         obd_flag flag;
226 };
227
228 enum async_flags {
229         ASYNC_READY = 0x1, /* ap_make_ready will not be called before this
230                               page is added to an rpc */
231         ASYNC_URGENT = 0x2, /* page must be put into an RPC before return */
232         ASYNC_COUNT_STABLE = 0x4, /* ap_refresh_count will not be called
233                                      to give the caller a chance to update
234                                      or cancel the size of the io */
235         ASYNC_GROUP_SYNC = 0x8,  /* ap_completion will not be called, instead
236                                     the page is accounted for in the
237                                     obd_io_group given to
238                                     obd_queue_group_io */
239         ASYNC_HP = 0x10,
240 };
241
242 struct obd_async_page_ops {
243         int  (*ap_make_ready)(void *data, int cmd);
244         int  (*ap_refresh_count)(void *data, int cmd);
245         void (*ap_fill_obdo)(void *data, int cmd, struct obdo *oa);
246         void (*ap_update_obdo)(void *data, int cmd, struct obdo *oa,
247                                obd_valid valid);
248         int  (*ap_completion)(void *data, int cmd, struct obdo *oa, int rc);
249 };
250
251 /* the `oig' is passed down from a caller of obd rw methods.  the callee
252  * records enough state such that the caller can sleep on the oig and
253  * be woken when all the callees have finished their work */
254 struct obd_io_group {
255         spinlock_t      oig_lock;
256         atomic_t        oig_refcount;
257         int             oig_pending;
258         int             oig_rc;
259         struct list_head oig_occ_list;
260         cfs_waitq_t     oig_waitq;
261 };
262
263 /* the oig callback context lets the callee of obd rw methods register
264  * for callbacks from the caller. */
265 struct oig_callback_context {
266         struct list_head occ_oig_item;
267         /* called when the caller has received a signal while sleeping.
268          * callees of this method are encouraged to abort their state
269          * in the oig.  This may be called multiple times. */
270         void (*occ_interrupted)(struct oig_callback_context *occ);
271         unsigned long interrupted:1;
272 };
273
274 /* Individual type definitions */
275
276 struct ost_server_data;
277
278 /* hold common fields for "target" device */
279 struct obd_device_target {
280         struct super_block       *obt_sb;
281         /** last_rcvd file */
282         struct file              *obt_rcvd_filp;
283         /** server data in last_rcvd file */
284         struct lr_server_data    *obt_lsd;
285         /** Lock protecting client bitmap */
286         spinlock_t                obt_client_bitmap_lock;
287         /** Bitmap of known clients */
288         unsigned long            *obt_client_bitmap;
289         /** Server last transaction number */
290         __u64                     obt_last_transno;
291         /** Lock protecting last transaction number */
292         spinlock_t                obt_translock;
293         /** Number of mounts */
294         __u64                     obt_mount_count;
295         atomic_t                  obt_quotachecking;
296         struct lustre_quota_ctxt  obt_qctxt;
297         lustre_quota_version_t    obt_qfmt;
298         __u32                     obt_stale_export_age;
299         spinlock_t                obt_trans_table_lock;
300         struct vfsmount          *obt_vfsmnt;
301         struct file              *obt_health_check_filp;
302 };
303
304 typedef void (*obd_pin_extent_cb)(void *data);
305 typedef int (*obd_page_removal_cb_t)(void *data, int discard);
306 typedef int (*obd_lock_cancel_cb)(struct ldlm_lock *,struct ldlm_lock_desc *,
307                                    void *, int);
308
309 #define FILTER_GROUP_LLOG 1
310 #define FILTER_GROUP_ECHO 2
311
312 struct filter_ext {
313         __u64                fe_start;
314         __u64                fe_end;
315 };
316
317 struct filter_obd {
318         /* NB this field MUST be first */
319         struct obd_device_target fo_obt;
320         const char          *fo_fstype;
321         cfs_dentry_t        *fo_dentry_O;
322         cfs_dentry_t       **fo_dentry_O_groups;
323         cfs_dentry_t       **fo_dentry_O_sub;
324         spinlock_t           fo_objidlock;      /* protect fo_lastobjid */
325
326         int                  fo_destroy_in_progress;
327         struct semaphore     fo_create_lock;
328
329         struct list_head     fo_export_list;
330         int                  fo_subdir_count;
331
332         obd_size             fo_tot_dirty;      /* protected by obd_osfs_lock */
333         obd_size             fo_tot_granted;    /* all values in bytes */
334         obd_size             fo_tot_pending;
335         int                  fo_tot_granted_clients;
336
337         obd_size             fo_readcache_max_filesize;
338         unsigned long        fo_read_cache:1,         /* read-only cache */
339                              fo_writethrough_cache:1, /* writetrhough cache */
340                              fo_syncjournal:1,      /* sync journal on writes */
341                              fo_raid_degraded:1;    /* RAID device degraded */
342
343         struct obd_import   *fo_mdc_imp;
344         struct obd_uuid      fo_mdc_uuid;
345         struct lustre_handle fo_mdc_conn;
346         struct file        **fo_last_objid_files;
347         __u64               *fo_last_objids; /* last created objid for groups,
348                                               * protected by fo_objidlock */
349
350         struct semaphore     fo_alloc_lock;
351
352         atomic_t             fo_r_in_flight;
353         atomic_t             fo_w_in_flight;
354
355         /*
356          * per-filter pool of kiobuf's allocated by filter_common_setup() and
357          * torn down by filter_cleanup(). Contains OST_NUM_THREADS elements of
358          * which ->fo_iobuf_count were allocated.
359          *
360          * This pool contains kiobuf used by
361          * filter_{prep,commit}rw_{read,write}() and is shared by all OST
362          * threads.
363          *
364          * Locking: none, each OST thread uses only one element, determined by
365          * its "ordinal number", ->t_id.
366          */
367         struct filter_iobuf    **fo_iobuf_pool;
368         int                      fo_iobuf_count;
369
370         struct brw_stats         fo_filter_stats;
371         struct lustre_quota_ctxt fo_quota_ctxt;
372         spinlock_t               fo_quotacheck_lock;
373         atomic_t                 fo_quotachecking;
374
375         int                      fo_fmd_max_num; /* per exp filter_mod_data */
376         int                      fo_fmd_max_age; /* jiffies to fmd expiry */
377         struct llog_commit_master *fo_lcm;
378 };
379
380 #define fo_translock            fo_obt.obt_translock
381 #define fo_rcvd_filp            fo_obt.obt_rcvd_filp
382 #define fo_fsd                  fo_obt.obt_lsd
383 #define fo_last_rcvd_slots      fo_obt.obt_client_bitmap
384 #define fo_mount_count          fo_obt.obt_mount_count
385 #define fo_vfsmnt               fo_obt.obt_vfsmnt
386
387 #define OSC_MAX_RIF_DEFAULT       8
388 #define OSC_MAX_RIF_MAX         256
389 #define OSC_MAX_DIRTY_DEFAULT  (OSC_MAX_RIF_DEFAULT * 4)
390 #define OSC_MAX_DIRTY_MB_MAX   2048     /* arbitrary, but < MAX_LONG bytes */
391 #define OSC_DEFAULT_RESENDS      10
392
393 #define MDC_MAX_RIF_DEFAULT       8
394 #define MDC_MAX_RIF_MAX         512
395
396
397 struct mdc_rpc_lock;
398 struct obd_import;
399 struct lustre_cache;
400
401 struct timeout_item {
402         enum timeout_event ti_event;
403         cfs_time_t         ti_timeout;
404         timeout_cb_t       ti_cb;
405         void              *ti_cb_data;
406         struct list_head   ti_obd_list;
407         struct list_head   ti_chain;
408 };
409
410 struct client_obd {
411         struct rw_semaphore      cl_sem;
412         struct obd_uuid          cl_target_uuid;
413         struct obd_import       *cl_import; /* ptlrpc connection state */
414         int                      cl_conn_count;
415         /* max_mds_easize is purely a performance thing so we don't have to
416          * call obd_size_diskmd() all the time. */
417         unsigned                 cl_default_mds_easize;
418         unsigned                 cl_max_mds_easize;
419         unsigned                 cl_max_mds_cookiesize;
420
421         //struct llog_canceld_ctxt *cl_llcd; /* it's included by obd_llog_ctxt */
422         void                    *cl_llcd_offset;
423
424         /* the grant values are protected by loi_list_lock below */
425         long                     cl_dirty;         /* all _dirty_ in bytes */
426         long                     cl_dirty_max;     /* allowed w/o rpc */
427         long                     cl_avail_grant;   /* bytes of credit for ost */
428         long                     cl_lost_grant;    /* lost credits (trunc) */
429         struct list_head         cl_cache_waiters; /* waiting for cache/grant */
430         cfs_time_t               cl_next_shrink_grant;   /* jiffies */
431         struct list_head         cl_grant_shrink_list;  /* Timeout event list */
432         struct semaphore         cl_grant_sem;   /*grant shrink list semaphore*/
433         int                      cl_grant_shrink_interval; /* seconds */
434
435         /* keep track of objects that have lois that contain pages which
436          * have been queued for async brw.  this lock also protects the
437          * lists of osc_client_pages that hang off of the loi */
438         /*
439          * ->cl_loi_list_lock protects consistency of
440          * ->cl_loi_{ready,read,write}_list. ->ap_make_ready() and
441          * ->ap_completion() call-backs are executed under this lock. As we
442          * cannot guarantee that these call-backs never block on all platforms
443          * (as a matter of fact they do block on Mac OS X), type of
444          * ->cl_loi_list_lock is platform dependent: it's a spin-lock on Linux
445          * and blocking mutex on Mac OS X. (Alternative is to make this lock
446          * blocking everywhere, but we don't want to slow down fast-path of
447          * our main platform.)
448          *
449          * Exact type of ->cl_loi_list_lock is defined in arch/obd.h together
450          * with client_obd_list_{un,}lock() and
451          * client_obd_list_lock_{init,done}() functions.
452          */
453         client_obd_lock_t        cl_loi_list_lock;
454         struct list_head         cl_loi_ready_list;
455         struct list_head         cl_loi_hp_ready_list;
456         struct list_head         cl_loi_write_list;
457         struct list_head         cl_loi_read_list;
458         int                      cl_r_in_flight;
459         int                      cl_w_in_flight;
460         /* just a sum of the loi/lop pending numbers to be exported by /proc */
461         int                      cl_pending_w_pages;
462         int                      cl_pending_r_pages;
463         int                      cl_max_pages_per_rpc;
464         int                      cl_max_rpcs_in_flight;
465         struct obd_histogram     cl_read_rpc_hist;
466         struct obd_histogram     cl_write_rpc_hist;
467         struct obd_histogram     cl_read_page_hist;
468         struct obd_histogram     cl_write_page_hist;
469         struct obd_histogram     cl_read_offset_hist;
470         struct obd_histogram     cl_write_offset_hist;
471
472         /* number of in flight destroy rpcs is limited to max_rpcs_in_flight */
473         atomic_t                 cl_destroy_in_flight;
474         cfs_waitq_t              cl_destroy_waitq;
475
476         struct mdc_rpc_lock     *cl_rpc_lock;
477         struct mdc_rpc_lock     *cl_setattr_lock;
478         struct mdc_rpc_lock     *cl_close_lock;
479         struct osc_creator       cl_oscc;
480
481         /* mgc datastruct */
482         struct semaphore         cl_mgc_sem;
483         struct vfsmount         *cl_mgc_vfsmnt;
484         struct dentry           *cl_mgc_configs_dir;
485         atomic_t                 cl_mgc_refcount;
486         struct obd_export       *cl_mgc_mgsexp;
487
488         /* checksumming for data sent over the network */
489         unsigned int             cl_checksum:1; /* 0 = disabled, 1 = enabled */
490         /* supported checksum types that are worked out at connect time */
491         __u32                    cl_supp_cksum_types;
492         /* checksum algorithm to be used */
493         cksum_type_t             cl_cksum_type;
494
495         /* also protected by the poorly named _loi_list_lock lock above */
496         struct osc_async_rc      cl_ar;
497
498         /* used by quotacheck */
499         int                      cl_qchk_stat; /* quotacheck stat of the peer */
500
501         /* sequence manager */
502         struct lu_client_seq    *cl_seq;
503
504         atomic_t                 cl_resends; /* resend count */
505         /* Cache of triples */
506         struct lustre_cache     *cl_cache;
507         obd_lock_cancel_cb       cl_ext_lock_cancel_cb;
508 };
509 #define obd2cli_tgt(obd) ((char *)(obd)->u.cli.cl_target_uuid.uuid)
510
511 #define CL_NOT_QUOTACHECKED 1   /* client->cl_qchk_stat init value */
512
513 struct mgs_obd {
514         struct ptlrpc_service           *mgs_service;
515         struct vfsmount                 *mgs_vfsmnt;
516         struct super_block              *mgs_sb;
517         struct dentry                   *mgs_configs_dir;
518         struct dentry                   *mgs_fid_de;
519         struct list_head                 mgs_fs_db_list;
520         struct semaphore                 mgs_sem;
521         cfs_proc_dir_entry_t            *mgs_proc_live;
522 };
523
524 struct mds_obd {
525         /* NB this field MUST be first */
526         struct obd_device_target         mds_obt;
527         struct ptlrpc_service           *mds_service;
528         struct ptlrpc_service           *mds_setattr_service;
529         struct ptlrpc_service           *mds_readpage_service;
530         cfs_dentry_t                    *mds_fid_de;
531         int                              mds_max_mdsize;
532         int                              mds_max_cookiesize;
533         __u64                            mds_io_epoch;
534         unsigned long                    mds_atime_diff;
535         struct semaphore                 mds_epoch_sem;
536         struct ll_fid                    mds_rootfid;
537         cfs_dentry_t                    *mds_pending_dir;
538         cfs_dentry_t                    *mds_logs_dir;
539         cfs_dentry_t                    *mds_objects_dir;
540         struct llog_handle              *mds_cfg_llh;
541 //        struct llog_handle              *mds_catalog;
542         struct obd_device               *mds_osc_obd; /* XXX lov_obd */
543         struct obd_uuid                  mds_lov_uuid;
544         char                            *mds_profile;
545         struct obd_export               *mds_osc_exp; /* XXX lov_exp */
546         struct lov_desc                  mds_lov_desc;
547
548         /* mark pages dirty for write. */
549         bitmap_t                         *mds_lov_page_dirty;
550         /* array for store pages with obd_id */
551         void                            **mds_lov_page_array;
552         /* file for store objid */
553         struct file                     *mds_lov_objid_filp;
554         __u32                            mds_lov_objid_count;
555         __u32                            mds_lov_objid_max_index;
556         __u32                            mds_lov_objid_lastpage;
557         __u32                            mds_lov_objid_lastidx;
558
559         struct upcall_cache             *mds_group_hash;
560
561         struct lustre_quota_info         mds_quota_info;
562         struct semaphore                 mds_qonoff_sem;
563         struct semaphore                 mds_health_sem;
564         unsigned long                    mds_fl_user_xattr:1,
565                                          mds_fl_acl:1,
566                                          mds_fl_cfglog:1,
567                                          mds_fl_synced:1,
568                                          mds_fl_target:1, /* mds have one or
569                                                            * more targets */
570                                          mds_evict_ost_nids:1;
571
572         uid_t                            mds_squash_uid;
573         gid_t                            mds_squash_gid;
574         lnet_nid_t                       mds_nosquash_nid;
575         /* do we need permission sync */
576         unsigned int                     mds_sync_permission;
577 };
578
579 #define mds_transno_lock         mds_obt.obt_translock
580 #define mds_rcvd_filp            mds_obt.obt_rcvd_filp
581 #define mds_server_data          mds_obt.obt_lsd
582 #define mds_client_bitmap        mds_obt.obt_client_bitmap
583 #define mds_mount_count          mds_obt.obt_mount_count
584 #define mds_last_transno         mds_obt.obt_last_transno
585 #define mds_vfsmnt               mds_obt.obt_vfsmnt
586
587 /* lov objid */
588 #define mds_max_ost_index  (0xFFFF)
589 #define MDS_LOV_ALLOC_SIZE (CFS_PAGE_SIZE)
590
591 #define OBJID_PER_PAGE() (MDS_LOV_ALLOC_SIZE / sizeof(obd_id))
592
593 #define MDS_LOV_OBJID_PAGES_COUNT (mds_max_ost_index/OBJID_PER_PAGE())
594
595 extern int mds_lov_init_objids(struct obd_device *obd);
596 extern void mds_lov_destroy_objids(struct obd_device *obd);
597
598 struct obd_id_info {
599         __u32   idx;
600         obd_id  *data;
601 };
602
603 /* */
604
605 struct echo_obd {
606         struct obdo          eo_oa;
607         spinlock_t           eo_lock;
608         __u64                eo_lastino;
609         struct lustre_handle eo_nl_lock;
610         atomic_t             eo_prep;
611 };
612
613 struct ost_obd {
614         struct ptlrpc_service *ost_service;
615         struct ptlrpc_service *ost_create_service;
616         struct ptlrpc_service *ost_io_service;
617         struct semaphore       ost_health_sem;
618         int                    ost_sync_on_lock_cancel;
619 };
620
621 struct echo_client_obd {
622         struct obd_export   *ec_exp;   /* the local connection to osc/lov */
623         spinlock_t           ec_lock;
624         struct list_head     ec_objects;
625         int                  ec_nstripes;
626         __u64                ec_unique;
627 };
628
629 struct lov_qos_oss {
630         struct obd_uuid     lqo_uuid;       /* ptlrpc's c_remote_uuid */
631         struct list_head    lqo_oss_list;   /* link to lov_qos */
632         __u64               lqo_bavail;     /* total bytes avail on OSS */
633         __u64               lqo_penalty;    /* current penalty */
634         __u64               lqo_penalty_per_obj; /* penalty decrease every obj*/
635         time_t              lqo_used;       /* last used time, seconds */
636         __u32               lqo_ost_count;  /* number of osts on this oss */
637 };
638
639 struct ltd_qos {
640         struct lov_qos_oss *ltq_oss;         /* oss info */
641         __u64               ltq_penalty;     /* current penalty */
642         __u64               ltq_penalty_per_obj; /* penalty decrease every obj*/
643         __u64               ltq_weight;      /* net weighting */
644         time_t              ltq_used;        /* last used time, seconds */
645         unsigned int        ltq_usable:1;    /* usable for striping */
646 };
647
648 /* Generic subset of OSTs */
649 struct ost_pool {
650         __u32              *op_array;        /* array of index of
651                                                 lov_obd->lov_tgts */
652         unsigned int        op_count;        /* number of OSTs in the array */
653         unsigned int        op_size;         /* allocated size of lp_array */
654         struct rw_semaphore op_rw_sem;       /* to protect ost_pool use */
655 };
656
657 /* Round-robin allocator data */
658 struct lov_qos_rr {
659         __u32               lqr_start_idx;   /* start index of new inode */
660         __u32               lqr_offset_idx;  /* aliasing for start_idx  */
661         int                 lqr_start_count; /* reseed counter */
662         struct ost_pool     lqr_pool;        /* round-robin optimized list */
663         unsigned long       lqr_dirty:1;     /* recalc round-robin list */
664 };
665
666 struct lov_statfs_data {
667         struct obd_info   lsd_oi;
668         struct obd_statfs lsd_statfs;
669 };
670 /* Stripe placement optimization */
671 struct lov_qos {
672         struct list_head    lq_oss_list;    /* list of OSSs that targets use */
673         struct rw_semaphore lq_rw_sem;
674         __u32               lq_active_oss_count;
675         unsigned int        lq_prio_free;   /* priority for free space */
676         unsigned int        lq_threshold_rr;/* priority for rr */
677         struct lov_qos_rr   lq_rr;          /* round robin qos data */
678         unsigned long       lq_dirty:1,     /* recalc qos data */
679                             lq_same_space:1,/* the ost's all have approx.
680                                                the same space avail */
681                             lq_reset:1,     /* zero current penalties */
682                             lq_statfs_in_progress:1; /* statfs op in progress */
683         /* qos statfs data */
684         struct lov_statfs_data *lq_statfs_data;
685         cfs_waitq_t         lq_statfs_waitq; /* waitqueue to notify statfs
686                                               * requests completion */
687 };
688
689 struct lov_tgt_desc {
690         struct list_head    ltd_kill;
691         struct obd_uuid     ltd_uuid;
692         struct obd_export  *ltd_exp;
693         struct ltd_qos      ltd_qos;     /* qos info per target */
694         __u32               ltd_gen;
695         __u32               ltd_index;   /* index in lov_obd->tgts */
696         unsigned long       ltd_active:1,/* is this target up for requests */
697                             ltd_activate:1,/* should this target be activated */
698                             ltd_reap:1;  /* should this target be deleted */
699 };
700
701 /* Pool metadata */
702 #define pool_tgt_size(_p)   _p->pool_obds.op_size
703 #define pool_tgt_count(_p)  _p->pool_obds.op_count
704 #define pool_tgt_array(_p)  _p->pool_obds.op_array
705 #define pool_tgt_rw_sem(_p) _p->pool_obds.op_rw_sem
706 #define pool_tgt(_p, _i)    _p->pool_lov->lov_tgts[_p->pool_obds.op_array[_i]]
707
708 struct pool_desc {
709         char                  pool_name[LOV_MAXPOOLNAME + 1]; /* name of pool */
710         struct ost_pool       pool_obds;              /* pool members */
711         atomic_t              pool_refcount;          /* pool ref. counter */
712         struct lov_qos_rr     pool_rr;                /* round robin qos */
713         struct hlist_node     pool_hash;              /* access by poolname */
714         struct list_head      pool_list;              /* serial access */
715         cfs_proc_dir_entry_t *pool_proc_entry;        /* file in /proc */
716         struct lov_obd       *pool_lov;               /* lov obd to which this
717                                                          pool belong */
718 };
719
720 struct lov_obd {
721         struct lov_desc         desc;
722         struct lov_tgt_desc   **lov_tgts;              /* sparse array */
723         struct ost_pool         lov_packed;            /* all OSTs in a packed
724                                                           array */
725         struct semaphore        lov_lock;
726         struct obd_connect_data lov_ocd;
727         struct lov_qos          lov_qos;               /* qos info per lov */
728         atomic_t                lov_refcount;
729         __u32                   lov_tgt_count;         /* how many OBD's */
730         __u32                   lov_active_tgt_count;  /* how many active */
731         __u32                   lov_death_row;/* tgts scheduled to be deleted */
732         __u32                   lov_tgt_size;   /* size of tgts array */
733         int                     lov_connects;
734         obd_page_removal_cb_t   lov_page_removal_cb;
735         obd_pin_extent_cb       lov_page_pin_cb;
736         obd_lock_cancel_cb      lov_lock_cancel_cb;
737         int                     lov_pool_count;
738         lustre_hash_t          *lov_pools_hash_body; /* used for key access */
739         struct list_head        lov_pool_list; /* used for sequential access */
740         cfs_proc_dir_entry_t   *lov_pool_proc_entry;
741 };
742
743 struct niobuf_local {
744         __u64 offset;
745         __u32 len;
746         __u32 flags;
747         cfs_page_t    *page;
748         cfs_dentry_t  *dentry;
749         int lnb_grant_used;
750         int rc;
751 };
752
753 /* obd device type names */
754  /* FIXME all the references to LUSTRE_MDS_NAME should be swapped with LUSTRE_MDT_NAME */
755 #define LUSTRE_MDS_NAME         "mds"
756 #define LUSTRE_MDT_NAME         "mdt"
757 #define LUSTRE_MDC_NAME         "mdc"
758 #define LUSTRE_OSS_NAME         "ost" /*FIXME change name to oss*/
759 #define LUSTRE_OST_NAME         "obdfilter" /* FIXME change name to ost*/
760 #define LUSTRE_OSC_NAME         "osc"
761 #define LUSTRE_LOV_NAME         "lov"
762 #define LUSTRE_MGS_NAME         "mgs"
763 #define LUSTRE_MGC_NAME         "mgc"
764
765 #define LUSTRE_CACHEOBD_NAME    "cobd"
766 #define LUSTRE_ECHO_NAME        "obdecho"
767 #define LUSTRE_ECHO_CLIENT_NAME "echo_client"
768
769 /* Constant obd names (post-rename) */
770 #define LUSTRE_MDS_OBDNAME "MDS"
771 #define LUSTRE_OSS_OBDNAME "OSS"
772 #define LUSTRE_MGS_OBDNAME "MGS"
773 #define LUSTRE_MGC_OBDNAME "MGC"
774
775 /* Don't conflict with on-wire flags OBD_BRW_WRITE, etc */
776 #define N_LOCAL_TEMP_PAGE 0x10000000
777
778 struct obd_trans_info {
779         __u64                    oti_transno;
780         __u64                    oti_xid;
781         /* Only used on the server side for tracking acks. */
782         struct oti_req_ack_lock {
783                 struct lustre_handle lock;
784                 __u32                mode;
785         }                        oti_ack_locks[4];
786         void                    *oti_handle;
787         struct llog_cookie       oti_onecookie;
788         struct llog_cookie      *oti_logcookies;
789         int                      oti_numcookies;
790
791         /* initial thread handling transaction */
792         struct ptlrpc_thread *   oti_thread;
793         __u32                    oti_conn_cnt;
794         /* VBR: versions */
795         __u64                    oti_pre_version;
796
797         struct obd_uuid         *oti_ost_uuid;
798 };
799
800 static inline void oti_init(struct obd_trans_info *oti,
801                             struct ptlrpc_request *req)
802 {
803         if (oti == NULL)
804                 return;
805         memset(oti, 0, sizeof(*oti));
806
807         if (req == NULL)
808                 return;
809
810         oti->oti_xid = req->rq_xid;
811         /* VBR: take versions from request */
812         if (req->rq_reqmsg != NULL &&
813             lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
814                 __u64 *pre_version = lustre_msg_get_versions(req->rq_reqmsg);
815                 /* b1.6 interoperability check. pre_versions may be NULL */
816                 oti->oti_pre_version = pre_version ? pre_version[0] : 0;
817                 oti->oti_transno = lustre_msg_get_transno(req->rq_reqmsg);
818         }
819
820         /* called from mds_create_objects */
821         if (req->rq_repmsg != NULL)
822                 oti->oti_transno = lustre_msg_get_transno(req->rq_repmsg);
823         oti->oti_thread = req->rq_svc_thread;
824         if (req->rq_reqmsg != NULL)
825                 oti->oti_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
826 }
827
828 static inline void oti_alloc_cookies(struct obd_trans_info *oti,int num_cookies)
829 {
830         if (!oti)
831                 return;
832
833         if (num_cookies == 1)
834                 oti->oti_logcookies = &oti->oti_onecookie;
835         else
836                 OBD_ALLOC(oti->oti_logcookies,
837                           num_cookies * sizeof(oti->oti_onecookie));
838
839         oti->oti_numcookies = num_cookies;
840 }
841
842 static inline void oti_free_cookies(struct obd_trans_info *oti)
843 {
844         if (!oti || !oti->oti_logcookies)
845                 return;
846
847         if (oti->oti_logcookies == &oti->oti_onecookie)
848                 LASSERT(oti->oti_numcookies == 1);
849         else
850                 OBD_FREE(oti->oti_logcookies,
851                          oti->oti_numcookies * sizeof(oti->oti_onecookie));
852         oti->oti_logcookies = NULL;
853         oti->oti_numcookies = 0;
854 }
855
856 /* llog contexts */
857 enum llog_ctxt_id {
858         LLOG_CONFIG_ORIG_CTXT  =  0,
859         LLOG_CONFIG_REPL_CTXT  =  1,
860         LLOG_MDS_OST_ORIG_CTXT =  2,
861         LLOG_MDS_OST_REPL_CTXT =  3,
862         LLOG_SIZE_ORIG_CTXT    =  4,
863         LLOG_SIZE_REPL_CTXT    =  5,
864         LLOG_MD_ORIG_CTXT      =  6,
865         LLOG_MD_REPL_CTXT      =  7,
866         LLOG_RD1_ORIG_CTXT     =  8,
867         LLOG_RD1_REPL_CTXT     =  9,
868         LLOG_TEST_ORIG_CTXT    = 10,
869         LLOG_TEST_REPL_CTXT    = 11,
870         LLOG_LOVEA_ORIG_CTXT   = 12,
871         LLOG_LOVEA_REPL_CTXT   = 13,
872         LLOG_MAX_CTXTS
873 };
874
875 /*
876  * Events signalled through obd_notify() upcall-chain.
877  */
878 enum obd_notify_event {
879         /* DEVICE connect start */
880         OBD_NOTIFY_CONNECT,
881         /* Device activated */
882         OBD_NOTIFY_ACTIVE,
883         /* Device deactivated */
884         OBD_NOTIFY_INACTIVE,
885         /* Connect data for import were changed */
886         OBD_NOTIFY_OCD,
887         /* Sync request */
888         OBD_NOTIFY_SYNC_NONBLOCK,
889         OBD_NOTIFY_SYNC,
890         /* Configuration event */
891         OBD_NOTIFY_CONFIG
892 };
893
894 #define CONFIG_LOG      0x1  /* finished processing config log */
895 #define CONFIG_SYNC     0x2  /* mdt synced 1 ost */
896 #define CONFIG_TARGET   0x4  /* one target is added */
897
898 /*
899  * Data structure used to pass obd_notify()-event to non-obd listeners (llite
900  * and liblustre being main examples).
901  */
902 struct obd_notify_upcall {
903         int (*onu_upcall)(struct obd_device *host, struct obd_device *watched,
904                           enum obd_notify_event ev, void *owner);
905         /* Opaque datum supplied by upper layer listener */
906         void *onu_owner;
907 };
908
909 /* corresponds to one of the obd's */
910 #define MAX_OBD_NAME 128
911 #define OBD_DEVICE_MAGIC        0XAB5CD6EF
912 #define OBD_DEV_BY_DEVNAME      0xffffd0de
913 struct obd_device {
914         struct obd_type        *obd_type;
915         __u32                   obd_magic;
916
917         /* common and UUID name of this device */
918         char                    obd_name[MAX_OBD_NAME];
919         struct obd_uuid         obd_uuid;
920
921         int                     obd_minor;
922         unsigned long obd_attached:1,      /* finished attach */
923                       obd_set_up:1,        /* finished setup */
924                       obd_recovering:1,    /* there are recoverable clients */
925                       obd_abort_recovery:1,/* recovery expired */
926                       obd_version_recov:1, /* obd uses version checking */
927                       obd_replayable:1,    /* recovery is enabled; inform clients */
928                       obd_no_transno:1,    /* no committed-transno notification */
929                       obd_no_recov:1,      /* fail instead of retry messages */
930                       obd_stopping:1,      /* started cleanup */
931                       obd_starting:1,      /* started setup */
932                       obd_force:1,         /* cleanup with > 0 obd refcount */
933                       obd_fail:1,          /* cleanup with failover */
934                       obd_async_recov:1,   /* allow asyncronous orphan cleanup */
935                       obd_no_conn:1,       /* deny new connections */
936                       obd_inactive:1;      /* device active/inactive
937                                             * (for /proc/status only!!) */
938         /* uuid-export hash body */
939         struct lustre_hash     *obd_uuid_hash;
940         /* nid-export hash body */
941         struct lustre_hash     *obd_nid_hash;
942         /* nid stats body */
943         struct lustre_hash     *obd_nid_stats_hash;
944         struct list_head        obd_nid_stats;
945         atomic_t                obd_refcount;
946         cfs_waitq_t             obd_refcount_waitq;
947         struct list_head        obd_exports;
948         struct list_head        obd_delayed_exports;
949         int                     obd_num_exports;
950         spinlock_t              obd_nid_lock;
951         struct ldlm_namespace  *obd_namespace;
952         struct ptlrpc_client    obd_ldlm_client; /* XXX OST/MDS only */
953         /* a spinlock is OK for what we do now, may need a semaphore later */
954         spinlock_t              obd_dev_lock;
955         struct semaphore        obd_dev_sem;
956         __u64                   obd_last_committed;
957         struct fsfilt_operations *obd_fsops;
958         spinlock_t              obd_osfs_lock;
959         struct obd_statfs       obd_osfs;       /* locked by obd_osfs_lock */
960         __u64                   obd_osfs_age;
961         struct lvfs_run_ctxt    obd_lvfs_ctxt;
962
963         struct llog_ctxt        *obd_llog_ctxt[LLOG_MAX_CTXTS];
964         struct semaphore        obd_llog_cat_process;
965         cfs_waitq_t             obd_llog_waitq;
966
967         struct obd_device       *obd_observer;
968         struct obd_notify_upcall obd_upcall;
969         struct obd_export       *obd_self_export;
970         /* list of exports in LRU order, for ping evictor, with obd_dev_lock */
971         struct list_head        obd_exports_timed;
972         time_t                  obd_eviction_timer; /* for ping evictor */
973
974         /* XXX encapsulate all this recovery data into one struct */
975         svc_handler_t                    obd_recovery_handler;
976         int                              obd_max_recoverable_clients;
977         int                              obd_connected_clients;
978         int                              obd_recoverable_clients;
979         int                              obd_stale_clients;
980         int                              obd_delayed_clients;
981         spinlock_t                       obd_processing_task_lock; /* BH lock (timer) */
982         pid_t                            obd_processing_task;
983         /* thread to handle recovery queue */
984         struct ptlrpc_thread            *obd_recovery_thread;
985         __u64                            obd_next_recovery_transno;
986         int                              obd_replayed_requests;
987         int                              obd_requests_queued_for_recovery;
988         cfs_waitq_t                      obd_next_transno_waitq;
989         cfs_timer_t                      obd_recovery_timer;
990         struct list_head                 obd_recovery_queue;
991         struct list_head                 obd_delayed_reply_queue;
992         time_t                           obd_recovery_start; /* seconds */
993         time_t                           obd_recovery_end; /* seconds, for lprocfs_status */
994 #ifdef CRAY_XT3
995         time_t                           obd_recovery_max_time; /* seconds, bz13079 */
996 #endif
997         int                              obd_recovery_timeout;
998
999         union {
1000                 struct obd_device_target obt;
1001                 struct filter_obd filter;
1002                 struct mds_obd mds;
1003                 struct client_obd cli;
1004                 struct ost_obd ost;
1005                 struct echo_client_obd echo_client;
1006                 struct echo_obd echo;
1007                 struct lov_obd lov;
1008                 struct mgs_obd mgs;
1009         } u;
1010         /* Fields used by LProcFS */
1011         cfs_proc_dir_entry_t  *obd_proc_entry;
1012         cfs_proc_dir_entry_t  *obd_proc_exports_entry;
1013         cfs_proc_dir_entry_t  *obd_svc_procroot;
1014         struct lprocfs_stats  *obd_stats;
1015         struct lprocfs_stats  *obd_svc_stats;
1016         unsigned int           obd_cntr_base;
1017         atomic_t               obd_evict_inprogress;
1018         cfs_waitq_t            obd_evict_inprogress_waitq;
1019
1020         /* Ldlm pool part. Save last calculated SLV and Limit. */
1021         rwlock_t               obd_pool_lock;
1022         int                    obd_pool_limit;
1023         __u64                  obd_pool_slv;
1024 };
1025
1026 #define OBD_LLOG_FL_SENDNOW     0x0001
1027
1028 enum obd_cleanup_stage {
1029 /* Special case hack for MDS LOVs */
1030         OBD_CLEANUP_EARLY,
1031 /* Precleanup stage 1, we must make sure all exports (other than the
1032    self-export) get destroyed. */
1033         OBD_CLEANUP_EXPORTS,
1034 /* Precleanup stage 2,  do other type-specific cleanup requiring the
1035    self-export. */
1036         OBD_CLEANUP_SELF_EXP,
1037 /* FIXME we should eliminate the "precleanup" function and make them stages
1038    of the "cleanup" function. */
1039         OBD_CLEANUP_OBD,
1040 };
1041
1042 /* get/set_info keys */
1043 #define KEY_MDS_CONN            "mds_conn"
1044 #define KEY_NEXT_ID             "next_id"
1045 #define KEY_LOVDESC             "lovdesc"
1046 #define KEY_INIT_RECOV          "initial_recov"
1047 #define KEY_INIT_RECOV_BACKUP   "init_recov_bk"
1048 #define KEY_LAST_ID             "last_id"
1049 #define KEY_LOCK_TO_STRIPE      "lock_to_stripe"
1050 #define KEY_CHECKSUM            "checksum"
1051 #define KEY_READONLY            "read-only"
1052 #define KEY_READONLY_166COMPAT  "readonly"
1053 #define KEY_UNLINKED            "unlinked"
1054 #define KEY_EVICT_BY_NID        "evict_by_nid"
1055 #define KEY_REGISTER_TARGET     "register_target"
1056 #define KEY_SET_FS              "set_fs"
1057 #define KEY_CLEAR_FS            "clear_fs"
1058 #define KEY_SET_INFO            "set_info"
1059 #define KEY_BLOCKSIZE           "blocksize"
1060 #define KEY_BLOCKSIZE_BITS      "blocksize_bits"
1061 #define KEY_MAX_EASIZE          "max_ea_size"
1062 #define KEY_FIEMAP              "fiemap"
1063 /* XXX unused */
1064 #define KEY_ASYNC               "async"
1065 #define KEY_CAPA_KEY            "capa_key"
1066 #define KEY_GRANT_SHRINK        "grant_shrink"
1067 #define KEY_OFF_RPCSIZE         "off_rpcsize"
1068
1069 struct obd_ops {
1070         struct module *o_owner;
1071         int (*o_iocontrol)(unsigned int cmd, struct obd_export *exp, int len,
1072                            void *karg, void *uarg);
1073         int (*o_get_info)(struct obd_export *, __u32 keylen, void *key,
1074                           __u32 *vallen, void *val, struct lov_stripe_md *lsm);
1075         int (*o_set_info_async)(struct obd_export *, __u32 keylen, void *key,
1076                                 __u32 vallen, void *val,
1077                                 struct ptlrpc_request_set *set);
1078         int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
1079         int (*o_detach)(struct obd_device *dev);
1080         int (*o_setup) (struct obd_device *dev, obd_count len, void *data);
1081         int (*o_precleanup)(struct obd_device *dev,
1082                             enum obd_cleanup_stage cleanup_stage);
1083         int (*o_cleanup)(struct obd_device *dev);
1084         int (*o_process_config)(struct obd_device *dev, obd_count len,
1085                                 void *data);
1086         int (*o_postrecov)(struct obd_device *dev);
1087         int (*o_add_conn)(struct obd_import *imp, struct obd_uuid *uuid,
1088                           int priority);
1089         int (*o_del_conn)(struct obd_import *imp, struct obd_uuid *uuid);
1090         /* connect to the target device with given connection
1091          * data. @ocd->ocd_connect_flags is modified to reflect flags actually
1092          * granted by the target, which are guaranteed to be a subset of flags
1093          * asked for. If @ocd == NULL, use default parameters. */
1094         int (*o_connect)(struct lustre_handle *conn, struct obd_device *src,
1095                          struct obd_uuid *cluuid, struct obd_connect_data *ocd,
1096                          void *localdata);
1097         int (*o_reconnect)(struct obd_export *exp, struct obd_device *src,
1098                            struct obd_uuid *cluuid,
1099                            struct obd_connect_data *ocd,
1100                            void *localdata);
1101         int (*o_disconnect)(struct obd_export *exp);
1102
1103         /* Initialize/finalize fids infrastructure. */
1104         int (*o_fid_init)(struct obd_export *exp);
1105         int (*o_fid_fini)(struct obd_export *exp);
1106
1107         int (*o_statfs)(struct obd_device *obd, struct obd_statfs *osfs,
1108                         __u64 max_age, __u32 flags);
1109         int (*o_statfs_async)(struct obd_device *obd, struct obd_info *oinfo,
1110                               __u64 max_age, struct ptlrpc_request_set *set);
1111         int (*o_packmd)(struct obd_export *exp, struct lov_mds_md **disk_tgt,
1112                         struct lov_stripe_md *mem_src);
1113         int (*o_unpackmd)(struct obd_export *exp,struct lov_stripe_md **mem_tgt,
1114                           struct lov_mds_md *disk_src, int disk_len);
1115         int (*o_checkmd)(struct obd_export *exp, struct obd_export *md_exp,
1116                          struct lov_stripe_md *mem_tgt);
1117         int (*o_preallocate)(struct lustre_handle *, obd_count *req,
1118                              obd_id *ids);
1119         int (*o_precreate)(struct obd_export *exp);
1120         int (*o_create)(struct obd_export *exp,  struct obdo *oa,
1121                         struct lov_stripe_md **ea, struct obd_trans_info *oti);
1122         int (*o_create_async)(struct obd_export *exp,  struct obd_info *oinfo,
1123                               struct lov_stripe_md **ea,
1124                               struct obd_trans_info *oti);
1125         int (*o_destroy)(struct obd_export *exp, struct obdo *oa,
1126                          struct lov_stripe_md *ea, struct obd_trans_info *oti,
1127                          struct obd_export *md_exp);
1128         int (*o_setattr)(struct obd_export *exp, struct obd_info *oinfo,
1129                          struct obd_trans_info *oti);
1130         int (*o_setattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1131                                struct obd_trans_info *oti,
1132                                struct ptlrpc_request_set *rqset);
1133         int (*o_getattr)(struct obd_export *exp, struct obd_info *oinfo);
1134         int (*o_getattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1135                                struct ptlrpc_request_set *set);
1136         int (*o_brw)(int rw, struct obd_export *exp, struct obd_info *oinfo,
1137                      obd_count oa_bufs, struct brw_page *pgarr,
1138                      struct obd_trans_info *oti);
1139         int (*o_brw_async)(int rw, struct obd_export *exp,
1140                            struct obd_info *oinfo, obd_count oa_bufs,
1141                            struct brw_page *pgarr, struct obd_trans_info *oti,
1142                            struct ptlrpc_request_set *, int pshift);
1143         int (*o_prep_async_page)(struct obd_export *exp,
1144                                  struct lov_stripe_md *lsm,
1145                                  struct lov_oinfo *loi,
1146                                  cfs_page_t *page, obd_off offset,
1147                                  struct obd_async_page_ops *ops, void *data,
1148                                  void **res, int flags,
1149                                  struct lustre_handle *lockh);
1150         int (*o_get_lock)(struct obd_export *exp, struct lov_stripe_md *lsm,
1151                           void **res, int rw, obd_off start, obd_off end,
1152                           struct lustre_handle *lockh, int flags);
1153         int (*o_queue_async_io)(struct obd_export *exp,
1154                                 struct lov_stripe_md *lsm,
1155                                 struct lov_oinfo *loi, void *cookie,
1156                                 int cmd, obd_off off, int count,
1157                                 obd_flag brw_flags, obd_flag async_flags);
1158         int (*o_queue_group_io)(struct obd_export *exp,
1159                                 struct lov_stripe_md *lsm,
1160                                 struct lov_oinfo *loi,
1161                                 struct obd_io_group *oig,
1162                                 void *cookie, int cmd, obd_off off, int count,
1163                                 obd_flag brw_flags, obd_flag async_flags);
1164         int (*o_trigger_group_io)(struct obd_export *exp,
1165                                   struct lov_stripe_md *lsm,
1166                                   struct lov_oinfo *loi,
1167                                   struct obd_io_group *oig);
1168         int (*o_set_async_flags)(struct obd_export *exp,
1169                                 struct lov_stripe_md *lsm,
1170                                 struct lov_oinfo *loi, void *cookie,
1171                                 obd_flag async_flags);
1172         int (*o_teardown_async_page)(struct obd_export *exp,
1173                                      struct lov_stripe_md *lsm,
1174                                      struct lov_oinfo *loi, void *cookie);
1175         int (*o_merge_lvb)(struct obd_export *exp, struct lov_stripe_md *lsm,
1176                            struct ost_lvb *lvb, int kms_only);
1177         int (*o_update_lvb)(struct obd_export *exp, struct lov_stripe_md *lsm,
1178                             struct ost_lvb *lvb, obd_flag valid);
1179         int (*o_adjust_kms)(struct obd_export *exp, struct lov_stripe_md *lsm,
1180                             obd_off size, int shrink);
1181         int (*o_punch)(struct obd_export *exp, struct obd_info *oinfo,
1182                        struct obd_trans_info *oti,
1183                        struct ptlrpc_request_set *rqset);
1184         int (*o_sync)(struct obd_export *exp, struct obd_info *oinfo,
1185                       obd_size start, obd_size end,
1186                       struct ptlrpc_request_set *rqset);
1187         int (*o_migrate)(struct lustre_handle *conn, struct lov_stripe_md *dst,
1188                          struct lov_stripe_md *src, obd_size start,
1189                          obd_size end, struct obd_trans_info *oti);
1190         int (*o_copy)(struct lustre_handle *dstconn, struct lov_stripe_md *dst,
1191                       struct lustre_handle *srconn, struct lov_stripe_md *src,
1192                       obd_size start, obd_size end, struct obd_trans_info *);
1193         int (*o_iterate)(struct lustre_handle *conn,
1194                          int (*)(obd_id, obd_gr, void *),
1195                          obd_id *startid, obd_gr group, void *data);
1196         int (*o_preprw)(int cmd, struct obd_export *exp, struct obdo *oa,
1197                         int objcount, struct obd_ioobj *obj,
1198                         struct niobuf_remote *remote, int *nr_pages,
1199                         struct niobuf_local *local,
1200                         struct obd_trans_info *oti);
1201         int (*o_commitrw)(int cmd, struct obd_export *exp, struct obdo *oa,
1202                           int objcount, struct obd_ioobj *obj,
1203                           struct niobuf_remote *remote, int pages,
1204                           struct niobuf_local *local,
1205                           struct obd_trans_info *oti, int rc);
1206         int (*o_enqueue)(struct obd_export *, struct obd_info *oinfo,
1207                          struct ldlm_enqueue_info *einfo,
1208                          struct ptlrpc_request_set *rqset);
1209         int (*o_match)(struct obd_export *, struct lov_stripe_md *, __u32 type,
1210                        ldlm_policy_data_t *, __u32 mode, int *flags, void *data,
1211                        struct lustre_handle *lockh, int *n_matches);
1212         int (*o_change_cbdata)(struct obd_export *, struct lov_stripe_md *,
1213                                ldlm_iterator_t it, void *data);
1214         int (*o_cancel)(struct obd_export *, struct lov_stripe_md *md,
1215                         __u32 mode, struct lustre_handle *, int flags,
1216                         obd_off end);
1217         int (*o_cancel_unused)(struct obd_export *, struct lov_stripe_md *,
1218                                int flags, void *opaque);
1219         int (*o_join_lru)(struct obd_export *, struct lov_stripe_md *,
1220                          int join);
1221         int (*o_init_export)(struct obd_export *exp);
1222         int (*o_destroy_export)(struct obd_export *exp);
1223         int (*o_extent_calc)(struct obd_export *, struct lov_stripe_md *,
1224                              int cmd, obd_off *);
1225
1226         /* llog related obd_methods */
1227         int (*o_llog_init)(struct obd_device *obd, struct obd_device *disk_obd,
1228                            int *idx);
1229         int (*o_llog_finish)(struct obd_device *obd, int count);
1230
1231         /* metadata-only methods */
1232         int (*o_pin)(struct obd_export *, struct ll_fid *,
1233                      struct obd_client_handle *, int flag);
1234         int (*o_unpin)(struct obd_export *, struct obd_client_handle *, int);
1235
1236         int (*o_import_event)(struct obd_device *, struct obd_import *,
1237                               enum obd_import_event);
1238
1239         int (*o_notify)(struct obd_device *obd, struct obd_device *watched,
1240                         enum obd_notify_event ev, void *data);
1241
1242         int (*o_health_check)(struct obd_device *);
1243
1244         /* quota methods */
1245         int (*o_quotacheck)(struct obd_export *, struct obd_quotactl *);
1246         int (*o_quotactl)(struct obd_export *, struct obd_quotactl *);
1247         int (*o_quota_adjust_qunit)(struct obd_export *exp,
1248                                     struct quota_adjust_qunit *oqaq,
1249                                     struct lustre_quota_ctxt *qctxt);
1250
1251
1252         int (*o_ping)(struct obd_export *exp);
1253
1254         int (*o_register_page_removal_cb)(struct obd_device *obd,
1255                                           obd_page_removal_cb_t cb,
1256                                           obd_pin_extent_cb pin_cb);
1257         int (*o_unregister_page_removal_cb)(struct obd_device *obd,
1258                                             obd_page_removal_cb_t cb);
1259         int (*o_register_lock_cancel_cb)(struct obd_device *obd,
1260                                        obd_lock_cancel_cb cb);
1261         int (*o_unregister_lock_cancel_cb)(struct obd_device *obd,
1262                                          obd_lock_cancel_cb cb);
1263         /* pools methods */
1264         int (*o_pool_new)(struct obd_device *obd, char *poolname);
1265         int (*o_pool_del)(struct obd_device *obd, char *poolname);
1266         int (*o_pool_add)(struct obd_device *obd, char *poolname,
1267                           char *ostname);
1268         int (*o_pool_rem)(struct obd_device *obd, char *poolname,
1269                           char *ostname);
1270         void (*o_getref)(struct obd_device *obd);
1271         void (*o_putref)(struct obd_device *obd);
1272
1273         /*
1274          * NOTE: If adding ops, add another LPROCFS_OBD_OP_INIT() line
1275          * to lprocfs_alloc_obd_stats() in obdclass/lprocfs_status.c.
1276          * Also, add a wrapper function in include/linux/obd_class.h. */
1277 };
1278
1279 struct lsm_operations {
1280         void (*lsm_free)(struct lov_stripe_md *);
1281         int (*lsm_destroy)(struct lov_stripe_md *, struct obdo *oa,
1282                            struct obd_export *md_exp);
1283         void (*lsm_stripe_by_index)(struct lov_stripe_md *, int *, obd_off *,
1284                                     obd_off *);
1285         void (*lsm_stripe_by_offset)(struct lov_stripe_md *, int *, obd_off *,
1286                                      obd_off *);
1287         obd_off (*lsm_stripe_offset_by_index)(struct lov_stripe_md *, int);
1288         obd_off (*lsm_stripe_offset_by_offset)(struct lov_stripe_md *, obd_off);
1289         int (*lsm_stripe_index_by_offset)(struct lov_stripe_md *, obd_off);
1290         int (*lsm_revalidate) (struct lov_stripe_md *, struct obd_device *obd);
1291         int (*lsm_lmm_verify) (struct lov_mds_md *lmm, int lmm_bytes,
1292                                int *stripe_count);
1293         int (*lsm_unpackmd) (struct lov_obd *lov, struct lov_stripe_md *lsm,
1294                              struct lov_mds_md *lmm);
1295 };
1296
1297 extern struct lsm_operations lsm_v1_ops;
1298 extern struct lsm_operations lsm_join_ops;
1299 extern struct lsm_operations lsm_v3_ops;
1300 static inline struct lsm_operations *lsm_op_find(int magic)
1301 {
1302         switch(magic) {
1303         case LOV_MAGIC_V1:
1304                return &lsm_v1_ops;
1305         case LOV_MAGIC_JOIN:
1306                return &lsm_join_ops;
1307         case LOV_MAGIC_V3:
1308                return &lsm_v3_ops;
1309         default:
1310                CERROR("Cannot recognize lsm_magic %x\n", magic);
1311                return NULL;
1312         }
1313 }
1314
1315 int lvfs_check_io_health(struct obd_device *obd, struct file *file);
1316
1317 /* Requests for obd_extent_calc() */
1318 #define OBD_CALC_STRIPE_START          0x0001
1319 #define OBD_CALC_STRIPE_END            0x0010
1320 #define OBD_CALC_STRIPE_RPC_ALIGN      0x0100
1321
1322 #define OBD_CALC_STRIPE_RPC_START_ALIGN (OBD_CALC_STRIPE_START | \
1323                                          OBD_CALC_STRIPE_RPC_ALIGN)
1324 #define OBD_CALC_STRIPE_RPC_END_ALIGN (OBD_CALC_STRIPE_START | \
1325                                        OBD_CALC_STRIPE_RPC_ALIGN)
1326
1327 static inline void obd_transno_commit_cb(struct obd_device *obd, __u64 transno,
1328                                          struct obd_export *exp, int error)
1329 {
1330         if (error) {
1331                 CERROR("%s: transno "LPU64" commit error: %d\n",
1332                        obd->obd_name, transno, error);
1333                 return;
1334         }
1335         if (exp && transno > exp->exp_last_committed) {
1336                 CDEBUG(D_INFO, "%s: transno "LPU64" committed\n",
1337                        obd->obd_name, transno);
1338                 exp->exp_last_committed = transno;
1339                 ptlrpc_commit_replies(exp);
1340         } else {
1341                 CDEBUG(D_INFO, "%s: transno "LPU64" committed\n",
1342                        obd->obd_name, transno);
1343         }
1344         if (transno > obd->obd_last_committed)
1345                 obd->obd_last_committed = transno;
1346 }
1347
1348 static inline void init_obd_quota_ops(quota_interface_t *interface,
1349                                       struct obd_ops *obd_ops)
1350 {
1351         if (!interface)
1352                 return;
1353
1354         LASSERT(obd_ops);
1355         obd_ops->o_quotacheck = QUOTA_OP(interface, check);
1356         obd_ops->o_quotactl = QUOTA_OP(interface, ctl);
1357         obd_ops->o_quota_adjust_qunit = QUOTA_OP(interface, adjust_qunit);
1358 }
1359
1360 /*
1361  * Checksums
1362  */
1363
1364 #ifdef HAVE_ADLER
1365 /* Default preferred checksum algorithm to use (if supported by the server) */
1366 #define OSC_DEFAULT_CKSUM OBD_CKSUM_ADLER
1367 /* Adler-32 is supported */
1368 #define CHECKSUM_ADLER OBD_CKSUM_ADLER
1369 #else
1370 #define OSC_DEFAULT_CKSUM OBD_CKSUM_CRC32
1371 #define CHECKSUM_ADLER 0
1372 #endif
1373
1374 #define OBD_CKSUM_ALL (OBD_CKSUM_CRC32 | CHECKSUM_ADLER)
1375
1376 /* Checksum algorithm names. Must be defined in the same order as the
1377  * OBD_CKSUM_* flags. */
1378 #define DECLARE_CKSUM_NAME char *cksum_name[] = {"crc32", "adler"}
1379
1380 #endif /* __OBD_H */