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