Whamcloud - gitweb
Land b1_2 onto HEAD (20040304_171022)
[fs/lustre-release.git] / lustre / include / linux / obd.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2001, 2002 Cluster File Systems, Inc.
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  */
9
10 #ifndef __OBD_H
11 #define __OBD_H
12
13 #define IOC_OSC_TYPE         'h'
14 #define IOC_OSC_MIN_NR       20
15 #define IOC_OSC_SET_ACTIVE   _IOWR(IOC_OSC_TYPE, 21, struct obd_device *)
16 #define IOC_OSC_MAX_NR       50
17
18 #define IOC_MDC_TYPE         'i'
19 #define IOC_MDC_MIN_NR       20
20 #define IOC_MDC_LOOKUP       _IOWR(IOC_MDC_TYPE, 20, struct obd_device *)
21 #define IOC_MDC_MAX_NR       50
22
23 #ifdef __KERNEL__
24 # include <linux/fs.h>
25 # include <linux/list.h>
26 # include <linux/sched.h> /* for struct task_struct, for current.h */
27 # include <asm/current.h> /* for smp_lock.h */
28 # include <linux/smp_lock.h>
29 # include <linux/proc_fs.h>
30 # include <linux/mount.h>
31 #endif
32
33 #include <linux/lustre_lib.h>
34 #include <linux/lustre_idl.h>
35 #include <linux/lustre_export.h>
36
37 /* this is really local to the OSC */
38 struct loi_oap_pages {
39         struct list_head        lop_pending;
40         int                     lop_num_pending;
41         struct list_head        lop_urgent;
42         struct list_head        lop_pending_group;
43 };
44
45 struct lov_oinfo {                 /* per-stripe data structure */
46         __u64 loi_id;              /* object ID on the target OST */
47         __u64 loi_gr;              /* object group on the target OST */
48         int loi_ost_idx;           /* OST stripe index in lov_tgt_desc->tgts */
49         int loi_ost_gen;           /* generation of this loi_ost_idx */
50
51         /* used by the osc to keep track of what objects to build into rpcs */
52         struct loi_oap_pages loi_read_lop;
53         struct loi_oap_pages loi_write_lop;
54         /* _cli_ is poorly named, it should be _ready_ */
55         struct list_head loi_cli_item;
56         struct list_head loi_write_item;
57
58         __u64 loi_kms; /* known minimum size */
59         __u64 loi_rss; /* recently seen size */
60         __u64 loi_mtime; /* recently seen mtime */
61 };
62
63 static inline void loi_init(struct lov_oinfo *loi)
64 {
65         INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending);
66         INIT_LIST_HEAD(&loi->loi_read_lop.lop_urgent);
67         INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending_group);
68         INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending);
69         INIT_LIST_HEAD(&loi->loi_write_lop.lop_urgent);
70         INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending_group);
71         INIT_LIST_HEAD(&loi->loi_cli_item);
72         INIT_LIST_HEAD(&loi->loi_write_item);
73 }
74
75 struct lov_stripe_md {
76         /* Public members. */
77         __u64 lsm_object_id;        /* lov object id */
78         __u64 lsm_object_gr;        /* lov object id */
79         __u64 lsm_maxbytes;         /* maximum possible file size */
80         unsigned long lsm_xfersize; /* optimal transfer size */
81
82         /* LOV-private members start here -- only for use in lov/. */
83         __u32 lsm_magic;
84         __u32 lsm_stripe_size;      /* size of the stripe */
85         __u32 lsm_pattern;          /* striping pattern (RAID0, RAID1) */
86         unsigned lsm_stripe_count;  /* number of objects being striped over */
87         struct lov_oinfo lsm_oinfo[0];
88 };
89
90 struct obd_type {
91         struct list_head typ_chain;
92         struct obd_ops *typ_ops;
93         struct proc_dir_entry *typ_procroot;
94         char *typ_name;
95         int  typ_refcnt;
96 };
97
98 struct brw_page {
99         obd_off  off;
100         struct page *pg;
101         int count;
102         obd_flag flag;
103 };
104
105 enum async_flags {
106         ASYNC_READY = 0x1, /* ap_make_ready will not be called before this
107                               page is added to an rpc */
108         ASYNC_URGENT = 0x2,
109         ASYNC_COUNT_STABLE = 0x4, /* ap_refresh_count will not be called
110                                      to give the caller a chance to update
111                                      or cancel the size of the io */
112         ASYNC_GROUP_SYNC = 0x8,  /* ap_completion will not be called, instead
113                                     the page is accounted for in the
114                                     obd_io_group given to 
115                                     obd_queue_group_io */
116 };
117
118 struct obd_async_page_ops {
119         int  (*ap_make_ready)(void *data, int cmd);
120         int  (*ap_refresh_count)(void *data, int cmd);
121         void (*ap_fill_obdo)(void *data, int cmd, struct obdo *oa);
122         void (*ap_completion)(void *data, int cmd, int rc);
123 };
124
125 /* the `oig' is passed down from a caller of obd rw methods.  the callee
126  * records enough state such that the caller can sleep on the oig and
127  * be woken when all the callees have finished their work */
128 struct obd_io_group {
129         spinlock_t      oig_lock;
130         atomic_t        oig_refcount;
131         int             oig_pending;
132         int             oig_rc;
133         struct list_head oig_occ_list;
134         wait_queue_head_t oig_waitq;
135 };
136
137 /* the oig callback context lets the callee of obd rw methods register
138  * for callbacks from the caller. */
139 struct oig_callback_context {
140         struct list_head occ_oig_item;
141         /* called when the caller has received a signal while sleeping.
142          * callees of this method are encouraged to abort their state 
143          * in the oig.  This may be called multiple times. */
144         void (*occ_interrupted)(struct oig_callback_context *occ);
145 };
146
147 /* if we find more consumers this could be generalized */
148 #define OBD_HIST_MAX 32
149 struct obd_histogram {
150         spinlock_t      oh_lock;
151         unsigned long   oh_buckets[OBD_HIST_MAX];
152 };
153
154 /* Individual type definitions */
155
156 struct ost_server_data;
157
158 struct filter_obd {
159         const char          *fo_fstype;
160         struct super_block  *fo_sb;
161         struct vfsmount     *fo_vfsmnt;
162         struct dentry       *fo_dentry_O;
163         struct dentry      **fo_dentry_O_groups;
164         struct dentry      **fo_dentry_O_sub;
165         spinlock_t           fo_objidlock; /* protect fo_lastobjid increment */
166         spinlock_t           fo_translock; /* protect fsd_last_rcvd increment */
167         struct file         *fo_rcvd_filp;
168         struct filter_server_data *fo_fsd;
169         unsigned long       *fo_last_rcvd_slots;
170         __u64                fo_mount_count;
171
172         struct file_operations *fo_fop;
173         struct inode_operations *fo_iop;
174         struct address_space_operations *fo_aops;
175
176         struct list_head     fo_export_list;
177         int                  fo_subdir_count;
178
179         obd_size             fo_tot_dirty;      /* protected by obd_osfs_lock */
180         obd_size             fo_tot_granted;    /* all values in bytes */
181         obd_size             fo_tot_pending;
182
183         obd_size             fo_readcache_max_filesize;
184
185         struct obd_import   *fo_mdc_imp;
186         struct obd_uuid      fo_mdc_uuid;
187         struct lustre_handle fo_mdc_conn;
188 #if 0
189         struct ptlrpc_client fo_mdc_client;
190 #endif
191         struct file        **fo_last_objid_files;
192         __u64               *fo_last_objids; /* last created objid for groups */
193
194         struct semaphore     fo_alloc_lock;
195
196         struct obd_histogram     fo_r_pages;
197         struct obd_histogram     fo_w_pages;
198         struct obd_histogram     fo_r_discont_pages;
199         struct obd_histogram     fo_w_discont_pages;
200         struct obd_histogram     fo_r_discont_blocks;
201         struct obd_histogram     fo_w_discont_blocks;
202 };
203
204 struct mds_server_data;
205
206 #define OSC_MAX_RIF_DEFAULT       4
207 #define OSC_MAX_RIF_MAX          32
208 #define OSC_MAX_DIRTY_DEFAULT     4
209 #define OSC_MAX_DIRTY_MB_MAX    256     /* totally arbitrary */
210
211 struct mdc_rpc_lock;
212 struct client_obd {
213         struct obd_import       *cl_import;
214         struct semaphore         cl_sem;
215         int                      cl_conn_count;
216         /* max_mds_easize is purely a performance thing so we don't have to
217          * call obd_size_wiremd() all the time. */
218         int                      cl_max_mds_easize;
219         int                      cl_max_mds_cookiesize;
220         kdev_t                   cl_sandev;
221
222         //struct llog_canceld_ctxt *cl_llcd; /* it's included by obd_llog_ctxt */
223         void                    *cl_llcd_offset;
224
225         struct obd_device       *cl_mgmtcli_obd;
226
227         /* the grant values are protected by loi_list_lock below */
228         long                     cl_dirty;         /* all _dirty_ in bytes */
229         long                     cl_dirty_max;     /* allowed w/o rpc */
230         long                     cl_avail_grant;   /* bytes of credit for ost */
231         long                     cl_lost_grant;    /* lost credits (trunc) */
232         struct list_head         cl_cache_waiters; /* waiting for cache/grant */
233
234         /* keep track of objects that have lois that contain pages which
235          * have been queued for async brw.  this lock also protects the
236          * lists of osc_client_pages that hang off of the loi */
237         spinlock_t               cl_loi_list_lock;
238         struct list_head         cl_loi_ready_list;
239         struct list_head         cl_loi_write_list;
240         int                      cl_brw_in_flight;
241         /* just a sum of the loi/lop pending numbers to be exported by /proc */
242         int                      cl_pending_w_pages;
243         int                      cl_pending_r_pages;
244         int                      cl_max_pages_per_rpc;
245         int                      cl_max_rpcs_in_flight;
246         struct obd_histogram     cl_read_rpc_hist;
247         struct obd_histogram     cl_write_rpc_hist;
248         struct obd_histogram     cl_read_page_hist;
249         struct obd_histogram     cl_write_page_hist;
250
251         struct mdc_rpc_lock     *cl_rpc_lock;
252         struct mdc_rpc_lock     *cl_setattr_lock;
253         struct osc_creator      cl_oscc;
254 };
255
256 /* Like a client, with some hangers-on.  Keep mc_client_obd first so that we
257  * can reuse the various client setup/connect functions. */
258 struct mgmtcli_obd {
259         struct client_obd        mc_client_obd; /* nested */
260         struct ptlrpc_thread    *mc_ping_thread;
261         struct obd_export       *mc_ping_exp; /* XXX single-target */
262         struct list_head         mc_registered;
263         void                    *mc_hammer;
264 };
265
266 #define mc_import mc_client_obd.cl_import
267
268 struct mds_obd {
269         struct ptlrpc_service           *mds_service;
270         struct ptlrpc_service           *mds_setattr_service;
271         struct ptlrpc_service           *mds_readpage_service;
272         struct super_block              *mds_sb;
273         struct vfsmount                 *mds_vfsmnt;
274         struct dentry                   *mds_fid_de;
275         int                              mds_max_mdsize;
276         int                              mds_max_cookiesize;
277         struct file                     *mds_rcvd_filp;
278         spinlock_t                       mds_transno_lock;
279         __u64                            mds_last_transno;
280         __u64                            mds_mount_count;
281         __u64                            mds_io_epoch;
282         struct semaphore                 mds_epoch_sem;
283         struct ll_fid                    mds_rootfid;
284         struct mds_server_data          *mds_server_data;
285         struct dentry                   *mds_pending_dir;
286         struct dentry                   *mds_logs_dir;
287         struct dentry                   *mds_objects_dir;
288         struct llog_handle              *mds_cfg_llh;
289 //        struct llog_handle              *mds_catalog;
290         struct obd_device               *mds_osc_obd; /* XXX lov_obd */
291         struct obd_uuid                  mds_lov_uuid;
292         char                            *mds_profile;
293         struct obd_export               *mds_osc_exp; /* XXX lov_exp */
294         int                              mds_has_lov_desc;
295         struct lov_desc                  mds_lov_desc;
296         obd_id                          *mds_lov_objids;
297         int                              mds_lov_objids_valid;
298         int                              mds_lov_nextid_set;
299         struct file                     *mds_lov_objid_filp;
300         unsigned long                   *mds_client_bitmap;
301         struct semaphore                 mds_orphan_recovery_sem;
302
303         atomic_t                         mds_open_count;
304 };
305
306 struct echo_obd {
307         struct obdo oa;
308         spinlock_t eo_lock;
309         __u64 eo_lastino;
310         atomic_t eo_getattr;
311         atomic_t eo_setattr;
312         atomic_t eo_create;
313         atomic_t eo_destroy;
314         atomic_t eo_prep;
315         atomic_t eo_read;
316         atomic_t eo_write;
317 };
318
319 /*
320  * this struct does double-duty acting as either a client or
321  * server instance .. maybe not wise.
322  */
323 struct ptlbd_obd {
324         /* server's */
325         struct ptlrpc_service *ptlbd_service;
326         struct file *filp;
327         /* client's */
328         struct ptlrpc_client    bd_client;
329         struct obd_import       *bd_import;
330         struct obd_uuid         bd_server_uuid;
331         struct obd_export       *bd_exp;
332         int refcount; /* XXX sigh */
333 };
334
335 struct recovd_obd {
336         spinlock_t            recovd_lock;
337         struct list_head      recovd_managed_items; /* items managed  */
338         struct list_head      recovd_troubled_items; /* items in recovery */
339
340         wait_queue_head_t     recovd_recovery_waitq;
341         wait_queue_head_t     recovd_ctl_waitq;
342         wait_queue_head_t     recovd_waitq;
343         struct task_struct   *recovd_thread;
344         __u32                 recovd_state;
345 };
346
347 struct ost_obd {
348         struct ptlrpc_service *ost_service;
349         struct ptlrpc_service *ost_create_service;
350 };
351
352 struct echo_client_obd {
353         struct obd_export   *ec_exp;   /* the local connection to osc/lov */
354         spinlock_t           ec_lock;
355         struct list_head     ec_objects;
356         int                  ec_nstripes;
357         __u64                ec_unique;
358 };
359
360 struct cache_obd {
361         struct obd_export *cobd_target_exp;/* local connection to target obd */
362         struct obd_export *cobd_cache_exp; /* local connection to cache obd */
363 };
364
365 struct lov_tgt_desc {
366         struct obd_uuid          uuid;
367         struct obd_export       *ltd_exp;
368         int                      active; /* is this target up for requests */
369 };
370
371 struct lov_obd {
372         spinlock_t lov_lock;
373         struct lov_desc desc;
374         int bufsize;
375         int refcount;
376         int lo_catalog_loaded:1;
377         struct lov_tgt_desc *tgts;
378 };
379
380 struct niobuf_local {
381         __u64 offset;
382         __u32 len;
383         __u32 flags;
384         struct page *page;
385         struct dentry *dentry;
386         int lnb_grant_used;
387         int rc;
388 };
389
390
391 /* Don't conflict with on-wire flags OBD_BRW_WRITE, etc */
392 #define N_LOCAL_TEMP_PAGE 0x10000000
393
394 struct obd_trans_info {
395         __u64                    oti_transno;
396         __u64                   *oti_objid;
397         /* Only used on the server side for tracking acks. */
398         struct oti_req_ack_lock {
399                 struct lustre_handle lock;
400                 __u32                mode;
401         }                        oti_ack_locks[4];
402         void                    *oti_handle;
403         struct llog_cookie       oti_onecookie;
404         struct llog_cookie      *oti_logcookies;
405         int                      oti_numcookies;
406 };
407
408 static inline void oti_alloc_cookies(struct obd_trans_info *oti,int num_cookies)
409 {
410         if (!oti)
411                 return;
412
413         if (num_cookies == 1)
414                 oti->oti_logcookies = &oti->oti_onecookie;
415         else
416                 OBD_ALLOC(oti->oti_logcookies,
417                           num_cookies * sizeof(oti->oti_onecookie));
418
419         oti->oti_numcookies = num_cookies;
420 }
421
422 static inline void oti_free_cookies(struct obd_trans_info *oti)
423 {
424         if (!oti || !oti->oti_logcookies)
425                 return;
426
427         if (oti->oti_logcookies == &oti->oti_onecookie)
428                 LASSERT(oti->oti_numcookies == 1);
429         else
430                 OBD_FREE(oti->oti_logcookies,
431                          oti->oti_numcookies * sizeof(oti->oti_onecookie));
432         oti->oti_logcookies = NULL;
433         oti->oti_numcookies = 0;
434 }
435
436 /* llog contexts */
437 enum llog_ctxt_id {
438         LLOG_CONFIG_ORIG_CTXT =  0,
439         LLOG_CONFIG_REPL_CTXT =  1,
440         LLOG_UNLINK_ORIG_CTXT =  2,
441         LLOG_UNLINK_REPL_CTXT =  3,
442         LLOG_SIZE_ORIG_CTXT   =  4,
443         LLOG_SIZE_REPL_CTXT   =  5,
444         LLOG_MD_ORIG_CTXT     =  6,
445         LLOG_MD_REPL_CTXT     =  7,
446         LLOG_RD1_ORIG_CTXT    =  8,
447         LLOG_RD1_REPL_CTXT    =  9,
448         LLOG_TEST_ORIG_CTXT   = 10,
449         LLOG_TEST_REPL_CTXT   = 11,
450         LLOG_MAX_CTXTS
451 };
452
453
454 /* corresponds to one of the obd's */
455 struct obd_device {
456         struct obd_type *obd_type;
457
458         /* common and UUID name of this device */
459         char *obd_name;
460         struct obd_uuid obd_uuid;
461
462         int obd_minor;
463         int obd_attached:1, obd_set_up:1, obd_recovering:1,
464             obd_abort_recovery:1, obd_replayable:1, obd_no_transno:1,
465             obd_no_recov:1, obd_stopping:1;
466         atomic_t obd_refcount;
467         wait_queue_head_t obd_refcount_waitq;
468         struct proc_dir_entry *obd_proc_entry;
469         struct list_head       obd_exports;
470         int                    obd_num_exports;
471         struct ldlm_namespace *obd_namespace;
472         struct ptlrpc_client   obd_ldlm_client; /* XXX OST/MDS only */
473         /* a spinlock is OK for what we do now, may need a semaphore later */
474         spinlock_t             obd_dev_lock;
475         __u64                  obd_last_committed;
476         struct fsfilt_operations *obd_fsops;
477         spinlock_t              obd_osfs_lock;
478         struct llog_ctxt        *obd_llog_ctxt[LLOG_MAX_CTXTS];
479         struct obd_statfs       obd_osfs;
480         unsigned long           obd_osfs_age;
481         struct obd_run_ctxt     obd_ctxt;
482         struct obd_device       *obd_observer;
483         struct obd_export       *obd_self_export;
484
485         /* XXX encapsulate all this recovery data into one struct */
486         svc_handler_t                    obd_recovery_handler;
487         int                              obd_max_recoverable_clients;
488         int                              obd_connected_clients;
489         int                              obd_recoverable_clients;
490         spinlock_t                       obd_processing_task_lock;
491         pid_t                            obd_processing_task;
492         __u64                            obd_next_recovery_transno;
493         int                              obd_replayed_requests;
494         int                              obd_requests_queued_for_recovery;
495         wait_queue_head_t                obd_next_transno_waitq;
496         struct list_head                 obd_uncommitted_replies;
497         spinlock_t                       obd_uncommitted_replies_lock;
498         struct timer_list                obd_recovery_timer;
499         struct list_head                 obd_recovery_queue;
500         struct list_head                 obd_delayed_reply_queue;
501
502         union {
503                 struct filter_obd filter;
504                 struct mds_obd mds;
505                 struct client_obd cli;
506                 struct ost_obd ost;
507                 struct echo_client_obd echo_client;
508                 struct echo_obd echo;
509                 struct recovd_obd recovd;
510                 struct lov_obd lov;
511                 struct cache_obd cobd;
512                 struct ptlbd_obd ptlbd;
513                 struct mgmtcli_obd mgmtcli;
514         } u;
515        /* Fields used by LProcFS */
516         unsigned int           obd_cntr_base;
517         struct lprocfs_stats  *obd_stats;
518         struct proc_dir_entry *obd_svc_procroot;
519         struct lprocfs_stats  *obd_svc_stats;
520 };
521
522 #define OBD_OPT_FORCE           0x0001
523 #define OBD_OPT_FAILOVER        0x0002
524
525 #define OBD_LLOG_FL_SENDNOW     0x0001
526
527 struct obd_ops {
528         struct module *o_owner;
529         int (*o_iocontrol)(unsigned int cmd, struct obd_export *exp, int len,
530                            void *karg, void *uarg);
531         int (*o_get_info)(struct obd_export *, __u32 keylen, void *key,
532                           __u32 *vallen, void *val);
533         int (*o_set_info)(struct obd_export *, __u32 keylen, void *key,
534                           __u32 vallen, void *val);
535         int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
536         int (*o_detach)(struct obd_device *dev);
537         int (*o_setup) (struct obd_device *dev, obd_count len, void *data);
538         int (*o_precleanup)(struct obd_device *dev, int flags);
539         int (*o_cleanup)(struct obd_device *dev, int flags);
540         int (*o_postrecov)(struct obd_device *dev);
541         int (*o_connect)(struct lustre_handle *conn, struct obd_device *src,
542                          struct obd_uuid *cluuid);
543         int (*o_disconnect)(struct obd_export *exp, int flags);
544
545         int (*o_statfs)(struct obd_device *obd, struct obd_statfs *osfs,
546                         unsigned long max_age);
547         int (*o_packmd)(struct obd_export *exp, struct lov_mds_md **disk_tgt,
548                         struct lov_stripe_md *mem_src);
549         int (*o_unpackmd)(struct obd_export *exp,struct lov_stripe_md **mem_tgt,
550                           struct lov_mds_md *disk_src, int disk_len);
551         int (*o_preallocate)(struct lustre_handle *, obd_count *req,
552                              obd_id *ids);
553         int (*o_create)(struct obd_export *exp,  struct obdo *oa,
554                         struct lov_stripe_md **ea, struct obd_trans_info *oti);
555         int (*o_destroy)(struct obd_export *exp, struct obdo *oa,
556                          struct lov_stripe_md *ea, struct obd_trans_info *oti);
557         int (*o_setattr)(struct obd_export *exp, struct obdo *oa,
558                          struct lov_stripe_md *ea, struct obd_trans_info *oti);
559         int (*o_getattr)(struct obd_export *exp, struct obdo *oa,
560                          struct lov_stripe_md *ea);
561         int (*o_getattr_async)(struct obd_export *exp, struct obdo *oa,
562                                struct lov_stripe_md *ea,
563                                struct ptlrpc_request_set *set);
564         int (*o_brw)(int rw, struct obd_export *exp, struct obdo *oa,
565                      struct lov_stripe_md *ea, obd_count oa_bufs,
566                      struct brw_page *pgarr, struct obd_trans_info *oti);
567         int (*o_brw_async)(int rw, struct obd_export *exp, struct obdo *oa,
568                            struct lov_stripe_md *ea, obd_count oa_bufs,
569                            struct brw_page *pgarr, struct ptlrpc_request_set *,
570                            struct obd_trans_info *oti);
571         int (*o_prep_async_page)(struct obd_export *exp, 
572                                  struct lov_stripe_md *lsm,
573                                  struct lov_oinfo *loi, 
574                                  struct page *page, obd_off offset, 
575                                  struct obd_async_page_ops *ops, void *data,
576                                  void **res);
577         int (*o_queue_async_io)(struct obd_export *exp, 
578                                 struct lov_stripe_md *lsm, 
579                                 struct lov_oinfo *loi, void *cookie, 
580                                 int cmd, obd_off off, int count, 
581                                 obd_flag brw_flags, obd_flag async_flags);
582         int (*o_queue_group_io)(struct obd_export *exp, 
583                                 struct lov_stripe_md *lsm, 
584                                 struct lov_oinfo *loi, 
585                                 struct obd_io_group *oig, 
586                                 void *cookie, int cmd, obd_off off, int count, 
587                                 obd_flag brw_flags, obd_flag async_flags);
588         int (*o_trigger_group_io)(struct obd_export *exp, 
589                                   struct lov_stripe_md *lsm, 
590                                   struct lov_oinfo *loi, 
591                                   struct obd_io_group *oig);
592         int (*o_set_async_flags)(struct obd_export *exp,
593                                 struct lov_stripe_md *lsm,
594                                 struct lov_oinfo *loi, void *cookie,
595                                 obd_flag async_flags);
596         int (*o_teardown_async_page)(struct obd_export *exp,
597                                      struct lov_stripe_md *lsm,
598                                      struct lov_oinfo *loi, void *cookie);
599         int (*o_punch)(struct obd_export *exp, struct obdo *oa,
600                        struct lov_stripe_md *ea, obd_size start,
601                        obd_size end, struct obd_trans_info *oti);
602         int (*o_sync)(struct obd_export *exp, struct obdo *oa,
603                       struct lov_stripe_md *ea, obd_size start, obd_size end);
604         int (*o_migrate)(struct lustre_handle *conn, struct lov_stripe_md *dst,
605                          struct lov_stripe_md *src, obd_size start,
606                          obd_size end, struct obd_trans_info *oti);
607         int (*o_copy)(struct lustre_handle *dstconn, struct lov_stripe_md *dst,
608                       struct lustre_handle *srconn, struct lov_stripe_md *src,
609                       obd_size start, obd_size end, struct obd_trans_info *);
610         int (*o_iterate)(struct lustre_handle *conn,
611                          int (*)(obd_id, obd_gr, void *),
612                          obd_id *startid, obd_gr group, void *data);
613         int (*o_preprw)(int cmd, struct obd_export *exp, struct obdo *oa,
614                         int objcount, struct obd_ioobj *obj,
615                         int niocount, struct niobuf_remote *remote,
616                         struct niobuf_local *local, struct obd_trans_info *oti);
617         int (*o_commitrw)(int cmd, struct obd_export *exp, struct obdo *oa,
618                           int objcount, struct obd_ioobj *obj,
619                           int niocount, struct niobuf_local *local,
620                           struct obd_trans_info *oti, int rc);
621         int (*o_enqueue)(struct obd_export *, struct lov_stripe_md *,
622                          __u32 type, ldlm_policy_data_t *, __u32 mode,
623                          int *flags, void *bl_cb, void *cp_cb, void *gl_cb,
624                          void *data, __u32 lvb_len, void *lvb_swabber,
625                          struct lustre_handle *lockh);
626         int (*o_match)(struct obd_export *, struct lov_stripe_md *, __u32 type,
627                        ldlm_policy_data_t *, __u32 mode, int *flags, void *data,
628                        struct lustre_handle *lockh);
629         int (*o_change_cbdata)(struct obd_export *, struct lov_stripe_md *,
630                                ldlm_iterator_t it, void *data);
631         int (*o_cancel)(struct obd_export *, struct lov_stripe_md *md,
632                         __u32 mode, struct lustre_handle *);
633         int (*o_cancel_unused)(struct obd_export *, struct lov_stripe_md *,
634                                int flags, void *opaque);
635         int (*o_san_preprw)(int cmd, struct obd_export *exp,
636                             struct obdo *oa, int objcount,
637                             struct obd_ioobj *obj, int niocount,
638                             struct niobuf_remote *remote);
639         int (*o_init_export)(struct obd_export *exp);
640         int (*o_destroy_export)(struct obd_export *exp);
641
642         /* llog related obd_methods */
643         int (*o_llog_init)(struct obd_device *obd, struct obd_device *disk_obd,
644                            int count, struct llog_catid *logid);
645         int (*o_llog_finish)(struct obd_device *obd, int count);
646
647         /* metadata-only methods */
648         int (*o_pin)(struct obd_export *, obd_id ino, __u32 gen, int type,
649                      struct obd_client_handle *, int flag);
650         int (*o_unpin)(struct obd_export *, struct obd_client_handle *, int);
651
652         int (*o_import_event)(struct obd_device *, struct obd_import *,
653                               enum obd_import_event);
654
655         int (*o_notify)(struct obd_device *obd, struct obd_device *watched,
656                         int active);
657         /* 
658          * NOTE: If adding ops, add another LPROCFS_OBD_OP_INIT() line
659          * to lprocfs_alloc_obd_stats() in obdclass/lprocfs_status.c.
660          * Also, add a wrapper function in include/linux/obd_class.h.
661          */
662 };
663
664
665 static inline void obd_transno_commit_cb(struct obd_device *obd, __u64 transno,
666                                          int error)
667 {
668         if (error) {
669                 CERROR("%s: transno "LPD64" commit error: %d\n",
670                        obd->obd_name, transno, error);
671                 return;
672         }
673         CDEBUG(D_HA, "%s: transno "LPD64" committed\n",
674                obd->obd_name, transno);
675         if (transno > obd->obd_last_committed) {
676                 obd->obd_last_committed = transno;
677                 ptlrpc_commit_replies (obd);
678         }
679 }
680
681 #endif /* __OBD_H */