1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
10 #elif defined(__APPLE__)
11 #include <darwin/obd.h>
12 #elif defined(__WINNT__)
13 #include <winnt/obd.h>
15 #error Unsupported operating system.
18 #define IOC_OSC_TYPE 'h'
19 #define IOC_OSC_MIN_NR 20
20 #define IOC_OSC_SET_ACTIVE _IOWR(IOC_OSC_TYPE, 21, struct obd_device *)
21 #define IOC_OSC_MAX_NR 50
23 #define IOC_MDC_TYPE 'i'
24 #define IOC_MDC_MIN_NR 20
25 /* Moved to lustre_user.h
26 #define IOC_MDC_LOOKUP _IOWR(IOC_MDC_TYPE, 20, struct obd_ioctl_data *)
27 #define IOC_MDC_GETSTRIPE _IOWR(IOC_MDC_TYPE, 21, struct lov_mds_md *) */
28 #define IOC_MDC_MAX_NR 50
30 #include <lustre/lustre_idl.h>
31 #include <lu_object.h>
32 #include <lustre_lib.h>
33 #include <lustre_export.h>
34 #include <lustre_quota.h>
35 #include <lustre_fld.h>
36 #include <lustre_capa.h>
38 #define MAX_OBD_DEVICES 8192
40 /* this is really local to the OSC */
41 struct loi_oap_pages {
42 struct list_head lop_pending;
43 struct list_head lop_urgent;
44 struct list_head lop_pending_group;
54 struct lov_oinfo { /* per-stripe data structure */
55 __u64 loi_id; /* object ID on the target OST */
56 __u64 loi_gr; /* object group on the target OST */
57 int loi_ost_idx; /* OST stripe index in lov_tgt_desc->tgts */
58 int loi_ost_gen; /* generation of this loi_ost_idx */
60 /* used by the osc to keep track of what objects to build into rpcs */
61 struct loi_oap_pages loi_read_lop;
62 struct loi_oap_pages loi_write_lop;
63 /* _cli_ is poorly named, it should be _ready_ */
64 struct list_head loi_cli_item;
65 struct list_head loi_write_item;
66 struct list_head loi_read_item;
68 unsigned loi_kms_valid:1;
69 __u64 loi_kms; /* known minimum size */
70 struct ost_lvb loi_lvb;
71 struct osc_async_rc loi_ar;
74 static inline void loi_init(struct lov_oinfo *loi)
76 CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending);
77 CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_urgent);
78 CFS_INIT_LIST_HEAD(&loi->loi_read_lop.lop_pending_group);
79 CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending);
80 CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_urgent);
81 CFS_INIT_LIST_HEAD(&loi->loi_write_lop.lop_pending_group);
82 CFS_INIT_LIST_HEAD(&loi->loi_cli_item);
83 CFS_INIT_LIST_HEAD(&loi->loi_write_item);
84 CFS_INIT_LIST_HEAD(&loi->loi_read_item);
87 /*extent array item for describing the joined file extent info*/
89 __u64 le_start; /* extent start */
90 __u64 le_len; /* extent length */
91 int le_loi_idx; /* extent #1 loi's index in lsm loi array */
92 int le_stripe_count; /* extent stripe count*/
95 /*Lov array info for describing joined file array EA info*/
96 struct lov_array_info {
97 struct llog_logid lai_array_id; /* MDS med llog object id */
98 unsigned lai_ext_count; /* number of extent count */
99 struct lov_extent *lai_ext_array; /* extent desc array */
102 struct lov_stripe_md {
104 void *lsm_lock_owner; /* debugging */
107 /* Public members. */
108 __u64 lw_object_id; /* lov object id */
109 __u64 lw_object_gr; /* lov object group */
110 __u64 lw_maxbytes; /* maximum possible file size */
112 /* LOV-private members start here -- only for use in lov/. */
114 __u32 lw_stripe_size; /* size of the stripe */
115 __u32 lw_pattern; /* striping pattern (RAID0, RAID1) */
116 unsigned lw_stripe_count; /* number of objects being striped over */
119 struct lov_array_info *lsm_array; /*Only for joined file array info*/
120 struct lov_oinfo *lsm_oinfo[0];
123 #define lsm_object_id lsm_wire.lw_object_id
124 #define lsm_object_gr lsm_wire.lw_object_gr
125 #define lsm_maxbytes lsm_wire.lw_maxbytes
126 #define lsm_magic lsm_wire.lw_magic
127 #define lsm_stripe_size lsm_wire.lw_stripe_size
128 #define lsm_pattern lsm_wire.lw_pattern
129 #define lsm_stripe_count lsm_wire.lw_stripe_count
133 typedef int (*obd_enqueue_update_f)(struct obd_info *oinfo, int rc);
135 /* obd info for a particular level (lov, osc). */
137 /* Lock policy. It keeps an extent which is specific for a particular
138 * OSC. (e.g. lov_prep_enqueue_set initialises extent of the policy,
139 * and osc_enqueue passes it into ldlm_lock_match & ldlm_cli_enqueue. */
140 ldlm_policy_data_t oi_policy;
141 /* Flags used while lock handling. The flags obtained on the enqueue
142 * request are set here, therefore they are request specific. */
144 /* Lock handle specific for every OSC lock. */
145 struct lustre_handle *oi_lockh;
146 /* lsm data specific for every OSC. */
147 struct lov_stripe_md *oi_md;
148 /* obdo data specific for every OSC, if needed at all. */
150 /* statfs data specific for every OSC, if needed at all. */
151 struct obd_statfs *oi_osfs;
152 /* An update callback which is called to update some data on upper
153 * level. E.g. it is used for update lsm->lsm_oinfo at every recieved
154 * request in osc level for enqueue requests. It is also possible to
155 * update some caller data from LOV layer if needed. */
156 obd_enqueue_update_f oi_cb_up;
157 /* oss capability, its type is obd_capa in client to avoid copy.
158 * in contrary its type is lustre_capa in OSS. */
162 /* compare all relevant fields. */
163 static inline int lov_stripe_md_cmp(struct lov_stripe_md *m1,
164 struct lov_stripe_md *m2)
167 * ->lsm_wire contains padding, but it should be zeroed out during
170 return memcmp(&m1->lsm_wire, &m2->lsm_wire, sizeof m1->lsm_wire);
173 void lov_stripe_lock(struct lov_stripe_md *md);
174 void lov_stripe_unlock(struct lov_stripe_md *md);
177 struct list_head typ_chain;
178 struct obd_ops *typ_dt_ops;
179 struct md_ops *typ_md_ops;
180 cfs_proc_dir_entry_t *typ_procroot;
183 struct lu_device_type *typ_lu;
184 spinlock_t obd_type_lock;
195 ASYNC_READY = 0x1, /* ap_make_ready will not be called before this
196 page is added to an rpc */
197 ASYNC_URGENT = 0x2, /* page must be put into an RPC before return */
198 ASYNC_COUNT_STABLE = 0x4, /* ap_refresh_count will not be called
199 to give the caller a chance to update
200 or cancel the size of the io */
201 ASYNC_GROUP_SYNC = 0x8, /* ap_completion will not be called, instead
202 the page is accounted for in the
203 obd_io_group given to
204 obd_queue_group_io */
207 struct obd_async_page_ops {
208 int (*ap_make_ready)(void *data, int cmd);
209 int (*ap_refresh_count)(void *data, int cmd);
210 void (*ap_fill_obdo)(void *data, int cmd, struct obdo *oa);
211 void (*ap_update_obdo)(void *data, int cmd, struct obdo *oa,
213 int (*ap_completion)(void *data, int cmd, struct obdo *oa, int rc);
214 struct obd_capa *(*ap_lookup_capa)(void *data, int cmd);
217 /* the `oig' is passed down from a caller of obd rw methods. the callee
218 * records enough state such that the caller can sleep on the oig and
219 * be woken when all the callees have finished their work */
220 struct obd_io_group {
222 atomic_t oig_refcount;
225 struct list_head oig_occ_list;
226 cfs_waitq_t oig_waitq;
229 /* the oig callback context lets the callee of obd rw methods register
230 * for callbacks from the caller. */
231 struct oig_callback_context {
232 struct list_head occ_oig_item;
233 /* called when the caller has received a signal while sleeping.
234 * callees of this method are encouraged to abort their state
235 * in the oig. This may be called multiple times. */
236 void (*occ_interrupted)(struct oig_callback_context *occ);
237 unsigned int interrupted:1;
240 /* Individual type definitions */
242 struct ost_server_data;
244 /* hold common fields for "target" device */
245 struct obd_device_target {
246 struct super_block *obt_sb;
247 atomic_t obt_quotachecking;
248 struct lustre_quota_ctxt obt_qctxt;
253 LLOG_CONFIG_ORIG_CTXT = 0,
254 LLOG_CONFIG_REPL_CTXT = 1,
255 LLOG_MDS_OST_ORIG_CTXT = 2,
256 LLOG_MDS_OST_REPL_CTXT = 3,
257 LLOG_SIZE_ORIG_CTXT = 4,
258 LLOG_SIZE_REPL_CTXT = 5,
259 LLOG_MD_ORIG_CTXT = 6,
260 LLOG_MD_REPL_CTXT = 7,
261 LLOG_RD1_ORIG_CTXT = 8,
262 LLOG_RD1_REPL_CTXT = 9,
263 LLOG_TEST_ORIG_CTXT = 10,
264 LLOG_TEST_REPL_CTXT = 11,
265 LLOG_LOVEA_ORIG_CTXT = 12,
266 LLOG_LOVEA_REPL_CTXT = 13,
270 #define FILTER_SUBDIR_COUNT 32 /* set to zero for no subdirs */
272 #define FILTER_GROUP_LLOG 1
273 #define FILTER_GROUP_ECHO 2
274 #define FILTER_GROUP_MDS0 3
276 struct filter_subdirs {
277 cfs_dentry_t *dentry[FILTER_SUBDIR_COUNT];
287 struct llog_ctxt *llog_ctxt[LLOG_MAX_CTXTS];
290 struct filter_group_llog {
291 struct list_head list;
293 struct obd_llogs *llogs;
294 struct obd_export *exp;
298 /* NB this field MUST be first */
299 struct obd_device_target fo_obt;
300 const char *fo_fstype;
301 struct vfsmount *fo_vfsmnt;
304 cfs_dentry_t *fo_dentry_O;
305 cfs_dentry_t **fo_dentry_O_groups;
306 struct filter_subdirs *fo_dentry_O_sub;
307 struct semaphore fo_init_lock; /* group initialization lock */
308 int fo_committed_group;
311 spinlock_t fo_objidlock; /* protect fo_lastobjid */
312 spinlock_t fo_translock; /* protect fsd_last_transno */
313 struct file *fo_rcvd_filp;
314 struct file *fo_health_check_filp;
315 struct lr_server_data *fo_fsd;
316 unsigned long *fo_last_rcvd_slots;
317 __u64 fo_mount_count;
319 unsigned long fo_destroys_in_progress;
320 struct semaphore fo_create_locks[FILTER_SUBDIR_COUNT];
322 struct list_head fo_export_list;
325 obd_size fo_tot_dirty; /* protected by obd_osfs_lock */
326 obd_size fo_tot_granted; /* all values in bytes */
327 obd_size fo_tot_pending;
329 obd_size fo_readcache_max_filesize;
331 struct obd_import *fo_mdc_imp;
332 struct obd_uuid fo_mdc_uuid;
333 struct lustre_handle fo_mdc_conn;
334 struct file **fo_last_objid_files;
335 __u64 *fo_last_objids; /* last created objid for groups,
336 * protected by fo_objidlock */
338 struct semaphore fo_alloc_lock;
340 atomic_t fo_r_in_flight;
341 atomic_t fo_w_in_flight;
344 * per-filter pool of kiobuf's allocated by filter_common_setup() and
345 * torn down by filter_cleanup(). Contains OST_NUM_THREADS elements of
346 * which ->fo_iobuf_count were allocated.
348 * This pool contains kiobuf used by
349 * filter_{prep,commit}rw_{read,write}() and is shared by all OST
352 * Locking: none, each OST thread uses only one element, determined by
353 * its "ordinal number", ->t_id.
355 struct filter_iobuf **fo_iobuf_pool;
358 struct list_head fo_llog_list;
359 spinlock_t fo_llog_list_lock;
361 struct brw_stats fo_filter_stats;
362 struct lustre_quota_ctxt fo_quota_ctxt;
363 spinlock_t fo_quotacheck_lock;
364 atomic_t fo_quotachecking;
366 int fo_fmd_max_num; /* per exp filter_mod_data */
367 int fo_fmd_max_age; /* jiffies to fmd expiry */
369 /* capability related */
370 unsigned int fo_fl_oss_capa;
371 struct list_head fo_capa_keys;
372 struct hlist_head *fo_capa_hash;
375 #define OSC_MAX_RIF_DEFAULT 8
376 #define OSC_MAX_RIF_MAX 256
377 #define OSC_MAX_DIRTY_DEFAULT (OSC_MAX_RIF_DEFAULT * 4)
378 #define OSC_MAX_DIRTY_MB_MAX 2048 /* arbitrary, but < MAX_LONG bytes */
379 #define OSC_DEFAULT_RESENDS 10
381 #define MDC_MAX_RIF_DEFAULT 8
382 #define MDC_MAX_RIF_MAX 512
387 struct semaphore cl_sem;
388 struct obd_uuid cl_target_uuid;
389 struct obd_import *cl_import; /* ptlrpc connection state */
391 /* max_mds_easize is purely a performance thing so we don't have to
392 * call obd_size_diskmd() all the time. */
393 int cl_default_mds_easize;
394 int cl_max_mds_easize;
395 int cl_max_mds_cookiesize;
397 /* security configuration */
398 struct sec_flavor_config cl_sec_conf;
400 //struct llog_canceld_ctxt *cl_llcd; /* it's included by obd_llog_ctxt */
401 void *cl_llcd_offset;
403 /* the grant values are protected by loi_list_lock below */
404 long cl_dirty; /* all _dirty_ in bytes */
405 long cl_dirty_max; /* allowed w/o rpc */
406 long cl_avail_grant; /* bytes of credit for ost */
407 long cl_lost_grant; /* lost credits (trunc) */
408 struct list_head cl_cache_waiters; /* waiting for cache/grant */
410 /* keep track of objects that have lois that contain pages which
411 * have been queued for async brw. this lock also protects the
412 * lists of osc_client_pages that hang off of the loi */
414 * ->cl_loi_list_lock protects consistency of
415 * ->cl_loi_{ready,read,write}_list. ->ap_make_ready() and
416 * ->ap_completion() call-backs are executed under this lock. As we
417 * cannot guarantee that these call-backs never block on all platforms
418 * (as a matter of fact they do block on Mac OS X), type of
419 * ->cl_loi_list_lock is platform dependent: it's a spin-lock on Linux
420 * and blocking mutex on Mac OS X. (Alternative is to make this lock
421 * blocking everywhere, but we don't want to slow down fast-path of
422 * our main platform.)
424 * Exact type of ->cl_loi_list_lock is defined in arch/obd.h together
425 * with client_obd_list_{un,}lock() and
426 * client_obd_list_lock_{init,done}() functions.
428 client_obd_lock_t cl_loi_list_lock;
429 struct list_head cl_loi_ready_list;
430 struct list_head cl_loi_write_list;
431 struct list_head cl_loi_read_list;
434 /* just a sum of the loi/lop pending numbers to be exported by /proc */
435 int cl_pending_w_pages;
436 int cl_pending_r_pages;
437 int cl_max_pages_per_rpc;
438 int cl_max_rpcs_in_flight;
439 struct obd_histogram cl_read_rpc_hist;
440 struct obd_histogram cl_write_rpc_hist;
441 struct obd_histogram cl_read_page_hist;
442 struct obd_histogram cl_write_page_hist;
443 struct obd_histogram cl_read_offset_hist;
444 struct obd_histogram cl_write_offset_hist;
446 struct mdc_rpc_lock *cl_rpc_lock;
447 struct mdc_rpc_lock *cl_setattr_lock;
448 struct mdc_rpc_lock *cl_close_lock;
449 struct osc_creator cl_oscc;
452 struct semaphore cl_mgc_sem;
453 struct vfsmount *cl_mgc_vfsmnt;
454 struct dentry *cl_mgc_configs_dir;
455 atomic_t cl_mgc_refcount;
456 struct obd_export *cl_mgc_mgsexp;
459 unsigned int cl_checksum:1; /* debug checksums */
461 /* also protected by the poorly named _loi_list_lock lock above */
462 struct osc_async_rc cl_ar;
464 /* used by quotacheck */
465 int cl_qchk_stat; /* quotacheck stat of the peer */
467 /* sequence manager */
468 struct lu_client_seq *cl_seq;
470 atomic_t cl_resends; /* resend count */
472 #define obd2cli_tgt(obd) ((char *)(obd)->u.cli.cl_target_uuid.uuid)
474 #define CL_NOT_QUOTACHECKED 1 /* client->cl_qchk_stat init value */
477 struct ptlrpc_service *mgs_service;
478 struct vfsmount *mgs_vfsmnt;
479 struct super_block *mgs_sb;
480 struct dentry *mgs_configs_dir;
481 struct dentry *mgs_fid_de;
482 struct list_head mgs_fs_db_list;
483 struct semaphore mgs_sem;
484 cfs_proc_dir_entry_t *mgs_proc_live;
487 /* hah, upper limit 64 should be enough */
488 #define N_NOSQUASH_NIDS 64
489 struct rootsquash_info {
492 int rsi_n_nosquash_nids;
493 lnet_nid_t rsi_nosquash_nids[N_NOSQUASH_NIDS];
497 /* NB this field MUST be first */
498 struct obd_device_target mds_obt;
499 struct ptlrpc_service *mds_service;
500 struct ptlrpc_service *mds_setattr_service;
501 struct ptlrpc_service *mds_readpage_service;
502 struct vfsmount *mds_vfsmnt;
503 cfs_dentry_t *mds_fid_de;
505 int mds_max_cookiesize;
506 struct file *mds_rcvd_filp;
507 spinlock_t mds_transno_lock;
508 __u64 mds_last_transno;
509 __u64 mds_mount_count;
511 unsigned long mds_atime_diff;
512 struct semaphore mds_epoch_sem;
513 struct ll_fid mds_rootfid;
514 struct lr_server_data *mds_server_data;
515 cfs_dentry_t *mds_pending_dir;
516 cfs_dentry_t *mds_logs_dir;
517 cfs_dentry_t *mds_objects_dir;
518 struct llog_handle *mds_cfg_llh;
519 // struct llog_handle *mds_catalog;
520 struct obd_device *mds_osc_obd; /* XXX lov_obd */
521 struct obd_uuid mds_lov_uuid;
523 struct obd_export *mds_osc_exp; /* XXX lov_exp */
524 struct lov_desc mds_lov_desc;
527 unsigned int mds_lov_objids_dirty:1;
528 struct file *mds_lov_objid_filp;
529 /* protect update vs free in lov_add_target */
530 struct rw_semaphore mds_lov_objids_sem;
531 /* protect update vs update or memmove vs update */
532 spinlock_t mds_lov_objids_lock;
533 /* wait for safe free */
534 cfs_waitq_t mds_lov_objids_wait;
535 obd_id *mds_lov_objids;
536 __u32 mds_lov_objids_count;
537 int mds_lov_nextid_set;
539 struct file *mds_health_check_filp;
540 unsigned long *mds_client_bitmap;
541 // struct upcall_cache *mds_group_hash;
543 struct lustre_quota_info mds_quota_info;
544 struct semaphore mds_qonoff_sem;
545 struct semaphore mds_health_sem;
546 unsigned long mds_lov_objids_valid:1,
549 mds_evict_ost_nids:1;
552 struct upcall_cache *mds_identity_cache;
553 struct upcall_cache *mds_rmtacl_cache;
556 struct rootsquash_info *mds_rootsquash_info;
558 /* for capability keys update */
559 struct lustre_capa_key *mds_capa_keys;
562 #define mds_lov_objids_size(mds) ((mds)->mds_lov_objids_count*sizeof(obd_id))
568 struct lustre_handle eo_nl_lock;
573 struct ptlrpc_service *ost_service;
574 struct ptlrpc_service *ost_create_service;
575 struct ptlrpc_service *ost_io_service;
576 struct semaphore ost_health_sem;
579 struct echo_client_obd {
580 struct obd_export *ec_exp; /* the local connection to osc/lov */
582 struct list_head ec_objects;
588 struct obd_uuid lqo_uuid; /* ptlrpc's c_remote_uuid */
589 struct list_head lqo_oss_list; /* link to lov_qos */
590 __u32 lqo_ost_count; /* number of osts on this oss */
591 __u64 lqo_bavail; /* total bytes avail on OSS */
592 __u64 lqo_penalty; /* current penalty */
593 __u64 lqo_penalty_per_obj; /* penalty decrease every obj*/
597 struct lov_qos_oss *ltq_oss; /* oss info */
598 __u64 ltq_penalty; /* current penalty */
599 __u64 ltq_penalty_per_obj; /* penalty decrease every obj*/
600 __u64 ltq_weight; /* net weighting */
601 unsigned int ltq_usable:1; /* usable for striping */
605 struct list_head lq_oss_list; /* list of OSSs that targets use */
606 struct rw_semaphore lq_rw_sem;
607 __u32 lq_active_oss_count;
608 __u32 *lq_rr_array; /* round-robin optimized list */
609 unsigned int lq_rr_size; /* rr array size */
610 unsigned int lq_prio_free; /* priority for free space */
611 unsigned int lq_dirty:1, /* recalc qos data */
612 lq_dirty_rr:1, /* recalc round-robin list */
613 lq_same_space:1,/* the ost's all have approx.
614 the same space avail */
615 lq_reset:1; /* zero current penalties */
618 struct lov_tgt_desc {
619 struct obd_uuid ltd_uuid;
620 struct obd_export *ltd_exp;
621 struct ltd_qos ltd_qos; /* qos info per target */
623 __u32 ltd_index; /* index in lov_obd->tgts */
624 unsigned int ltd_active:1,/* is this target up for requests */
625 ltd_activate:1,/* should this target be activated */
626 ltd_reap:1; /* should this target be deleted */
630 struct lov_desc desc;
631 struct lov_tgt_desc **lov_tgts;
632 struct semaphore lov_lock;
633 struct obd_connect_data lov_ocd;
634 struct lov_qos lov_qos; /* qos info per lov */
635 atomic_t lov_refcount;
636 __u32 lov_tgt_count; /* how many OBD's */
637 __u32 lov_active_tgt_count; /* how many active */
638 __u32 lov_death_row;/* tgts scheduled to be deleted */
639 __u32 lov_tgt_size; /* size of tgts array */
640 __u32 lov_start_idx; /* start index of new inode */
641 __u32 lov_offset_idx; /* aliasing for start_idx */
642 int lov_start_count;/* reseed counter */
646 struct lmv_tgt_desc {
647 struct obd_uuid ltd_uuid;
648 struct obd_export *ltd_exp;
649 int ltd_active; /* is this target up for requests */
651 struct semaphore ltd_fid_sem;
656 struct lu_client_fld lmv_fld;
658 struct lmv_desc desc;
659 struct obd_uuid cluuid;
660 struct obd_export *exp;
667 struct semaphore init_sem;
669 struct lmv_tgt_desc *tgts;
672 struct obd_connect_data *datas;
675 struct obd_connect_data conn_data;
678 struct niobuf_local {
683 cfs_dentry_t *dentry;
688 #define LUSTRE_FLD_NAME "fld"
689 #define LUSTRE_SEQ_NAME "seq"
691 #define LUSTRE_CMM_NAME "cmm"
692 #define LUSTRE_MDD_NAME "mdd"
693 #define LUSTRE_OSD_NAME "osd"
694 #define LUSTRE_LMV_NAME "lmv"
695 #define LUSTRE_CMM_MDC_NAME "cmm-mdc"
697 /* obd device type names */
698 /* FIXME all the references to LUSTRE_MDS_NAME should be swapped with LUSTRE_MDT_NAME */
699 #define LUSTRE_MDS_NAME "mds"
700 #define LUSTRE_MDT_NAME "mdt"
701 #define LUSTRE_MDC_NAME "mdc"
702 #define LUSTRE_OSS_NAME "ost" /* FIXME change name to oss */
703 #define LUSTRE_OST_NAME "obdfilter" /* FIXME change name to ost */
704 #define LUSTRE_OSC_NAME "osc"
705 #define LUSTRE_LOV_NAME "lov"
706 #define LUSTRE_MGS_NAME "mgs"
707 #define LUSTRE_MGC_NAME "mgc"
709 #define LUSTRE_CACHEOBD_NAME "cobd"
710 #define LUSTRE_ECHO_NAME "obdecho"
711 #define LUSTRE_ECHO_CLIENT_NAME "echo_client"
713 /* Constant obd names (post-rename) */
714 #define LUSTRE_MDS_OBDNAME "MDS"
715 #define LUSTRE_OSS_OBDNAME "OSS"
716 #define LUSTRE_MGS_OBDNAME "MGS"
717 #define LUSTRE_MGC_OBDNAME "MGC"
719 /* Don't conflict with on-wire flags OBD_BRW_WRITE, etc */
720 #define N_LOCAL_TEMP_PAGE 0x10000000
722 struct obd_trans_info {
726 /* Only used on the server side for tracking acks. */
727 struct oti_req_ack_lock {
728 struct lustre_handle lock;
732 struct llog_cookie oti_onecookie;
733 struct llog_cookie *oti_logcookies;
736 /* initial thread handling transaction */
741 static inline void oti_init(struct obd_trans_info *oti,
742 struct ptlrpc_request *req)
746 memset(oti, 0, sizeof *oti);
751 oti->oti_xid = req->rq_xid;
753 if (req->rq_repmsg && req->rq_reqmsg != 0)
754 oti->oti_transno = lustre_msg_get_transno(req->rq_repmsg);
755 oti->oti_thread_id = req->rq_svc_thread ? req->rq_svc_thread->t_id : -1;
756 oti->oti_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
759 static inline void oti_alloc_cookies(struct obd_trans_info *oti,int num_cookies)
764 if (num_cookies == 1)
765 oti->oti_logcookies = &oti->oti_onecookie;
767 OBD_ALLOC(oti->oti_logcookies,
768 num_cookies * sizeof(oti->oti_onecookie));
770 oti->oti_numcookies = num_cookies;
773 static inline void oti_free_cookies(struct obd_trans_info *oti)
775 if (!oti || !oti->oti_logcookies)
778 if (oti->oti_logcookies == &oti->oti_onecookie)
779 LASSERT(oti->oti_numcookies == 1);
781 OBD_FREE(oti->oti_logcookies,
782 oti->oti_numcookies * sizeof(oti->oti_onecookie));
783 oti->oti_logcookies = NULL;
784 oti->oti_numcookies = 0;
788 * Events signalled through obd_notify() upcall-chain.
790 enum obd_notify_event {
791 /* Device activated */
793 /* Device deactivated */
795 /* Device disconnected */
797 /* Connect data for import were changed */
800 OBD_NOTIFY_SYNC_NONBLOCK,
802 /* Configuration event */
806 /* bit-mask flags for config events */
808 CONFIG_LOG = 0x1, /* finished processing config log */
809 CONFIG_SYNC = 0x2 /* mdt synced 1 ost */
813 * Data structure used to pass obd_notify()-event to non-obd listeners (llite
814 * and liblustre being main examples).
816 struct obd_notify_upcall {
817 int (*onu_upcall)(struct obd_device *host, struct obd_device *watched,
818 enum obd_notify_event ev, void *owner);
819 /* Opaque datum supplied by upper layer listener */
823 struct target_recovery_data {
824 svc_handler_t trd_recovery_handler;
825 pid_t trd_processing_task;
826 struct completion trd_starting;
827 struct completion trd_finishing;
830 /* corresponds to one of the obd's */
831 #define MAX_OBD_NAME 128
832 #define OBD_DEVICE_MAGIC 0XAB5CD6EF
834 struct obd_type *obd_type;
837 /* common and UUID name of this device */
838 char obd_name[MAX_OBD_NAME];
839 struct obd_uuid obd_uuid;
841 struct lu_device *obd_lu_dev;
844 unsigned int obd_attached:1, /* finished attach */
845 obd_set_up:1, /* finished setup */
846 obd_recovering:1, /* there are recoverable clients */
847 obd_abort_recovery:1,/* somebody ioctl'ed us to abort */
848 obd_replayable:1, /* recovery is enabled; inform clients */
849 obd_no_transno:1, /* no committed-transno notification */
850 obd_no_recov:1, /* fail instead of retry messages */
851 obd_req_replaying:1, /* replaying requests */
852 obd_stopping:1, /* started cleanup */
853 obd_starting:1, /* started setup */
854 obd_force:1, /* cleanup with > 0 obd refcount */
855 obd_fail:1, /* cleanup with failover */
856 obd_async_recov:1, /* allow asyncronous orphan cleanup */
857 obd_no_conn:1; /* deny new connections */
858 atomic_t obd_refcount;
859 cfs_waitq_t obd_refcount_waitq;
860 struct list_head obd_exports;
862 struct ldlm_namespace *obd_namespace;
863 struct ptlrpc_client obd_ldlm_client; /* XXX OST/MDS only */
864 /* a spinlock is OK for what we do now, may need a semaphore later */
865 spinlock_t obd_dev_lock;
866 struct semaphore obd_dev_sem;
867 __u64 obd_last_committed;
868 struct fsfilt_operations *obd_fsops;
869 spinlock_t obd_osfs_lock;
870 struct obd_statfs obd_osfs; /* locked by obd_osfs_lock */
872 struct lvfs_run_ctxt obd_lvfs_ctxt;
873 struct llog_ctxt *obd_llog_ctxt[LLOG_MAX_CTXTS];
874 struct obd_device *obd_observer;
875 struct obd_notify_upcall obd_upcall;
876 struct obd_export *obd_self_export;
877 /* list of exports in LRU order, for ping evictor, with obd_dev_lock */
878 struct list_head obd_exports_timed;
879 time_t obd_eviction_timer; /* for ping evictor */
881 /* XXX encapsulate all this recovery data into one struct */
882 svc_handler_t obd_recovery_handler;
883 pid_t obd_processing_task;
885 int obd_max_recoverable_clients;
886 int obd_connected_clients;
887 int obd_recoverable_clients;
888 spinlock_t obd_processing_task_lock; /* BH lock (timer) */
889 __u64 obd_next_recovery_transno;
890 int obd_replayed_requests;
891 int obd_requests_queued_for_recovery;
892 cfs_waitq_t obd_next_transno_waitq;
893 struct list_head obd_uncommitted_replies;
894 spinlock_t obd_uncommitted_replies_lock;
895 cfs_timer_t obd_recovery_timer;
896 time_t obd_recovery_start;
897 time_t obd_recovery_end;
899 /* new recovery stuff from CMD2 */
900 struct target_recovery_data obd_recovery_data;
901 int obd_replayed_locks;
902 atomic_t obd_req_replay_clients;
903 atomic_t obd_lock_replay_clients;
904 struct list_head obd_req_replay_queue;
905 struct list_head obd_lock_replay_queue;
906 struct list_head obd_final_req_queue;
907 int obd_recovery_stage;
910 struct obd_device_target obt;
911 struct filter_obd filter;
913 struct client_obd cli;
915 struct echo_client_obd echo_client;
916 struct echo_obd echo;
921 /* Fields used by LProcFS */
922 unsigned int obd_cntr_base;
923 struct lprocfs_stats *obd_stats;
925 unsigned int md_cntr_base;
926 struct lprocfs_stats *md_stats;
928 cfs_proc_dir_entry_t *obd_proc_entry;
929 cfs_proc_dir_entry_t *obd_proc_exports;
930 cfs_proc_dir_entry_t *obd_svc_procroot;
931 struct lprocfs_stats *obd_svc_stats;
932 struct semaphore obd_proc_exp_sem;
933 atomic_t obd_evict_inprogress;
934 cfs_waitq_t obd_evict_inprogress_waitq;
937 #define OBD_OPT_FORCE 0x0001
938 #define OBD_OPT_FAILOVER 0x0002
940 #define OBD_LLOG_FL_SENDNOW 0x0001
942 enum obd_cleanup_stage {
943 /* Special case hack for MDS LOVs */
945 /* Precleanup stage 1, we must make sure all exports (other than the
946 self-export) get destroyed. */
948 /* Precleanup stage 2, do other type-specific cleanup requiring the
950 OBD_CLEANUP_SELF_EXP,
951 /* FIXME we should eliminate the "precleanup" function and make them stages
952 of the "cleanup" function. */
956 /* get/set_info keys */
957 #define KEY_READ_ONLY "read-only"
958 #define KEY_MDS_CONN "mds_conn"
959 #define KEY_NEXT_ID "next_id"
960 #define KEY_LOVDESC "lovdesc"
961 #define KEY_INIT_RECOV "initial_recov"
962 #define KEY_INIT_RECOV_BACKUP "init_recov_bk"
963 #define KEY_FLUSH_CTX "flush_ctx"
964 #define KEY_CAPA_KEY "capa_key"
965 #define KEY_CONN_DATA "conn_data"
966 #define KEY_MAX_EASIZE "max_easize"
967 #define KEY_REVIMP_UPD "revimp_update"
972 struct lu_fid op_fid1; /* operation fid1 (usualy parent) */
973 struct lu_fid op_fid2; /* operation fid2 (usualy child) */
974 struct lu_fid op_fid3; /* 2 extra fids to find conflicting */
975 struct lu_fid op_fid4; /* to the operation locks. */
976 mdsno_t op_mds; /* what mds server open will go to */
977 struct lustre_handle op_handle;
982 struct lmv_stripe_md *op_mea1;
983 struct lmv_stripe_md *op_mea2;
984 __u32 op_suppgids[2];
990 /* iattr fields and blocks. */
991 struct iattr op_attr;
993 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
994 unsigned int op_attr_flags;
997 loff_t op_attr_blocks;
999 /* Size-on-MDS epoch and flags. */
1004 struct obd_capa *op_capa1;
1005 struct obd_capa *op_capa2;
1007 /* Various operation flags. */
1010 /* Operation type */
1015 struct module *o_owner;
1016 int (*o_iocontrol)(unsigned int cmd, struct obd_export *exp, int len,
1017 void *karg, void *uarg);
1018 int (*o_get_info)(struct obd_export *, __u32 keylen, void *key,
1019 __u32 *vallen, void *val);
1020 int (*o_set_info_async)(struct obd_export *, __u32 keylen, void *key,
1021 __u32 vallen, void *val,
1022 struct ptlrpc_request_set *set);
1023 int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
1024 int (*o_detach)(struct obd_device *dev);
1025 int (*o_setup) (struct obd_device *dev, struct lustre_cfg *cfg);
1026 int (*o_precleanup)(struct obd_device *dev,
1027 enum obd_cleanup_stage cleanup_stage);
1028 int (*o_cleanup)(struct obd_device *dev);
1029 int (*o_process_config)(struct obd_device *dev, obd_count len,
1031 int (*o_postrecov)(struct obd_device *dev);
1032 int (*o_add_conn)(struct obd_import *imp, struct obd_uuid *uuid,
1034 int (*o_del_conn)(struct obd_import *imp, struct obd_uuid *uuid);
1035 /* connect to the target device with given connection
1036 * data. @ocd->ocd_connect_flags is modified to reflect flags actually
1037 * granted by the target, which are guaranteed to be a subset of flags
1038 * asked for. If @ocd == NULL, use default parameters. */
1039 int (*o_connect)(const struct lu_env *env,
1040 struct lustre_handle *conn, struct obd_device *src,
1041 struct obd_uuid *cluuid, struct obd_connect_data *ocd);
1042 int (*o_reconnect)(struct obd_export *exp, struct obd_device *src,
1043 struct obd_uuid *cluuid,
1044 struct obd_connect_data *ocd);
1045 int (*o_disconnect)(struct obd_export *exp);
1047 /* Initialize/finalize fids infrastructure. */
1048 int (*o_fid_init)(struct obd_export *exp);
1049 int (*o_fid_fini)(struct obd_export *exp);
1051 /* Allocate new fid according to passed @hint. */
1052 int (*o_fid_alloc)(struct obd_export *exp, struct lu_fid *fid,
1053 struct md_op_data *op_data);
1056 * Object with @fid is getting deleted, we may want to do something
1059 int (*o_fid_delete)(struct obd_export *exp, const struct lu_fid *fid);
1061 int (*o_statfs)(struct obd_device *obd, struct obd_statfs *osfs,
1063 int (*o_statfs_async)(struct obd_device *obd, struct obd_info *oinfo,
1064 __u64 max_age, struct ptlrpc_request_set *set);
1065 int (*o_packmd)(struct obd_export *exp, struct lov_mds_md **disk_tgt,
1066 struct lov_stripe_md *mem_src);
1067 int (*o_unpackmd)(struct obd_export *exp,struct lov_stripe_md **mem_tgt,
1068 struct lov_mds_md *disk_src, int disk_len);
1069 int (*o_checkmd)(struct obd_export *exp, struct obd_export *md_exp,
1070 struct lov_stripe_md *mem_tgt);
1071 int (*o_preallocate)(struct lustre_handle *, obd_count *req,
1073 /* FIXME: add fid capability support for create & destroy! */
1074 int (*o_precreate)(struct obd_export *exp, int need_create);
1075 int (*o_create)(struct obd_export *exp, struct obdo *oa,
1076 struct lov_stripe_md **ea, struct obd_trans_info *oti);
1077 int (*o_destroy)(struct obd_export *exp, struct obdo *oa,
1078 struct lov_stripe_md *ea, struct obd_trans_info *oti,
1079 struct obd_export *md_exp);
1080 int (*o_setattr)(struct obd_export *exp, struct obd_info *oinfo,
1081 struct obd_trans_info *oti);
1082 int (*o_setattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1083 struct obd_trans_info *oti,
1084 struct ptlrpc_request_set *rqset);
1085 int (*o_getattr)(struct obd_export *exp, struct obd_info *oinfo);
1086 int (*o_getattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1087 struct ptlrpc_request_set *set);
1088 int (*o_brw)(int rw, struct obd_export *exp, struct obd_info *oinfo,
1089 obd_count oa_bufs, struct brw_page *pgarr,
1090 struct obd_trans_info *oti);
1091 int (*o_brw_async)(int rw, struct obd_export *exp,
1092 struct obd_info *oinfo, obd_count oa_bufs,
1093 struct brw_page *pgarr, struct obd_trans_info *oti,
1094 struct ptlrpc_request_set *);
1095 int (*o_prep_async_page)(struct obd_export *exp,
1096 struct lov_stripe_md *lsm,
1097 struct lov_oinfo *loi,
1098 cfs_page_t *page, obd_off offset,
1099 struct obd_async_page_ops *ops, void *data,
1101 int (*o_queue_async_io)(struct obd_export *exp,
1102 struct lov_stripe_md *lsm,
1103 struct lov_oinfo *loi, void *cookie,
1104 int cmd, obd_off off, int count,
1105 obd_flag brw_flags, obd_flag async_flags);
1106 int (*o_queue_group_io)(struct obd_export *exp,
1107 struct lov_stripe_md *lsm,
1108 struct lov_oinfo *loi,
1109 struct obd_io_group *oig,
1110 void *cookie, int cmd, obd_off off, int count,
1111 obd_flag brw_flags, obd_flag async_flags);
1112 int (*o_trigger_group_io)(struct obd_export *exp,
1113 struct lov_stripe_md *lsm,
1114 struct lov_oinfo *loi,
1115 struct obd_io_group *oig);
1116 int (*o_set_async_flags)(struct obd_export *exp,
1117 struct lov_stripe_md *lsm,
1118 struct lov_oinfo *loi, void *cookie,
1119 obd_flag async_flags);
1120 int (*o_teardown_async_page)(struct obd_export *exp,
1121 struct lov_stripe_md *lsm,
1122 struct lov_oinfo *loi, void *cookie);
1123 int (*o_merge_lvb)(struct obd_export *exp, struct lov_stripe_md *lsm,
1124 struct ost_lvb *lvb, int kms_only);
1125 int (*o_adjust_kms)(struct obd_export *exp, struct lov_stripe_md *lsm,
1126 obd_off size, int shrink);
1127 int (*o_punch)(struct obd_export *exp, struct obd_info *oinfo,
1128 struct obd_trans_info *oti,
1129 struct ptlrpc_request_set *rqset);
1130 int (*o_sync)(struct obd_export *exp, struct obdo *oa,
1131 struct lov_stripe_md *ea, obd_size start, obd_size end,
1133 int (*o_migrate)(struct lustre_handle *conn, struct lov_stripe_md *dst,
1134 struct lov_stripe_md *src, obd_size start,
1135 obd_size end, struct obd_trans_info *oti);
1136 int (*o_copy)(struct lustre_handle *dstconn, struct lov_stripe_md *dst,
1137 struct lustre_handle *srconn, struct lov_stripe_md *src,
1138 obd_size start, obd_size end, struct obd_trans_info *);
1139 int (*o_iterate)(struct lustre_handle *conn,
1140 int (*)(obd_id, obd_gr, void *),
1141 obd_id *startid, obd_gr group, void *data);
1142 int (*o_preprw)(int cmd, struct obd_export *exp, struct obdo *oa,
1143 int objcount, struct obd_ioobj *obj,
1144 int niocount, struct niobuf_remote *remote,
1145 struct niobuf_local *local, struct obd_trans_info *oti,
1146 struct lustre_capa *capa);
1147 int (*o_commitrw)(int cmd, struct obd_export *exp, struct obdo *oa,
1148 int objcount, struct obd_ioobj *obj,
1149 int niocount, struct niobuf_local *local,
1150 struct obd_trans_info *oti, int rc);
1151 int (*o_enqueue)(struct obd_export *, struct obd_info *oinfo,
1152 struct ldlm_enqueue_info *einfo,
1153 struct ptlrpc_request_set *rqset);
1154 int (*o_match)(struct obd_export *, struct lov_stripe_md *, __u32 type,
1155 ldlm_policy_data_t *, __u32 mode, int *flags, void *data,
1156 struct lustre_handle *lockh);
1157 int (*o_change_cbdata)(struct obd_export *, struct lov_stripe_md *,
1158 ldlm_iterator_t it, void *data);
1159 int (*o_cancel)(struct obd_export *, struct lov_stripe_md *md,
1160 __u32 mode, struct lustre_handle *);
1161 int (*o_cancel_unused)(struct obd_export *, struct lov_stripe_md *,
1162 int flags, void *opaque);
1163 int (*o_join_lru)(struct obd_export *, struct lov_stripe_md *,
1165 int (*o_init_export)(struct obd_export *exp);
1166 int (*o_destroy_export)(struct obd_export *exp);
1167 int (*o_extent_calc)(struct obd_export *, struct lov_stripe_md *,
1168 int cmd, obd_off *);
1170 /* llog related obd_methods */
1171 int (*o_llog_init)(struct obd_device *obd, struct obd_llogs *llog,
1172 struct obd_device *disk_obd, int count,
1173 struct llog_catid *logid, struct obd_uuid *uuid);
1174 int (*o_llog_finish)(struct obd_device *obd, int count);
1175 int (*o_llog_connect)(struct obd_export *, struct llogd_conn_body *);
1177 /* metadata-only methods */
1178 int (*o_pin)(struct obd_export *, const struct lu_fid *fid,
1179 struct obd_capa *, struct obd_client_handle *, int flag);
1180 int (*o_unpin)(struct obd_export *, struct obd_client_handle *, int);
1182 int (*o_import_event)(struct obd_device *, struct obd_import *,
1183 enum obd_import_event);
1185 int (*o_notify)(struct obd_device *obd, struct obd_device *watched,
1186 enum obd_notify_event ev, void *data);
1188 int (*o_health_check)(struct obd_device *);
1191 int (*o_quotacheck)(struct obd_export *, struct obd_quotactl *);
1192 int (*o_quotactl)(struct obd_export *, struct obd_quotactl *);
1194 int (*o_ping)(struct obd_export *exp);
1196 * NOTE: If adding ops, add another LPROCFS_OBD_OP_INIT() line
1197 * to lprocfs_alloc_obd_stats() in obdclass/lprocfs_status.c.
1198 * Also, add a wrapper function in include/linux/obd_class.h. */
1201 /* TODO: lmv_stripe_md should contain mds capabilities for all slave fids */
1202 struct lmv_stripe_md {
1207 struct lu_fid mea_ids[0];
1211 LUSTRE_OPC_MKDIR = (1 << 0),
1212 LUSTRE_OPC_SYMLINK = (1 << 1),
1213 LUSTRE_OPC_MKNOD = (1 << 2),
1214 LUSTRE_OPC_CREATE = (1 << 3),
1215 LUSTRE_OPC_ANY = (1 << 4)
1218 /* lmv structures */
1219 #define MEA_MAGIC_LAST_CHAR 0xb2221ca1
1220 #define MEA_MAGIC_ALL_CHARS 0xb222a11c
1221 #define MEA_MAGIC_HASH_SEGMENT 0xb222a11b
1223 #define MAX_HASH_SIZE 0x7fffffffUL
1224 #define MAX_HASH_HIGHEST_BIT 0x10000000
1227 struct mdt_body *body;
1228 struct lov_stripe_md *lsm;
1229 struct lmv_stripe_md *mea;
1230 #ifdef CONFIG_FS_POSIX_ACL
1231 struct posix_acl *posix_acl;
1233 struct mdt_remote_perm *remote_perm;
1234 struct obd_capa *mds_capa;
1235 struct obd_capa *oss_capa;
1238 struct md_open_data {
1239 struct obd_client_handle *mod_och;
1240 struct list_head mod_replay_list;
1244 int (*m_getstatus)(struct obd_export *, struct lu_fid *,
1245 struct obd_capa **);
1246 int (*m_change_cbdata)(struct obd_export *, const struct lu_fid *,
1247 ldlm_iterator_t, void *);
1248 int (*m_close)(struct obd_export *, struct md_op_data *,
1249 struct md_open_data *, struct ptlrpc_request **);
1250 int (*m_create)(struct obd_export *, struct md_op_data *,
1251 const void *, int, int, __u32, __u32, __u32,
1252 __u64, struct ptlrpc_request **);
1253 int (*m_done_writing)(struct obd_export *, struct md_op_data *,
1254 struct md_open_data *);
1255 int (*m_enqueue)(struct obd_export *, struct ldlm_enqueue_info *,
1256 struct lookup_intent *, struct md_op_data *,
1257 struct lustre_handle *, void *, int, int);
1258 int (*m_getattr)(struct obd_export *, const struct lu_fid *,
1259 struct obd_capa *, obd_valid, int,
1260 struct ptlrpc_request **);
1261 int (*m_getattr_name)(struct obd_export *, const struct lu_fid *,
1262 struct obd_capa *, const char *, int, obd_valid,
1263 int, struct ptlrpc_request **);
1264 int (*m_intent_lock)(struct obd_export *, struct md_op_data *,
1265 void *, int, struct lookup_intent *, int,
1266 struct ptlrpc_request **,
1267 ldlm_blocking_callback, int);
1268 int (*m_link)(struct obd_export *, struct md_op_data *,
1269 struct ptlrpc_request **);
1270 int (*m_rename)(struct obd_export *, struct md_op_data *,
1271 const char *, int, const char *, int,
1272 struct ptlrpc_request **);
1273 int (*m_is_subdir)(struct obd_export *, const struct lu_fid *,
1274 const struct lu_fid *,
1275 struct ptlrpc_request **);
1276 int (*m_setattr)(struct obd_export *, struct md_op_data *, void *,
1277 int , void *, int, struct ptlrpc_request **,
1278 struct md_open_data **mod);
1279 int (*m_sync)(struct obd_export *, const struct lu_fid *,
1280 struct obd_capa *, struct ptlrpc_request **);
1281 int (*m_readpage)(struct obd_export *, const struct lu_fid *,
1282 struct obd_capa *, __u64, struct page *,
1283 struct ptlrpc_request **);
1285 int (*m_unlink)(struct obd_export *, struct md_op_data *,
1286 struct ptlrpc_request **);
1288 int (*m_setxattr)(struct obd_export *, const struct lu_fid *,
1289 struct obd_capa *, obd_valid, const char *,
1290 const char *, int, int, int,
1291 struct ptlrpc_request **);
1293 int (*m_getxattr)(struct obd_export *, const struct lu_fid *,
1294 struct obd_capa *, obd_valid, const char *,
1295 const char *, int, int, int,
1296 struct ptlrpc_request **);
1298 int (*m_init_ea_size)(struct obd_export *, int, int, int);
1300 int (*m_get_lustre_md)(struct obd_export *, struct ptlrpc_request *,
1301 int, struct obd_export *, struct obd_export *,
1302 struct lustre_md *);
1304 int (*m_free_lustre_md)(struct obd_export *, struct lustre_md *);
1306 int (*m_set_open_replay_data)(struct obd_export *,
1307 struct obd_client_handle *,
1308 struct ptlrpc_request *);
1309 int (*m_clear_open_replay_data)(struct obd_export *,
1310 struct obd_client_handle *);
1311 int (*m_set_lock_data)(struct obd_export *, __u64 *, void *);
1313 int (*m_lock_match)(struct obd_export *, int, const struct lu_fid *,
1314 ldlm_type_t, ldlm_policy_data_t *, ldlm_mode_t,
1315 struct lustre_handle *);
1317 int (*m_cancel_unused)(struct obd_export *, const struct lu_fid *,
1318 ldlm_policy_data_t *, ldlm_mode_t, int flags,
1320 int (*m_renew_capa)(struct obd_export *, struct obd_capa *oc,
1321 renew_capa_cb_t cb);
1323 int (*m_get_remote_perm)(struct obd_export *, const struct lu_fid *,
1324 struct obd_capa *, struct ptlrpc_request **);
1327 * NOTE: If adding ops, add another LPROCFS_MD_OP_INIT() line to
1328 * lprocfs_alloc_md_stats() in obdclass/lprocfs_status.c. Also, add a
1329 * wrapper function in include/linux/obd_class.h.
1333 struct lsm_operations {
1334 void (*lsm_free)(struct lov_stripe_md *);
1335 int (*lsm_destroy)(struct lov_stripe_md *, struct obdo *oa,
1336 struct obd_export *md_exp);
1337 void (*lsm_stripe_by_index)(struct lov_stripe_md *, int *, obd_off *,
1339 void (*lsm_stripe_by_offset)(struct lov_stripe_md *, int *, obd_off *,
1341 obd_off (*lsm_stripe_offset_by_index)(struct lov_stripe_md *, int);
1342 obd_off (*lsm_stripe_offset_by_offset)(struct lov_stripe_md *, obd_off);
1343 int (*lsm_stripe_index_by_offset)(struct lov_stripe_md *, obd_off);
1344 int (*lsm_revalidate) (struct lov_stripe_md *, struct obd_device *obd);
1345 int (*lsm_lmm_verify) (struct lov_mds_md *lmm, int lmm_bytes,
1347 int (*lsm_unpackmd) (struct lov_obd *lov, struct lov_stripe_md *lsm,
1348 struct lov_mds_md *lmm);
1351 extern struct lsm_operations lsm_plain_ops;
1352 extern struct lsm_operations lsm_join_ops;
1353 static inline struct lsm_operations *lsm_op_find(int magic)
1357 return &lsm_plain_ops;
1358 case LOV_MAGIC_JOIN:
1359 return &lsm_join_ops;
1361 CERROR("Cannot recognize lsm_magic %d\n", magic);
1366 int lvfs_check_io_health(struct obd_device *obd, struct file *file);
1368 /* Requests for obd_extent_calc() */
1369 #define OBD_CALC_STRIPE_START 1
1370 #define OBD_CALC_STRIPE_END 2
1372 static inline void obd_transno_commit_cb(struct obd_device *obd, __u64 transno,
1376 CERROR("%s: transno "LPD64" commit error: %d\n",
1377 obd->obd_name, transno, error);
1380 CDEBUG(D_HA, "%s: transno "LPD64" committed\n",
1381 obd->obd_name, transno);
1382 if (transno > obd->obd_last_committed) {
1383 obd->obd_last_committed = transno;
1384 ptlrpc_commit_replies (obd);
1388 static inline void init_obd_quota_ops(quota_interface_t *interface,
1389 struct obd_ops *obd_ops)
1395 obd_ops->o_quotacheck = QUOTA_OP(interface, check);
1396 obd_ops->o_quotactl = QUOTA_OP(interface, ctl);
1399 static inline __u64 oinfo_mdsno(struct obd_info *oinfo)
1401 return oinfo->oi_oa->o_gr - FILTER_GROUP_MDS0;
1404 static inline struct lustre_capa *oinfo_capa(struct obd_info *oinfo)
1406 return oinfo->oi_capa;
1409 #endif /* __OBD_H */