Whamcloud - gitweb
LU-1445 osp: Use FID to track precreate cache.
[fs/lustre-release.git] / lustre / include / obd.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef __OBD_H
38 #define __OBD_H
39
40 #if defined(__linux__)
41 #include <linux/obd.h>
42 #elif defined(__APPLE__)
43 #include <darwin/obd.h>
44 #elif defined(__WINNT__)
45 #include <winnt/obd.h>
46 #else
47 #error Unsupported operating system.
48 #endif
49
50 #define IOC_OSC_TYPE         'h'
51 #define IOC_OSC_MIN_NR       20
52 #define IOC_OSC_SET_ACTIVE   _IOWR(IOC_OSC_TYPE, 21, struct obd_device *)
53 #define IOC_OSC_MAX_NR       50
54
55 #define IOC_MDC_TYPE         'i'
56 #define IOC_MDC_MIN_NR       20
57 #define IOC_MDC_MAX_NR       50
58
59 #include <lustre/lustre_idl.h>
60 #ifdef HAVE_SERVER_SUPPORT
61 # include <lu_target.h>
62 #endif
63 #include <lu_ref.h>
64 #include <lustre_lib.h>
65 #include <lustre_export.h>
66 #include <lustre_fld.h>
67 #include <lustre_capa.h>
68
69 #include <libcfs/bitmap.h>
70
71
72 #define MAX_OBD_DEVICES 8192
73
74 struct osc_async_rc {
75         int     ar_rc;
76         int     ar_force_sync;
77         __u64   ar_min_xid;
78 };
79
80 struct lov_oinfo {                 /* per-stripe data structure */
81         struct ost_id   loi_oi;    /* object ID/Sequence on the target OST */
82         int loi_ost_idx;           /* OST stripe index in lov_tgt_desc->tgts */
83         int loi_ost_gen;           /* generation of this loi_ost_idx */
84
85         unsigned long loi_kms_valid:1;
86         __u64 loi_kms;             /* known minimum size */
87         struct ost_lvb loi_lvb;
88         struct osc_async_rc     loi_ar;
89 };
90 #define loi_id  loi_oi.oi_id
91 #define loi_seq loi_oi.oi_seq
92
93 static inline void loi_kms_set(struct lov_oinfo *oinfo, __u64 kms)
94 {
95         oinfo->loi_kms = kms;
96         oinfo->loi_kms_valid = 1;
97 }
98
99 static inline void loi_init(struct lov_oinfo *loi)
100 {
101 }
102
103 struct lov_stripe_md {
104         cfs_atomic_t     lsm_refc;
105         spinlock_t      lsm_lock;
106         pid_t            lsm_lock_owner; /* debugging */
107
108         /* maximum possible file size, might change as OSTs status changes,
109          * e.g. disconnected, deactivated */
110         __u64            lsm_maxbytes;
111         struct {
112                 /* Public members. */
113                 __u64 lw_object_id;        /* lov object id */
114                 __u64 lw_object_seq;       /* lov object seq */
115
116                 /* LOV-private members start here -- only for use in lov/. */
117                 __u32 lw_magic;
118                 __u32 lw_stripe_size;      /* size of the stripe */
119                 __u32 lw_pattern;          /* striping pattern (RAID0, RAID1) */
120                 __u16 lw_stripe_count;  /* number of objects being striped over */
121                 __u16 lw_layout_gen;       /* generation of the layout */
122                 char  lw_pool_name[LOV_MAXPOOLNAME]; /* pool name */
123         } lsm_wire;
124
125         struct lov_oinfo *lsm_oinfo[0];
126 };
127
128 #define lsm_object_id    lsm_wire.lw_object_id
129 #define lsm_object_seq   lsm_wire.lw_object_seq
130 #define lsm_magic        lsm_wire.lw_magic
131 #define lsm_layout_gen   lsm_wire.lw_layout_gen
132 #define lsm_stripe_size  lsm_wire.lw_stripe_size
133 #define lsm_pattern      lsm_wire.lw_pattern
134 #define lsm_stripe_count lsm_wire.lw_stripe_count
135 #define lsm_pool_name    lsm_wire.lw_pool_name
136
137 struct obd_info;
138
139 typedef int (*obd_enqueue_update_f)(void *cookie, int rc);
140
141 /* obd info for a particular level (lov, osc). */
142 struct obd_info {
143         /* Lock policy. It keeps an extent which is specific for a particular
144          * OSC. (e.g. lov_prep_enqueue_set initialises extent of the policy,
145          * and osc_enqueue passes it into ldlm_lock_match & ldlm_cli_enqueue. */
146         ldlm_policy_data_t      oi_policy;
147         /* Flags used for set request specific flags:
148            - while lock handling, the flags obtained on the enqueue
149            request are set here.
150            - while stats, the flags used for control delay/resend.
151            - while setattr, the flags used for distinguish punch operation
152          */
153         __u64                   oi_flags;
154         /* Lock handle specific for every OSC lock. */
155         struct lustre_handle   *oi_lockh;
156         /* lsm data specific for every OSC. */
157         struct lov_stripe_md   *oi_md;
158         /* obdo data specific for every OSC, if needed at all. */
159         struct obdo            *oi_oa;
160         /* statfs data specific for every OSC, if needed at all. */
161         struct obd_statfs      *oi_osfs;
162         /* An update callback which is called to update some data on upper
163          * level. E.g. it is used for update lsm->lsm_oinfo at every recieved
164          * request in osc level for enqueue requests. It is also possible to
165          * update some caller data from LOV layer if needed. */
166         obd_enqueue_update_f    oi_cb_up;
167         /* oss capability, its type is obd_capa in client to avoid copy.
168          * in contrary its type is lustre_capa in OSS. */
169         void                   *oi_capa;
170         /* transfer jobid from ost_sync() to filter_sync()... */
171         char                   *oi_jobid;
172 };
173
174 /* compare all relevant fields. */
175 static inline int lov_stripe_md_cmp(struct lov_stripe_md *m1,
176                                     struct lov_stripe_md *m2)
177 {
178         /*
179          * ->lsm_wire contains padding, but it should be zeroed out during
180          * allocation.
181          */
182         return memcmp(&m1->lsm_wire, &m2->lsm_wire, sizeof m1->lsm_wire);
183 }
184
185 static inline int lov_lum_lsm_cmp(struct lov_user_md *lum,
186                                   struct lov_stripe_md  *lsm)
187 {
188         if (lsm->lsm_magic != lum->lmm_magic)
189                 return 1;
190         if ((lsm->lsm_stripe_count != 0) && (lum->lmm_stripe_count != 0) &&
191             (lsm->lsm_stripe_count != lum->lmm_stripe_count))
192                 return 2;
193         if ((lsm->lsm_stripe_size != 0) && (lum->lmm_stripe_size != 0) &&
194             (lsm->lsm_stripe_size != lum->lmm_stripe_size))
195                 return 3;
196         if ((lsm->lsm_pattern != 0) && (lum->lmm_pattern != 0) &&
197             (lsm->lsm_pattern != lum->lmm_pattern))
198                 return 4;
199         if ((lsm->lsm_magic == LOV_MAGIC_V3) &&
200             (strncmp(lsm->lsm_pool_name,
201                      ((struct lov_user_md_v3 *)lum)->lmm_pool_name,
202                      LOV_MAXPOOLNAME) != 0))
203                 return 5;
204         return 0;
205 }
206
207 static inline int lov_lum_swab_if_needed(struct lov_user_md_v3 *lumv3,
208                                          int *lmm_magic,
209                                          struct lov_user_md *lum)
210 {
211         if (lum && cfs_copy_from_user(lumv3, lum,sizeof(struct lov_user_md_v1)))
212                 return -EFAULT;
213
214         *lmm_magic = lumv3->lmm_magic;
215
216         if (*lmm_magic == __swab32(LOV_USER_MAGIC_V1)) {
217                 lustre_swab_lov_user_md_v1((struct lov_user_md_v1 *)lumv3);
218                 *lmm_magic = LOV_USER_MAGIC_V1;
219         } else if (*lmm_magic == LOV_USER_MAGIC_V3) {
220                 if (lum && cfs_copy_from_user(lumv3, lum, sizeof(*lumv3)))
221                         return -EFAULT;
222         } else if (*lmm_magic == __swab32(LOV_USER_MAGIC_V3)) {
223                 if (lum && cfs_copy_from_user(lumv3, lum, sizeof(*lumv3)))
224                         return -EFAULT;
225                 lustre_swab_lov_user_md_v3(lumv3);
226                 *lmm_magic = LOV_USER_MAGIC_V3;
227         } else if (*lmm_magic != LOV_USER_MAGIC_V1) {
228                 CDEBUG(D_IOCTL,
229                        "bad userland LOV MAGIC: %#08x != %#08x nor %#08x\n",
230                        *lmm_magic, LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3);
231                        return -EINVAL;
232         }
233         return 0;
234 }
235
236 void lov_stripe_lock(struct lov_stripe_md *md);
237 void lov_stripe_unlock(struct lov_stripe_md *md);
238
239 struct obd_type {
240         cfs_list_t typ_chain;
241         struct obd_ops *typ_dt_ops;
242         struct md_ops *typ_md_ops;
243         cfs_proc_dir_entry_t *typ_procroot;
244         char *typ_name;
245         int  typ_refcnt;
246         struct lu_device_type *typ_lu;
247         spinlock_t obd_type_lock;
248 };
249
250 struct brw_page {
251         obd_off  off;
252         cfs_page_t *pg;
253         int count;
254         obd_flag flag;
255 };
256
257 /* Individual type definitions */
258
259 struct ost_server_data;
260
261 struct osd_properties {
262         size_t osd_max_ea_size;
263 };
264
265 #define OBT_MAGIC       0xBDDECEAE
266 /* hold common fields for "target" device */
267 struct obd_device_target {
268         __u32                     obt_magic;
269         __u32                     obt_instance;
270         struct super_block       *obt_sb;
271         /** last_rcvd file */
272         struct file              *obt_rcvd_filp;
273 #ifdef HAVE_SERVER_SUPPORT
274         struct lu_target         *obt_lut;
275 #endif
276         __u64                     obt_mount_count;
277         struct rw_semaphore       obt_rwsem;
278         struct vfsmount          *obt_vfsmnt;
279         struct file              *obt_health_check_filp;
280         struct osd_properties     obt_osd_properties;
281         struct obd_job_stats      obt_jobstats;
282 };
283
284 /* llog contexts */
285 enum llog_ctxt_id {
286         LLOG_CONFIG_ORIG_CTXT  =  0,
287         LLOG_CONFIG_REPL_CTXT,
288         LLOG_MDS_OST_ORIG_CTXT,
289         LLOG_MDS_OST_REPL_CTXT,
290         LLOG_SIZE_ORIG_CTXT,
291         LLOG_SIZE_REPL_CTXT,
292         LLOG_RD1_ORIG_CTXT,
293         LLOG_RD1_REPL_CTXT,
294         LLOG_TEST_ORIG_CTXT,
295         LLOG_TEST_REPL_CTXT,
296         LLOG_LOVEA_ORIG_CTXT,
297         LLOG_LOVEA_REPL_CTXT,
298         LLOG_CHANGELOG_ORIG_CTXT,      /**< changelog generation on mdd */
299         LLOG_CHANGELOG_REPL_CTXT,      /**< changelog access on clients */
300         LLOG_CHANGELOG_USER_ORIG_CTXT, /**< for multiple changelog consumers */
301         LLOG_MAX_CTXTS
302 };
303
304 #define FILTER_SUBDIR_COUNT      32            /* set to zero for no subdirs */
305
306 struct filter_subdirs {
307        cfs_dentry_t *dentry[FILTER_SUBDIR_COUNT];
308 };
309
310
311 struct filter_ext {
312         __u64                fe_start;
313         __u64                fe_end;
314 };
315
316 struct filter_obd {
317         /* NB this field MUST be first */
318         struct obd_device_target fo_obt;
319         const char          *fo_fstype;
320
321         int                  fo_group_count;
322         cfs_dentry_t        *fo_dentry_O;
323         cfs_dentry_t       **fo_dentry_O_groups;
324         struct filter_subdirs   *fo_dentry_O_sub;
325         struct mutex            fo_init_lock;   /* group initialization lock*/
326         int                     fo_committed_group;
327
328         spinlock_t              fo_objidlock;   /* protect fo_lastobjid */
329
330         unsigned long           fo_destroys_in_progress;
331         struct mutex            fo_create_locks[FILTER_SUBDIR_COUNT];
332
333         cfs_list_t fo_export_list;
334         int                  fo_subdir_count;
335
336         obd_size             fo_tot_dirty;      /* protected by obd_osfs_lock */
337         obd_size             fo_tot_granted;    /* all values in bytes */
338         obd_size             fo_tot_pending;
339         int                  fo_tot_granted_clients;
340
341         obd_size             fo_readcache_max_filesize;
342         spinlock_t              fo_flags_lock;
343         unsigned int         fo_read_cache:1,   /**< enable read-only cache */
344                              fo_writethrough_cache:1,/**< read cache writes */
345                              fo_mds_ost_sync:1, /**< MDS-OST orphan recovery*/
346                              fo_raid_degraded:1;/**< RAID device degraded */
347
348         struct obd_import   *fo_mdc_imp;
349         struct obd_uuid      fo_mdc_uuid;
350         struct lustre_handle fo_mdc_conn;
351         struct file        **fo_last_objid_files;
352         __u64               *fo_last_objids; /* last created objid for groups,
353                                               * protected by fo_objidlock */
354
355         struct mutex            fo_alloc_lock;
356
357         cfs_atomic_t         fo_r_in_flight;
358         cfs_atomic_t         fo_w_in_flight;
359
360         /*
361          * per-filter pool of kiobuf's allocated by filter_common_setup() and
362          * torn down by filter_cleanup().
363          *
364          * This pool contains kiobuf used by
365          * filter_{prep,commit}rw_{read,write}() and is shared by all OST
366          * threads.
367          *
368          * Locking: protected by internal lock of cfs_hash, pool can be
369          * found from this hash table by t_id of ptlrpc_thread.
370          */
371         struct cfs_hash         *fo_iobuf_hash;
372
373         cfs_list_t              fo_llog_list;
374         spinlock_t              fo_llog_list_lock;
375
376         struct brw_stats         fo_filter_stats;
377
378         int                      fo_fmd_max_num; /* per exp filter_mod_data */
379         int                      fo_fmd_max_age; /* jiffies to fmd expiry */
380         unsigned long            fo_syncjournal:1, /* sync journal on writes */
381                                  fo_sync_lock_cancel:2;/* sync on lock cancel */
382
383
384         /* sptlrpc stuff */
385         rwlock_t                fo_sptlrpc_lock;
386         struct sptlrpc_rule_set  fo_sptlrpc_rset;
387
388         /* capability related */
389         unsigned int             fo_fl_oss_capa;
390         cfs_list_t               fo_capa_keys;
391         cfs_hlist_head_t        *fo_capa_hash;
392         struct llog_commit_master *fo_lcm;
393         int                      fo_sec_level;
394 };
395
396 struct timeout_item {
397         enum timeout_event ti_event;
398         cfs_time_t         ti_timeout;
399         timeout_cb_t       ti_cb;
400         void              *ti_cb_data;
401         cfs_list_t         ti_obd_list;
402         cfs_list_t         ti_chain;
403 };
404
405 #define OSC_MAX_RIF_DEFAULT       8
406 #define MDS_OSC_MAX_RIF_DEFAULT   50
407 #define OSC_MAX_RIF_MAX         256
408 #define OSC_MAX_DIRTY_DEFAULT  (OSC_MAX_RIF_DEFAULT * 4)
409 #define OSC_MAX_DIRTY_MB_MAX   2048     /* arbitrary, but < MAX_LONG bytes */
410 #define OSC_DEFAULT_RESENDS      10
411
412 /* possible values for fo_sync_lock_cancel */
413 enum {
414         NEVER_SYNC_ON_CANCEL = 0,
415         BLOCKING_SYNC_ON_CANCEL = 1,
416         ALWAYS_SYNC_ON_CANCEL = 2,
417         NUM_SYNC_ON_CANCEL_STATES
418 };
419
420 #define MDC_MAX_RIF_DEFAULT       8
421 #define MDC_MAX_RIF_MAX         512
422
423 struct mdc_rpc_lock;
424 struct obd_import;
425 struct client_obd {
426         struct rw_semaphore  cl_sem;
427         struct obd_uuid          cl_target_uuid;
428         struct obd_import       *cl_import; /* ptlrpc connection state */
429         int                      cl_conn_count;
430         /* max_mds_easize is purely a performance thing so we don't have to
431          * call obd_size_diskmd() all the time. */
432         int                      cl_default_mds_easize;
433         int                      cl_max_mds_easize;
434         int                      cl_max_mds_cookiesize;
435
436         enum lustre_sec_part     cl_sp_me;
437         enum lustre_sec_part     cl_sp_to;
438         struct sptlrpc_flavor    cl_flvr_mgc;   /* fixed flavor of mgc->mgs */
439
440         //struct llog_canceld_ctxt *cl_llcd; /* it's included by obd_llog_ctxt */
441         void                    *cl_llcd_offset;
442
443         /* the grant values are protected by loi_list_lock below */
444         long                     cl_dirty;         /* all _dirty_ in bytes */
445         long                     cl_dirty_max;     /* allowed w/o rpc */
446         long                     cl_dirty_transit; /* dirty synchronous */
447         long                     cl_avail_grant;   /* bytes of credit for ost */
448         long                     cl_lost_grant;    /* lost credits (trunc) */
449
450         /* since we allocate grant by blocks, we don't know how many grant will
451          * be used to add a page into cache. As a solution, we reserve maximum
452          * grant before trying to dirty a page and unreserve the rest.
453          * See osc_{reserve|unreserve}_grant for details. */
454         long                 cl_reserved_grant;
455         cfs_list_t           cl_cache_waiters; /* waiting for cache/grant */
456         cfs_time_t           cl_next_shrink_grant;   /* jiffies */
457         cfs_list_t           cl_grant_shrink_list;  /* Timeout event list */
458         int                  cl_grant_shrink_interval; /* seconds */
459
460         /* A chunk is an optimal size used by osc_extent to determine
461          * the extent size. A chunk is max(CFS_PAGE_SIZE, OST block size) */
462         int                  cl_chunkbits;
463         int                  cl_chunk;
464         int                  cl_extent_tax; /* extent overhead, by bytes */
465
466         /* keep track of objects that have lois that contain pages which
467          * have been queued for async brw.  this lock also protects the
468          * lists of osc_client_pages that hang off of the loi */
469         /*
470          * ->cl_loi_list_lock protects consistency of
471          * ->cl_loi_{ready,read,write}_list. ->ap_make_ready() and
472          * ->ap_completion() call-backs are executed under this lock. As we
473          * cannot guarantee that these call-backs never block on all platforms
474          * (as a matter of fact they do block on Mac OS X), type of
475          * ->cl_loi_list_lock is platform dependent: it's a spin-lock on Linux
476          * and blocking mutex on Mac OS X. (Alternative is to make this lock
477          * blocking everywhere, but we don't want to slow down fast-path of
478          * our main platform.)
479          *
480          * Exact type of ->cl_loi_list_lock is defined in arch/obd.h together
481          * with client_obd_list_{un,}lock() and
482          * client_obd_list_lock_{init,done}() functions.
483          *
484          * NB by Jinshan: though field names are still _loi_, but actually
485          * osc_object{}s are in the list.
486          */
487         client_obd_lock_t        cl_loi_list_lock;
488         cfs_list_t               cl_loi_ready_list;
489         cfs_list_t               cl_loi_hp_ready_list;
490         cfs_list_t               cl_loi_write_list;
491         cfs_list_t               cl_loi_read_list;
492         int                      cl_r_in_flight;
493         int                      cl_w_in_flight;
494         /* just a sum of the loi/lop pending numbers to be exported by /proc */
495         cfs_atomic_t             cl_pending_w_pages;
496         cfs_atomic_t             cl_pending_r_pages;
497         int                      cl_max_pages_per_rpc;
498         int                      cl_max_rpcs_in_flight;
499         struct obd_histogram     cl_read_rpc_hist;
500         struct obd_histogram     cl_write_rpc_hist;
501         struct obd_histogram     cl_read_page_hist;
502         struct obd_histogram     cl_write_page_hist;
503         struct obd_histogram     cl_read_offset_hist;
504         struct obd_histogram     cl_write_offset_hist;
505
506         /* lru for osc caching pages */
507         struct cl_client_cache  *cl_cache;
508         cfs_list_t               cl_lru_osc; /* member of cl_cache->ccc_lru */
509         cfs_atomic_t            *cl_lru_left;
510         cfs_atomic_t             cl_lru_busy;
511         cfs_atomic_t             cl_lru_shrinkers;
512         cfs_atomic_t             cl_lru_in_list;
513         cfs_list_t               cl_lru_list; /* lru page list */
514         client_obd_lock_t        cl_lru_list_lock; /* page list protector */
515
516         /* number of in flight destroy rpcs is limited to max_rpcs_in_flight */
517         cfs_atomic_t             cl_destroy_in_flight;
518         cfs_waitq_t              cl_destroy_waitq;
519
520         struct mdc_rpc_lock     *cl_rpc_lock;
521         struct mdc_rpc_lock     *cl_close_lock;
522
523         /* mgc datastruct */
524         struct semaphore         cl_mgc_sem;
525         struct vfsmount         *cl_mgc_vfsmnt;
526         struct dentry           *cl_mgc_configs_dir;
527         cfs_atomic_t             cl_mgc_refcount;
528         struct obd_export       *cl_mgc_mgsexp;
529
530         /* checksumming for data sent over the network */
531         unsigned int             cl_checksum:1; /* 0 = disabled, 1 = enabled */
532         /* supported checksum types that are worked out at connect time */
533         __u32                    cl_supp_cksum_types;
534         /* checksum algorithm to be used */
535         cksum_type_t             cl_cksum_type;
536
537         /* also protected by the poorly named _loi_list_lock lock above */
538         struct osc_async_rc      cl_ar;
539
540         /* used by quotacheck when the servers are older than 2.4 */
541         int                      cl_qchk_stat; /* quotacheck stat of the peer */
542 #define CL_NOT_QUOTACHECKED 1   /* client->cl_qchk_stat init value */
543 #if LUSTRE_VERSION_CODE >= OBD_OCD_VERSION(2, 7, 50, 0)
544 #warning "please consider removing quotacheck compatibility code"
545 #endif
546
547         /* sequence manager */
548         struct lu_client_seq    *cl_seq;
549
550         cfs_atomic_t             cl_resends; /* resend count */
551
552         /* ptlrpc work for writeback in ptlrpcd context */
553         void                    *cl_writeback_work;
554         /* hash tables for osc_quota_info */
555         cfs_hash_t              *cl_quota_hash[MAXQUOTAS];
556 };
557 #define obd2cli_tgt(obd) ((char *)(obd)->u.cli.cl_target_uuid.uuid)
558
559 struct obd_id_info {
560         __u32   idx;
561         obd_id  *data;
562 };
563
564 /* */
565
566 struct echo_obd {
567         struct obd_device_target eo_obt;
568         struct obdo             eo_oa;
569         spinlock_t               eo_lock;
570         __u64                    eo_lastino;
571         struct lustre_handle    eo_nl_lock;
572         cfs_atomic_t            eo_prep;
573 };
574
575 struct ost_obd {
576         struct ptlrpc_service   *ost_service;
577         struct ptlrpc_service   *ost_create_service;
578         struct ptlrpc_service   *ost_io_service;
579         struct ptlrpc_service   *ost_seq_service;
580         struct mutex            ost_health_mutex;
581 };
582
583 struct echo_client_obd {
584         struct obd_export       *ec_exp;   /* the local connection to osc/lov */
585         spinlock_t              ec_lock;
586         cfs_list_t           ec_objects;
587         cfs_list_t           ec_locks;
588         int                  ec_nstripes;
589         __u64                ec_unique;
590 };
591
592 struct lov_qos_oss {
593         struct obd_uuid     lqo_uuid;       /* ptlrpc's c_remote_uuid */
594         cfs_list_t          lqo_oss_list;   /* link to lov_qos */
595         __u64               lqo_bavail;     /* total bytes avail on OSS */
596         __u64               lqo_penalty;    /* current penalty */
597         __u64               lqo_penalty_per_obj;/* penalty decrease every obj*/
598         time_t              lqo_used;       /* last used time, seconds */
599         __u32               lqo_ost_count;  /* number of osts on this oss */
600 };
601
602 struct ltd_qos {
603         struct lov_qos_oss *ltq_oss;         /* oss info */
604         __u64               ltq_penalty;     /* current penalty */
605         __u64               ltq_penalty_per_obj; /* penalty decrease every obj*/
606         __u64               ltq_weight;      /* net weighting */
607         time_t              ltq_used;        /* last used time, seconds */
608         unsigned int        ltq_usable:1;    /* usable for striping */
609 };
610
611 /* Generic subset of OSTs */
612 struct ost_pool {
613         __u32              *op_array;      /* array of index of
614                                                    lov_obd->lov_tgts */
615         unsigned int        op_count;      /* number of OSTs in the array */
616         unsigned int        op_size;       /* allocated size of lp_array */
617         struct rw_semaphore op_rw_sem;     /* to protect ost_pool use */
618 };
619
620 /* Round-robin allocator data */
621 struct lov_qos_rr {
622         __u32               lqr_start_idx;   /* start index of new inode */
623         __u32               lqr_offset_idx;  /* aliasing for start_idx  */
624         int                 lqr_start_count; /* reseed counter */
625         struct ost_pool     lqr_pool;        /* round-robin optimized list */
626         unsigned long       lqr_dirty:1;     /* recalc round-robin list */
627 };
628
629 /* allow statfs data caching for 1 second */
630 #define OBD_STATFS_CACHE_SECONDS 1
631
632 struct lov_statfs_data {
633         struct obd_info   lsd_oi;
634         struct obd_statfs lsd_statfs;
635 };
636 /* Stripe placement optimization */
637 struct lov_qos {
638         cfs_list_t          lq_oss_list; /* list of OSSs that targets use */
639         struct rw_semaphore lq_rw_sem;
640         __u32               lq_active_oss_count;
641         unsigned int        lq_prio_free;   /* priority for free space */
642         unsigned int        lq_threshold_rr;/* priority for rr */
643         struct lov_qos_rr   lq_rr;          /* round robin qos data */
644         unsigned long       lq_dirty:1,     /* recalc qos data */
645                             lq_same_space:1,/* the ost's all have approx.
646                                                the same space avail */
647                             lq_reset:1,     /* zero current penalties */
648                             lq_statfs_in_progress:1; /* statfs op in
649                                                         progress */
650         /* qos statfs data */
651         struct lov_statfs_data *lq_statfs_data;
652         cfs_waitq_t         lq_statfs_waitq; /* waitqueue to notify statfs
653                                               * requests completion */
654 };
655
656 struct lov_tgt_desc {
657         cfs_list_t          ltd_kill;
658         struct obd_uuid     ltd_uuid;
659         struct obd_device  *ltd_obd;
660         struct obd_export  *ltd_exp;
661         struct ltd_qos      ltd_qos;     /* qos info per target */
662         __u32               ltd_gen;
663         __u32               ltd_index;   /* index in lov_obd->tgts */
664         unsigned long       ltd_active:1,/* is this target up for requests */
665                             ltd_activate:1,/* should  target be activated */
666                             ltd_reap:1;  /* should this target be deleted */
667 };
668
669 /* Pool metadata */
670 #define pool_tgt_size(_p)   _p->pool_obds.op_size
671 #define pool_tgt_count(_p)  _p->pool_obds.op_count
672 #define pool_tgt_array(_p)  _p->pool_obds.op_array
673 #define pool_tgt_rw_sem(_p) _p->pool_obds.op_rw_sem
674
675 struct pool_desc {
676         char                  pool_name[LOV_MAXPOOLNAME + 1]; /* name of pool */
677         struct ost_pool       pool_obds;              /* pool members */
678         cfs_atomic_t          pool_refcount;          /* pool ref. counter */
679         struct lov_qos_rr     pool_rr;                /* round robin qos */
680         cfs_hlist_node_t      pool_hash;              /* access by poolname */
681         cfs_list_t            pool_list;              /* serial access */
682         cfs_proc_dir_entry_t *pool_proc_entry;        /* file in /proc */
683         struct obd_device    *pool_lobd;              /* obd of the lov/lod to which
684                                                        * this pool belongs */
685 };
686
687 struct lov_obd {
688         struct lov_desc         desc;
689         struct lov_tgt_desc   **lov_tgts;              /* sparse array */
690         struct ost_pool         lov_packed;            /* all OSTs in a packed
691                                                           array */
692         struct mutex            lov_lock;
693         struct obd_connect_data lov_ocd;
694         cfs_atomic_t            lov_refcount;
695         __u32                   lov_tgt_count;         /* how many OBD's */
696         __u32                   lov_active_tgt_count;  /* how many active */
697         __u32                   lov_death_row;/* tgts scheduled to be deleted */
698         __u32                   lov_tgt_size;   /* size of tgts array */
699         int                     lov_connects;
700         int                     lov_pool_count;
701         cfs_hash_t             *lov_pools_hash_body; /* used for key access */
702         cfs_list_t              lov_pool_list; /* used for sequential access */
703         cfs_proc_dir_entry_t   *lov_pool_proc_entry;
704         enum lustre_sec_part    lov_sp_me;
705
706         /* Cached LRU pages from upper layer */
707         void                   *lov_cache;
708 };
709
710 struct lmv_tgt_desc {
711         struct obd_uuid         ltd_uuid;
712         struct obd_export       *ltd_exp;
713         int                     ltd_idx;
714         struct mutex            ltd_fid_mutex;
715         unsigned long           ltd_active:1; /* target up for requests */
716 };
717
718 enum placement_policy {
719         PLACEMENT_CHAR_POLICY   = 0,
720         PLACEMENT_NID_POLICY    = 1,
721         PLACEMENT_INVAL_POLICY  = 2,
722         PLACEMENT_MAX_POLICY
723 };
724
725 typedef enum placement_policy placement_policy_t;
726
727 struct lmv_obd {
728         int                     refcount;
729         struct lu_client_fld    lmv_fld;
730         spinlock_t              lmv_lock;
731         placement_policy_t      lmv_placement;
732         struct lmv_desc         desc;
733         struct obd_uuid         cluuid;
734         struct obd_export       *exp;
735
736         struct mutex            init_mutex;
737         int                     connected;
738         int                     max_easize;
739         int                     max_def_easize;
740         int                     max_cookiesize;
741         int                     server_timeout;
742
743         int                     tgts_size; /* size of tgts array */
744         struct lmv_tgt_desc     **tgts;
745
746         struct obd_connect_data conn_data;
747 };
748
749 struct niobuf_local {
750         __u64 lnb_file_offset;
751         __u32 lnb_page_offset;
752         __u32 len;
753         __u32 flags;
754         cfs_page_t    *page;
755         cfs_dentry_t  *dentry;
756         int lnb_grant_used;
757         int rc;
758 };
759
760 #define LUSTRE_FLD_NAME         "fld"
761 #define LUSTRE_SEQ_NAME         "seq"
762
763 #define LUSTRE_CMM_NAME         "cmm"
764 #define LUSTRE_MDD_NAME         "mdd"
765 #define LUSTRE_OSD_LDISKFS_NAME "osd-ldiskfs"
766 #define LUSTRE_OSD_ZFS_NAME     "osd-zfs"
767 #define LUSTRE_VVP_NAME         "vvp"
768 #define LUSTRE_LMV_NAME         "lmv"
769 #define LUSTRE_CMM_MDC_NAME     "cmm-mdc"
770 #define LUSTRE_SLP_NAME         "slp"
771 #define LUSTRE_LOD_NAME         "lod"
772 #define LUSTRE_OSP_NAME         "osp"
773
774 /* obd device type names */
775  /* FIXME all the references to LUSTRE_MDS_NAME should be swapped with LUSTRE_MDT_NAME */
776 #define LUSTRE_MDS_NAME         "mds"
777 #define LUSTRE_MDT_NAME         "mdt"
778 #define LUSTRE_MDC_NAME         "mdc"
779 #define LUSTRE_OSS_NAME         "ost"       /* FIXME change name to oss */
780 #define LUSTRE_OST_NAME         "obdfilter" /* FIXME change name to ost */
781 #define LUSTRE_OSC_NAME         "osc"
782 #define LUSTRE_LOV_NAME         "lov"
783 #define LUSTRE_MGS_NAME         "mgs"
784 #define LUSTRE_MGC_NAME         "mgc"
785
786 #define LUSTRE_CACHEOBD_NAME    "cobd"
787 #define LUSTRE_ECHO_NAME        "obdecho"
788 #define LUSTRE_ECHO_CLIENT_NAME "echo_client"
789 #define LUSTRE_QMT_NAME         "qmt"
790
791 /* Constant obd names (post-rename) */
792 #define LUSTRE_MDS_OBDNAME "MDS"
793 #define LUSTRE_OSS_OBDNAME "OSS"
794 #define LUSTRE_MGS_OBDNAME "MGS"
795 #define LUSTRE_MGC_OBDNAME "MGC"
796
797 static inline int is_osp_on_mdt(char *name)
798 {
799         char   *ptr;
800
801         ptr = strrchr(name, '-');
802         if (ptr == NULL) {
803                 CERROR("%s is not a obdname\n", name);
804                 return 0;
805         }
806
807         /* 1.8 OSC/OSP name on MDT is fsname-OSTxxxx-osc */
808         if (strncmp(ptr + 1, "osc", 3) == 0)
809                 return 1;
810
811         if (strncmp(ptr + 1, "MDT", 3) != 0)
812                 return 0;
813
814         while (*(--ptr) != '-' && ptr != name);
815
816         if (ptr == name)
817                 return 0;
818
819         if (strncmp(ptr + 1, LUSTRE_OSP_NAME, strlen(LUSTRE_OSP_NAME)) != 0 &&
820             strncmp(ptr + 1, LUSTRE_OSC_NAME, strlen(LUSTRE_OSC_NAME)) != 0)
821                 return 0;
822
823         return 1;
824 }
825
826 /* Don't conflict with on-wire flags OBD_BRW_WRITE, etc */
827 #define N_LOCAL_TEMP_PAGE 0x10000000
828
829 /* Currently the connection osp is only for connecting MDT0, the
830  * name would either be
831  * fsname-MDT0000-osp-OSTxxxx or fsname-MDT0000-osp-MDT0000 */
832 static inline int is_osp_for_connection(char *name)
833 {
834         char    *ptr;
835         int     osp_on_mdt0 = 0;
836         char    *endptr;
837
838         ptr = strrchr(name, '-');
839         if (ptr == NULL) {
840                 CERROR("%s is not a obdname\n", name);
841                 return 0;
842         }
843
844         if (strncmp(ptr + 1, "OST", 3) != 0 && strncmp(ptr + 1, "MDT", 3) != 0)
845                 return 0;
846
847         if (strncmp(ptr + 1, "MDT", 3) == 0) {
848                 int index;
849
850 #ifdef __KERNEL__
851                 index = simple_strtoul(ptr + 4, &endptr, 16);
852 #else
853                 index = strtoul(ptr + 4, &endptr, 16);
854 #endif
855                 if (index != 0)
856                         return 0;
857                 osp_on_mdt0 = 1;
858         }
859
860         /* match the "-osp" */
861         if (ptr - name < strlen(LUSTRE_OSP_NAME) + 1)
862                 return 0;
863
864         ptr -= (strlen(LUSTRE_OSP_NAME) + 1);
865         if (*ptr != '-')
866                 return 0;
867
868         if (strncmp(ptr + 1, LUSTRE_OSP_NAME, strlen(LUSTRE_OSP_NAME)) != 0)
869                 return 0;
870
871         if (osp_on_mdt0) {
872                 int index = 0;
873                 while (*(--ptr) != '-' && ptr != name);
874
875                 if (ptr == name) {
876                         CERROR("%s is not a valid osp name\n", name);
877                         return 0;
878                 }
879
880                 if (strncmp(ptr + 1, "MDT", 3) != 0)
881                         return 0;
882 #ifdef __KERNEL__
883                 index = simple_strtoul(ptr + 4, &endptr, 16);
884 #else
885                 index = strtoul(ptr + 4, &endptr, 16);
886 #endif
887                 if (index != 0)
888                         return 0;
889         }
890         return 1;
891 }
892
893 struct obd_trans_info {
894         __u64                    oti_transno;
895         __u64                    oti_xid;
896         /* Only used on the server side for tracking acks. */
897         struct oti_req_ack_lock {
898                 struct lustre_handle lock;
899                 __u32                mode;
900         }                        oti_ack_locks[4];
901         void                    *oti_handle;
902         struct llog_cookie       oti_onecookie;
903         struct llog_cookie      *oti_logcookies;
904         int                      oti_numcookies;
905         /** synchronous write is needed */
906         long                     oti_sync_write:1;
907
908         /* initial thread handling transaction */
909         struct ptlrpc_thread *   oti_thread;
910         __u32                    oti_conn_cnt;
911         /** VBR: versions */
912         __u64                    oti_pre_version;
913         /** JobID */
914         char                    *oti_jobid;
915
916         struct obd_uuid         *oti_ost_uuid;
917 };
918
919 static inline void oti_init(struct obd_trans_info *oti,
920                             struct ptlrpc_request *req)
921 {
922         if (oti == NULL)
923                 return;
924         memset(oti, 0, sizeof(*oti));
925
926         if (req == NULL)
927                 return;
928
929         oti->oti_xid = req->rq_xid;
930         /** VBR: take versions from request */
931         if (req->rq_reqmsg != NULL &&
932             lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
933                 __u64 *pre_version = lustre_msg_get_versions(req->rq_reqmsg);
934                 oti->oti_pre_version = pre_version ? pre_version[0] : 0;
935                 oti->oti_transno = lustre_msg_get_transno(req->rq_reqmsg);
936         }
937
938         /** called from mds_create_objects */
939         if (req->rq_repmsg != NULL)
940                 oti->oti_transno = lustre_msg_get_transno(req->rq_repmsg);
941         oti->oti_thread = req->rq_svc_thread;
942         if (req->rq_reqmsg != NULL)
943                 oti->oti_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
944 }
945
946 static inline void oti_alloc_cookies(struct obd_trans_info *oti,int num_cookies)
947 {
948         if (!oti)
949                 return;
950
951         if (num_cookies == 1)
952                 oti->oti_logcookies = &oti->oti_onecookie;
953         else
954                 OBD_ALLOC_LARGE(oti->oti_logcookies,
955                                 num_cookies * sizeof(oti->oti_onecookie));
956
957         oti->oti_numcookies = num_cookies;
958 }
959
960 static inline void oti_free_cookies(struct obd_trans_info *oti)
961 {
962         if (!oti || !oti->oti_logcookies)
963                 return;
964
965         if (oti->oti_logcookies == &oti->oti_onecookie)
966                 LASSERT(oti->oti_numcookies == 1);
967         else
968                 OBD_FREE_LARGE(oti->oti_logcookies,
969                                oti->oti_numcookies*sizeof(oti->oti_onecookie));
970         oti->oti_logcookies = NULL;
971         oti->oti_numcookies = 0;
972 }
973
974 /*
975  * Events signalled through obd_notify() upcall-chain.
976  */
977 enum obd_notify_event {
978         /* target added */
979         OBD_NOTIFY_CREATE,
980         /* Device connect start */
981         OBD_NOTIFY_CONNECT,
982         /* Device activated */
983         OBD_NOTIFY_ACTIVE,
984         /* Device deactivated */
985         OBD_NOTIFY_INACTIVE,
986         /* Device disconnected */
987         OBD_NOTIFY_DISCON,
988         /* Connect data for import were changed */
989         OBD_NOTIFY_OCD,
990         /* Sync request */
991         OBD_NOTIFY_SYNC_NONBLOCK,
992         OBD_NOTIFY_SYNC,
993         /* Configuration event */
994         OBD_NOTIFY_CONFIG,
995         /* Administratively deactivate/activate event */
996         OBD_NOTIFY_DEACTIVATE,
997         OBD_NOTIFY_ACTIVATE
998 };
999
1000 /* bit-mask flags for config events */
1001 enum config_flags {
1002         CONFIG_LOG      = 0x1,  /* finished processing config log */
1003         CONFIG_SYNC     = 0x2,  /* mdt synced 1 ost */
1004         CONFIG_TARGET   = 0x4   /* one target is added */
1005 };
1006
1007 /*
1008  * Data structure used to pass obd_notify()-event to non-obd listeners (llite
1009  * and liblustre being main examples).
1010  */
1011 struct obd_notify_upcall {
1012         int (*onu_upcall)(struct obd_device *host, struct obd_device *watched,
1013                           enum obd_notify_event ev, void *owner, void *data);
1014         /* Opaque datum supplied by upper layer listener */
1015         void *onu_owner;
1016 };
1017
1018 struct target_recovery_data {
1019         svc_handler_t           trd_recovery_handler;
1020         pid_t                   trd_processing_task;
1021         struct completion       trd_starting;
1022         struct completion       trd_finishing;
1023 };
1024
1025 /**
1026   * In HEAD for CMD, the object is created in group number which is 3>=
1027   * or indexing starts from 3. To test this assertions are added to disallow
1028   * group 0. But to run 2.0 mds server on 1.8.x disk format (i.e. interop_mode)
1029   * object in group 0 needs to be allowed.
1030   * So for interop mode following changes needs to be done:
1031   * 1. No need to assert on group 0 or allow group 0
1032   * 2. The group number indexing starts from 0 instead of 3
1033   */
1034
1035 #define LASSERT_SEQ_IS_MDT(seq) LASSERT(fid_seq_is_mdt(seq))
1036
1037 static inline __u64 objseq_to_mdsno(obd_seq seq)
1038 {
1039         LASSERT_SEQ_IS_MDT(seq);
1040         if (seq == FID_SEQ_OST_MDT0)
1041                 return 0;
1042         return seq - FID_SEQ_OST_MDT1 + 1;
1043 }
1044
1045 static inline int mdt_to_obd_objseq(int mdtid)
1046 {
1047         /**
1048          * MDS0 uses seq 0 pre FID-on-OST, other MDSes will use seq from
1049          * FID_SEQ_OST_MDT1
1050          */
1051         if (mdtid)
1052                 return FID_SEQ_OST_MDT1 + mdtid - 1;
1053         return 0;
1054 }
1055
1056 struct obd_llog_group {
1057         cfs_list_t         olg_list;
1058         int                olg_seq;
1059         struct llog_ctxt  *olg_ctxts[LLOG_MAX_CTXTS];
1060         cfs_waitq_t        olg_waitq;
1061         spinlock_t         olg_lock;
1062         struct obd_export *olg_exp;
1063         int                olg_initializing;
1064         struct mutex       olg_cat_processing;
1065 };
1066
1067 /* corresponds to one of the obd's */
1068 #define OBD_DEVICE_MAGIC        0XAB5CD6EF
1069 #define OBD_DEV_BY_DEVNAME      0xffffd0de
1070
1071 struct obd_device {
1072         struct obd_type        *obd_type;
1073         __u32                   obd_magic;
1074
1075         /* common and UUID name of this device */
1076         char                    obd_name[MAX_OBD_NAME];
1077         struct obd_uuid         obd_uuid;
1078
1079         struct lu_device       *obd_lu_dev;
1080
1081         int                     obd_minor;
1082         /* bitfield modification is protected by obd_dev_lock */
1083         unsigned long obd_attached:1,      /* finished attach */
1084                       obd_set_up:1,        /* finished setup */
1085                       obd_recovering:1,    /* there are recoverable clients */
1086                       obd_abort_recovery:1,/* recovery expired */
1087                       obd_version_recov:1, /* obd uses version checking */
1088                       obd_replayable:1,    /* recovery is enabled; inform clients */
1089                       obd_no_transno:1,    /* no committed-transno notification */
1090                       obd_no_recov:1,      /* fail instead of retry messages */
1091                       obd_stopping:1,      /* started cleanup */
1092                       obd_starting:1,      /* started setup */
1093                       obd_force:1,         /* cleanup with > 0 obd refcount */
1094                       obd_fail:1,          /* cleanup with failover */
1095                       obd_async_recov:1,   /* allow asynchronous orphan cleanup */
1096                       obd_no_conn:1,       /* deny new connections */
1097                       obd_inactive:1,      /* device active/inactive
1098                                            * (for /proc/status only!!) */
1099                       obd_no_ir:1,         /* no imperative recovery. */
1100                       obd_process_conf:1;  /* device is processing mgs config */
1101         /* use separate field as it is set in interrupt to don't mess with
1102          * protection of other bits using _bh lock */
1103         unsigned long obd_recovery_expired:1;
1104         /* uuid-export hash body */
1105         cfs_hash_t             *obd_uuid_hash;
1106         /* nid-export hash body */
1107         cfs_hash_t             *obd_nid_hash;
1108         /* nid stats body */
1109         cfs_hash_t             *obd_nid_stats_hash;
1110         cfs_list_t              obd_nid_stats;
1111         cfs_atomic_t            obd_refcount;
1112         cfs_waitq_t             obd_refcount_waitq;
1113         cfs_list_t              obd_exports;
1114         cfs_list_t              obd_unlinked_exports;
1115         cfs_list_t              obd_delayed_exports;
1116         int                     obd_num_exports;
1117         spinlock_t              obd_nid_lock;
1118         struct ldlm_namespace  *obd_namespace;
1119         struct ptlrpc_client    obd_ldlm_client; /* XXX OST/MDS only */
1120         /* a spinlock is OK for what we do now, may need a semaphore later */
1121         spinlock_t              obd_dev_lock; /* protect OBD bitfield above */
1122         struct mutex            obd_dev_mutex;
1123         __u64                   obd_last_committed;
1124         struct fsfilt_operations *obd_fsops;
1125         spinlock_t              obd_osfs_lock;
1126         struct obd_statfs       obd_osfs;       /* locked by obd_osfs_lock */
1127         __u64                   obd_osfs_age;
1128         struct lvfs_run_ctxt    obd_lvfs_ctxt;
1129         struct obd_llog_group   obd_olg;        /* default llog group */
1130         struct obd_device       *obd_observer;
1131         struct rw_semaphore     obd_observer_link_sem;
1132         struct obd_notify_upcall obd_upcall;
1133         struct obd_export       *obd_self_export;
1134         /* list of exports in LRU order, for ping evictor, with obd_dev_lock */
1135         cfs_list_t              obd_exports_timed;
1136         time_t                  obd_eviction_timer; /* for ping evictor */
1137
1138         int                              obd_max_recoverable_clients;
1139         cfs_atomic_t                     obd_connected_clients;
1140         int                              obd_stale_clients;
1141         int                              obd_delayed_clients;
1142         /* this lock protects all recovery list_heads, timer and
1143          * obd_next_recovery_transno value */
1144         spinlock_t                       obd_recovery_task_lock;
1145         __u64                            obd_next_recovery_transno;
1146         int                              obd_replayed_requests;
1147         int                              obd_requests_queued_for_recovery;
1148         cfs_waitq_t                      obd_next_transno_waitq;
1149         /* protected by obd_recovery_task_lock */
1150         cfs_timer_t                      obd_recovery_timer;
1151         time_t                           obd_recovery_start; /* seconds */
1152         time_t                           obd_recovery_end; /* seconds, for lprocfs_status */
1153         int                              obd_recovery_time_hard;
1154         int                              obd_recovery_timeout;
1155         int                              obd_recovery_ir_factor;
1156
1157         /* new recovery stuff from CMD2 */
1158         struct target_recovery_data      obd_recovery_data;
1159         int                              obd_replayed_locks;
1160         cfs_atomic_t                     obd_req_replay_clients;
1161         cfs_atomic_t                     obd_lock_replay_clients;
1162         /* all lists are protected by obd_recovery_task_lock */
1163         cfs_list_t                       obd_req_replay_queue;
1164         cfs_list_t                       obd_lock_replay_queue;
1165         cfs_list_t                       obd_final_req_queue;
1166         int                              obd_recovery_stage;
1167
1168         union {
1169                 struct obd_device_target obt;
1170                 struct filter_obd filter;
1171                 struct client_obd cli;
1172                 struct ost_obd ost;
1173                 struct echo_client_obd echo_client;
1174                 struct echo_obd echo;
1175                 struct lov_obd lov;
1176                 struct lmv_obd lmv;
1177         } u;
1178         /* Fields used by LProcFS */
1179         unsigned int           obd_cntr_base;
1180         struct lprocfs_stats  *obd_stats;
1181
1182         unsigned int           md_cntr_base;
1183         struct lprocfs_stats  *md_stats;
1184
1185         cfs_proc_dir_entry_t  *obd_proc_entry;
1186         cfs_proc_dir_entry_t  *obd_proc_exports_entry;
1187         cfs_proc_dir_entry_t  *obd_svc_procroot;
1188         struct lprocfs_stats  *obd_svc_stats;
1189         cfs_atomic_t           obd_evict_inprogress;
1190         cfs_waitq_t            obd_evict_inprogress_waitq;
1191         cfs_list_t             obd_evict_list; /* protected with pet_lock */
1192
1193         /**
1194          * Ldlm pool part. Save last calculated SLV and Limit.
1195          */
1196         rwlock_t                obd_pool_lock;
1197         int                    obd_pool_limit;
1198         __u64                  obd_pool_slv;
1199
1200         /**
1201          * A list of outstanding class_incref()'s against this obd. For
1202          * debugging.
1203          */
1204         struct lu_ref          obd_reference;
1205
1206         int                    obd_conn_inprogress;
1207 };
1208
1209 #define OBD_LLOG_FL_SENDNOW     0x0001
1210 #define OBD_LLOG_FL_EXIT        0x0002
1211
1212 enum obd_cleanup_stage {
1213 /* Special case hack for MDS LOVs */
1214         OBD_CLEANUP_EARLY,
1215 /* can be directly mapped to .ldto_device_fini() */
1216         OBD_CLEANUP_EXPORTS,
1217 };
1218
1219 /* get/set_info keys */
1220 #define KEY_ASYNC               "async"
1221 #define KEY_BLOCKSIZE_BITS      "blocksize_bits"
1222 #define KEY_BLOCKSIZE           "blocksize"
1223 #define KEY_CAPA_KEY            "capa_key"
1224 #define KEY_CHANGELOG_CLEAR     "changelog_clear"
1225 #define KEY_FID2PATH            "fid2path"
1226 #define KEY_CHECKSUM            "checksum"
1227 #define KEY_CLEAR_FS            "clear_fs"
1228 #define KEY_CONN_DATA           "conn_data"
1229 #define KEY_EVICT_BY_NID        "evict_by_nid"
1230 #define KEY_FIEMAP              "fiemap"
1231 #define KEY_FLUSH_CTX           "flush_ctx"
1232 #define KEY_GRANT_SHRINK        "grant_shrink"
1233 #define KEY_HSM_COPYTOOL_SEND   "hsm_send"
1234 #define KEY_INIT_RECOV_BACKUP   "init_recov_bk"
1235 #define KEY_INIT_RECOV          "initial_recov"
1236 #define KEY_INTERMDS            "inter_mds"
1237 #define KEY_LAST_ID             "last_id"
1238 #define KEY_LAST_FID            "last_fid"
1239 #define KEY_LOCK_TO_STRIPE      "lock_to_stripe"
1240 #define KEY_LOVDESC             "lovdesc"
1241 #define KEY_LOV_IDX             "lov_idx"
1242 #define KEY_MAX_EASIZE          "max_easize"
1243 #define KEY_MDS_CONN            "mds_conn"
1244 #define KEY_MGSSEC              "mgssec"
1245 #define KEY_NEXT_ID             "next_id"
1246 #define KEY_READ_ONLY           "read-only"
1247 #define KEY_REGISTER_TARGET     "register_target"
1248 #define KEY_SET_FS              "set_fs"
1249 #define KEY_TGT_COUNT           "tgt_count"
1250 /*      KEY_SET_INFO in lustre_idl.h */
1251 #define KEY_SPTLRPC_CONF        "sptlrpc_conf"
1252 #define KEY_CONNECT_FLAG        "connect_flags"
1253 #define KEY_SYNC_LOCK_CANCEL    "sync_lock_cancel"
1254
1255 #define KEY_CACHE_SET           "cache_set"
1256 #define KEY_CACHE_LRU_SHRINK    "cache_lru_shrink"
1257
1258 struct lu_context;
1259
1260 /* /!\ must be coherent with include/linux/namei.h on patched kernel */
1261 #define IT_OPEN     (1 << 0)
1262 #define IT_CREAT    (1 << 1)
1263 #define IT_READDIR  (1 << 2)
1264 #define IT_GETATTR  (1 << 3)
1265 #define IT_LOOKUP   (1 << 4)
1266 #define IT_UNLINK   (1 << 5)
1267 #define IT_TRUNC    (1 << 6)
1268 #define IT_GETXATTR (1 << 7)
1269 #define IT_EXEC     (1 << 8)
1270 #define IT_PIN      (1 << 9)
1271 #define IT_LAYOUT   (1 << 10)
1272 #define IT_QUOTA_DQACQ (1 << 11)
1273 #define IT_QUOTA_CONN  (1 << 12)
1274
1275 static inline int it_to_lock_mode(struct lookup_intent *it)
1276 {
1277         /* CREAT needs to be tested before open (both could be set) */
1278         if (it->it_op & IT_CREAT)
1279                 return LCK_CW;
1280         else if (it->it_op & (IT_READDIR | IT_GETATTR | IT_OPEN | IT_LOOKUP |
1281                               IT_LAYOUT))
1282                 return LCK_CR;
1283
1284         LASSERTF(0, "Invalid it_op: %d\n", it->it_op);
1285         return -EINVAL;
1286 }
1287
1288 struct md_op_data {
1289         struct lu_fid           op_fid1; /* operation fid1 (usualy parent) */
1290         struct lu_fid           op_fid2; /* operation fid2 (usualy child) */
1291         struct lu_fid           op_fid3; /* 2 extra fids to find conflicting */
1292         struct lu_fid           op_fid4; /* to the operation locks. */
1293         mdsno_t                 op_mds;  /* what mds server open will go to */
1294         struct lustre_handle    op_handle;
1295         obd_time                op_mod_time;
1296         const char             *op_name;
1297         int                     op_namelen;
1298         __u32                   op_mode;
1299         struct lmv_stripe_md   *op_mea1;
1300         struct lmv_stripe_md   *op_mea2;
1301         __u32                   op_suppgids[2];
1302         __u32                   op_fsuid;
1303         __u32                   op_fsgid;
1304         cfs_cap_t               op_cap;
1305         void                   *op_data;
1306
1307         /* iattr fields and blocks. */
1308         struct iattr            op_attr;
1309 #ifdef __KERNEL__
1310         unsigned int            op_attr_flags;
1311 #endif
1312         __u64                   op_valid;
1313         loff_t                  op_attr_blocks;
1314
1315         /* Size-on-MDS epoch and flags. */
1316         __u64                   op_ioepoch;
1317         __u32                   op_flags;
1318
1319         /* Capa fields */
1320         struct obd_capa        *op_capa1;
1321         struct obd_capa        *op_capa2;
1322
1323         /* Various operation flags. */
1324         __u32                   op_bias;
1325
1326         /* Operation type */
1327         __u32                   op_opc;
1328
1329         /* Used by readdir */
1330         __u32                   op_npages;
1331         __u64                   op_offset;
1332 };
1333
1334 struct md_enqueue_info;
1335 /* metadata stat-ahead */
1336 typedef int (* md_enqueue_cb_t)(struct ptlrpc_request *req,
1337                                 struct md_enqueue_info *minfo,
1338                                 int rc);
1339
1340 /* seq client type */
1341 enum lu_cli_type {
1342         LUSTRE_SEQ_METADATA = 1,
1343         LUSTRE_SEQ_DATA
1344 };
1345
1346 struct md_enqueue_info {
1347         struct md_op_data       mi_data;
1348         struct lookup_intent    mi_it;
1349         struct lustre_handle    mi_lockh;
1350         struct inode           *mi_dir;
1351         md_enqueue_cb_t         mi_cb;
1352         __u64                   mi_cbdata;
1353         unsigned int            mi_generation;
1354 };
1355
1356 struct obd_ops {
1357         cfs_module_t *o_owner;
1358         int (*o_iocontrol)(unsigned int cmd, struct obd_export *exp, int len,
1359                            void *karg, void *uarg);
1360         int (*o_get_info)(const struct lu_env *env, struct obd_export *,
1361                           __u32 keylen, void *key, __u32 *vallen, void *val,
1362                           struct lov_stripe_md *lsm);
1363         int (*o_set_info_async)(const struct lu_env *, struct obd_export *,
1364                                 __u32 keylen, void *key,
1365                                 __u32 vallen, void *val,
1366                                 struct ptlrpc_request_set *set);
1367         int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
1368         int (*o_detach)(struct obd_device *dev);
1369         int (*o_setup) (struct obd_device *dev, struct lustre_cfg *cfg);
1370         int (*o_precleanup)(struct obd_device *dev,
1371                             enum obd_cleanup_stage cleanup_stage);
1372         int (*o_cleanup)(struct obd_device *dev);
1373         int (*o_process_config)(struct obd_device *dev, obd_count len,
1374                                 void *data);
1375         int (*o_postrecov)(struct obd_device *dev);
1376         int (*o_add_conn)(struct obd_import *imp, struct obd_uuid *uuid,
1377                           int priority);
1378         int (*o_del_conn)(struct obd_import *imp, struct obd_uuid *uuid);
1379         /* connect to the target device with given connection
1380          * data. @ocd->ocd_connect_flags is modified to reflect flags actually
1381          * granted by the target, which are guaranteed to be a subset of flags
1382          * asked for. If @ocd == NULL, use default parameters. */
1383         int (*o_connect)(const struct lu_env *env,
1384                          struct obd_export **exp, struct obd_device *src,
1385                          struct obd_uuid *cluuid, struct obd_connect_data *ocd,
1386                          void *localdata);
1387         int (*o_reconnect)(const struct lu_env *env,
1388                            struct obd_export *exp, struct obd_device *src,
1389                            struct obd_uuid *cluuid,
1390                            struct obd_connect_data *ocd,
1391                            void *localdata);
1392         int (*o_disconnect)(struct obd_export *exp);
1393
1394         /* Initialize/finalize fids infrastructure. */
1395         int (*o_fid_init)(struct obd_device *obd,
1396                           struct obd_export *exp, enum lu_cli_type type);
1397         int (*o_fid_fini)(struct obd_device *obd);
1398
1399         /* Allocate new fid according to passed @hint. */
1400         int (*o_fid_alloc)(struct obd_export *exp, struct lu_fid *fid,
1401                            struct md_op_data *op_data);
1402
1403         /*
1404          * Object with @fid is getting deleted, we may want to do something
1405          * about this.
1406          */
1407         int (*o_statfs)(const struct lu_env *, struct obd_export *exp,
1408                         struct obd_statfs *osfs, __u64 max_age, __u32 flags);
1409         int (*o_statfs_async)(struct obd_export *exp, struct obd_info *oinfo,
1410                               __u64 max_age, struct ptlrpc_request_set *set);
1411         int (*o_packmd)(struct obd_export *exp, struct lov_mds_md **disk_tgt,
1412                         struct lov_stripe_md *mem_src);
1413         int (*o_unpackmd)(struct obd_export *exp,struct lov_stripe_md **mem_tgt,
1414                           struct lov_mds_md *disk_src, int disk_len);
1415         int (*o_preallocate)(struct lustre_handle *, obd_count *req,
1416                              obd_id *ids);
1417         /* FIXME: add fid capability support for create & destroy! */
1418         int (*o_precreate)(struct obd_export *exp);
1419         int (*o_create)(const struct lu_env *env, struct obd_export *exp,
1420                         struct obdo *oa, struct lov_stripe_md **ea,
1421                         struct obd_trans_info *oti);
1422         int (*o_create_async)(struct obd_export *exp,  struct obd_info *oinfo,
1423                               struct lov_stripe_md **ea,
1424                               struct obd_trans_info *oti);
1425         int (*o_destroy)(const struct lu_env *env, struct obd_export *exp,
1426                          struct obdo *oa, struct lov_stripe_md *ea,
1427                          struct obd_trans_info *oti, struct obd_export *md_exp,
1428                          void *capa);
1429         int (*o_setattr)(const struct lu_env *, struct obd_export *exp,
1430                          struct obd_info *oinfo, struct obd_trans_info *oti);
1431         int (*o_setattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1432                                struct obd_trans_info *oti,
1433                                struct ptlrpc_request_set *rqset);
1434         int (*o_getattr)(const struct lu_env *env, struct obd_export *exp,
1435                          struct obd_info *oinfo);
1436         int (*o_getattr_async)(struct obd_export *exp, struct obd_info *oinfo,
1437                                struct ptlrpc_request_set *set);
1438         int (*o_brw)(int rw, struct obd_export *exp, struct obd_info *oinfo,
1439                      obd_count oa_bufs, struct brw_page *pgarr,
1440                      struct obd_trans_info *oti);
1441         int (*o_merge_lvb)(struct obd_export *exp, struct lov_stripe_md *lsm,
1442                            struct ost_lvb *lvb, int kms_only);
1443         int (*o_adjust_kms)(struct obd_export *exp, struct lov_stripe_md *lsm,
1444                             obd_off size, int shrink);
1445         int (*o_punch)(const struct lu_env *, struct obd_export *exp,
1446                        struct obd_info *oinfo, struct obd_trans_info *oti,
1447                        struct ptlrpc_request_set *rqset);
1448         int (*o_sync)(const struct lu_env *env, struct obd_export *exp,
1449                       struct obd_info *oinfo, obd_size start, obd_size end,
1450                       struct ptlrpc_request_set *set);
1451         int (*o_migrate)(struct lustre_handle *conn, struct lov_stripe_md *dst,
1452                          struct lov_stripe_md *src, obd_size start,
1453                          obd_size end, struct obd_trans_info *oti);
1454         int (*o_copy)(struct lustre_handle *dstconn, struct lov_stripe_md *dst,
1455                       struct lustre_handle *srconn, struct lov_stripe_md *src,
1456                       obd_size start, obd_size end, struct obd_trans_info *);
1457         int (*o_iterate)(struct lustre_handle *conn,
1458                          int (*)(obd_id, obd_seq, void *),
1459                          obd_id *startid, obd_seq seq, void *data);
1460         int (*o_preprw)(const struct lu_env *env, int cmd,
1461                         struct obd_export *exp, struct obdo *oa, int objcount,
1462                         struct obd_ioobj *obj, struct niobuf_remote *remote,
1463                         int *nr_pages, struct niobuf_local *local,
1464                         struct obd_trans_info *oti, struct lustre_capa *capa);
1465         int (*o_commitrw)(const struct lu_env *env, int cmd,
1466                           struct obd_export *exp, struct obdo *oa,
1467                           int objcount, struct obd_ioobj *obj,
1468                           struct niobuf_remote *remote, int pages,
1469                           struct niobuf_local *local,
1470                           struct obd_trans_info *oti, int rc);
1471         int (*o_enqueue)(struct obd_export *, struct obd_info *oinfo,
1472                          struct ldlm_enqueue_info *einfo,
1473                          struct ptlrpc_request_set *rqset);
1474         int (*o_change_cbdata)(struct obd_export *, struct lov_stripe_md *,
1475                                ldlm_iterator_t it, void *data);
1476         int (*o_find_cbdata)(struct obd_export *, struct lov_stripe_md *,
1477                              ldlm_iterator_t it, void *data);
1478         int (*o_cancel)(struct obd_export *, struct lov_stripe_md *md,
1479                         __u32 mode, struct lustre_handle *);
1480         int (*o_cancel_unused)(struct obd_export *, struct lov_stripe_md *,
1481                                ldlm_cancel_flags_t flags, void *opaque);
1482         int (*o_init_export)(struct obd_export *exp);
1483         int (*o_destroy_export)(struct obd_export *exp);
1484         int (*o_extent_calc)(struct obd_export *, struct lov_stripe_md *,
1485                              int cmd, obd_off *);
1486
1487         /* llog related obd_methods */
1488         int (*o_llog_init)(struct obd_device *obd, struct obd_llog_group *grp,
1489                            struct obd_device *disk_obd, int *idx);
1490         int (*o_llog_finish)(struct obd_device *obd, int count);
1491         int (*o_llog_connect)(struct obd_export *, struct llogd_conn_body *);
1492
1493         /* metadata-only methods */
1494         int (*o_pin)(struct obd_export *, const struct lu_fid *fid,
1495                      struct obd_capa *, struct obd_client_handle *, int flag);
1496         int (*o_unpin)(struct obd_export *, struct obd_client_handle *, int);
1497
1498         int (*o_import_event)(struct obd_device *, struct obd_import *,
1499                               enum obd_import_event);
1500
1501         int (*o_notify)(struct obd_device *obd, struct obd_device *watched,
1502                         enum obd_notify_event ev, void *data);
1503
1504         int (*o_health_check)(const struct lu_env *env, struct obd_device *);
1505         struct obd_uuid *(*o_get_uuid) (struct obd_export *exp);
1506
1507         /* quota methods */
1508         int (*o_quotacheck)(struct obd_device *, struct obd_export *,
1509                             struct obd_quotactl *);
1510         int (*o_quotactl)(struct obd_device *, struct obd_export *,
1511                           struct obd_quotactl *);
1512
1513         int (*o_ping)(const struct lu_env *, struct obd_export *exp);
1514
1515         /* pools methods */
1516         int (*o_pool_new)(struct obd_device *obd, char *poolname);
1517         int (*o_pool_del)(struct obd_device *obd, char *poolname);
1518         int (*o_pool_add)(struct obd_device *obd, char *poolname,
1519                           char *ostname);
1520         int (*o_pool_rem)(struct obd_device *obd, char *poolname,
1521                           char *ostname);
1522         void (*o_getref)(struct obd_device *obd);
1523         void (*o_putref)(struct obd_device *obd);
1524         /*
1525          * NOTE: If adding ops, add another LPROCFS_OBD_OP_INIT() line
1526          * to lprocfs_alloc_obd_stats() in obdclass/lprocfs_status.c.
1527          * Also, add a wrapper function in include/linux/obd_class.h. */
1528 };
1529
1530 enum {
1531         LUSTRE_OPC_MKDIR    = (1 << 0),
1532         LUSTRE_OPC_SYMLINK  = (1 << 1),
1533         LUSTRE_OPC_MKNOD    = (1 << 2),
1534         LUSTRE_OPC_CREATE   = (1 << 3),
1535         LUSTRE_OPC_ANY      = (1 << 4)
1536 };
1537
1538 /* lmv structures */
1539 #define MEA_MAGIC_LAST_CHAR      0xb2221ca1
1540 #define MEA_MAGIC_ALL_CHARS      0xb222a11c
1541 #define MEA_MAGIC_HASH_SEGMENT   0xb222a11b
1542
1543 #define MAX_HASH_SIZE_32         0x7fffffffUL
1544 #define MAX_HASH_SIZE            0x7fffffffffffffffULL
1545 #define MAX_HASH_HIGHEST_BIT     0x1000000000000000ULL
1546
1547 struct lustre_md {
1548         struct mdt_body         *body;
1549         struct lov_stripe_md    *lsm;
1550         struct lmv_stripe_md    *mea;
1551 #ifdef CONFIG_FS_POSIX_ACL
1552         struct posix_acl        *posix_acl;
1553 #endif
1554         struct mdt_remote_perm  *remote_perm;
1555         struct obd_capa         *mds_capa;
1556         struct obd_capa         *oss_capa;
1557 };
1558
1559 struct md_open_data {
1560         struct obd_client_handle *mod_och;
1561         struct ptlrpc_request    *mod_open_req;
1562         struct ptlrpc_request    *mod_close_req;
1563         cfs_atomic_t              mod_refcount;
1564 };
1565
1566 struct lookup_intent;
1567
1568 struct md_ops {
1569         int (*m_getstatus)(struct obd_export *, struct lu_fid *,
1570                            struct obd_capa **);
1571         int (*m_change_cbdata)(struct obd_export *, const struct lu_fid *,
1572                                ldlm_iterator_t, void *);
1573         int (*m_find_cbdata)(struct obd_export *, const struct lu_fid *,
1574                              ldlm_iterator_t, void *);
1575         int (*m_close)(struct obd_export *, struct md_op_data *,
1576                        struct md_open_data *, struct ptlrpc_request **);
1577         int (*m_create)(struct obd_export *, struct md_op_data *,
1578                         const void *, int, int, __u32, __u32, cfs_cap_t,
1579                         __u64, struct ptlrpc_request **);
1580         int (*m_done_writing)(struct obd_export *, struct md_op_data  *,
1581                               struct md_open_data *);
1582         int (*m_enqueue)(struct obd_export *, struct ldlm_enqueue_info *,
1583                          struct lookup_intent *, struct md_op_data *,
1584                          struct lustre_handle *, void *, int,
1585                          struct ptlrpc_request **, __u64);
1586         int (*m_getattr)(struct obd_export *, struct md_op_data *,
1587                          struct ptlrpc_request **);
1588         int (*m_getattr_name)(struct obd_export *, struct md_op_data *,
1589                               struct ptlrpc_request **);
1590         int (*m_intent_lock)(struct obd_export *, struct md_op_data *,
1591                              void *, int, struct lookup_intent *, int,
1592                              struct ptlrpc_request **,
1593                              ldlm_blocking_callback, __u64);
1594         int (*m_link)(struct obd_export *, struct md_op_data *,
1595                       struct ptlrpc_request **);
1596         int (*m_rename)(struct obd_export *, struct md_op_data *,
1597                         const char *, int, const char *, int,
1598                         struct ptlrpc_request **);
1599         int (*m_is_subdir)(struct obd_export *, const struct lu_fid *,
1600                            const struct lu_fid *,
1601                            struct ptlrpc_request **);
1602         int (*m_setattr)(struct obd_export *, struct md_op_data *, void *,
1603                          int , void *, int, struct ptlrpc_request **,
1604                          struct md_open_data **mod);
1605         int (*m_sync)(struct obd_export *, const struct lu_fid *,
1606                       struct obd_capa *, struct ptlrpc_request **);
1607         int (*m_readpage)(struct obd_export *, struct md_op_data *,
1608                           struct page **, struct ptlrpc_request **);
1609
1610         int (*m_unlink)(struct obd_export *, struct md_op_data *,
1611                         struct ptlrpc_request **);
1612
1613         int (*m_setxattr)(struct obd_export *, const struct lu_fid *,
1614                           struct obd_capa *, obd_valid, const char *,
1615                           const char *, int, int, int, __u32,
1616                           struct ptlrpc_request **);
1617
1618         int (*m_getxattr)(struct obd_export *, const struct lu_fid *,
1619                           struct obd_capa *, obd_valid, const char *,
1620                           const char *, int, int, int,
1621                           struct ptlrpc_request **);
1622
1623         int (*m_init_ea_size)(struct obd_export *, int, int, int);
1624
1625         int (*m_get_lustre_md)(struct obd_export *, struct ptlrpc_request *,
1626                                struct obd_export *, struct obd_export *,
1627                                struct lustre_md *);
1628
1629         int (*m_free_lustre_md)(struct obd_export *, struct lustre_md *);
1630
1631         int (*m_set_open_replay_data)(struct obd_export *,
1632                                       struct obd_client_handle *,
1633                                       struct ptlrpc_request *);
1634         int (*m_clear_open_replay_data)(struct obd_export *,
1635                                         struct obd_client_handle *);
1636         int (*m_set_lock_data)(struct obd_export *, __u64 *, void *, __u64 *);
1637
1638         ldlm_mode_t (*m_lock_match)(struct obd_export *, __u64,
1639                                     const struct lu_fid *, ldlm_type_t,
1640                                     ldlm_policy_data_t *, ldlm_mode_t,
1641                                     struct lustre_handle *);
1642
1643         int (*m_cancel_unused)(struct obd_export *, const struct lu_fid *,
1644                                ldlm_policy_data_t *, ldlm_mode_t,
1645                                ldlm_cancel_flags_t flags, void *opaque);
1646         int (*m_renew_capa)(struct obd_export *, struct obd_capa *oc,
1647                             renew_capa_cb_t cb);
1648         int (*m_unpack_capa)(struct obd_export *, struct ptlrpc_request *,
1649                              const struct req_msg_field *, struct obd_capa **);
1650
1651         int (*m_get_remote_perm)(struct obd_export *, const struct lu_fid *,
1652                                  struct obd_capa *, __u32,
1653                                  struct ptlrpc_request **);
1654
1655         int (*m_intent_getattr_async)(struct obd_export *,
1656                                       struct md_enqueue_info *,
1657                                       struct ldlm_enqueue_info *);
1658
1659         int (*m_revalidate_lock)(struct obd_export *, struct lookup_intent *,
1660                                  struct lu_fid *, __u64 *bits);
1661
1662         /*
1663          * NOTE: If adding ops, add another LPROCFS_MD_OP_INIT() line to
1664          * lprocfs_alloc_md_stats() in obdclass/lprocfs_status.c. Also, add a
1665          * wrapper function in include/linux/obd_class.h.
1666          */
1667 };
1668
1669 struct lsm_operations {
1670         void (*lsm_free)(struct lov_stripe_md *);
1671         int (*lsm_destroy)(struct lov_stripe_md *, struct obdo *oa,
1672                            struct obd_export *md_exp);
1673         void (*lsm_stripe_by_index)(struct lov_stripe_md *, int *, obd_off *,
1674                                     obd_off *);
1675         void (*lsm_stripe_by_offset)(struct lov_stripe_md *, int *, obd_off *,
1676                                      obd_off *);
1677         int (*lsm_lmm_verify) (struct lov_mds_md *lmm, int lmm_bytes,
1678                                __u16 *stripe_count);
1679         int (*lsm_unpackmd) (struct lov_obd *lov, struct lov_stripe_md *lsm,
1680                              struct lov_mds_md *lmm);
1681 };
1682
1683 extern const struct lsm_operations lsm_v1_ops;
1684 extern const struct lsm_operations lsm_v3_ops;
1685 static inline const struct lsm_operations *lsm_op_find(int magic)
1686 {
1687         switch(magic) {
1688         case LOV_MAGIC_V1:
1689                return &lsm_v1_ops;
1690         case LOV_MAGIC_V3:
1691                return &lsm_v3_ops;
1692         default:
1693                CERROR("Cannot recognize lsm_magic %08x\n", magic);
1694                return NULL;
1695         }
1696 }
1697
1698 /* Requests for obd_extent_calc() */
1699 #define OBD_CALC_STRIPE_START   1
1700 #define OBD_CALC_STRIPE_END     2
1701
1702 static inline struct lustre_capa *oinfo_capa(struct obd_info *oinfo)
1703 {
1704         return oinfo->oi_capa;
1705 }
1706
1707 static inline struct md_open_data *obd_mod_alloc(void)
1708 {
1709         struct md_open_data *mod;
1710         OBD_ALLOC_PTR(mod);
1711         if (mod == NULL)
1712                 return NULL;
1713         cfs_atomic_set(&mod->mod_refcount, 1);
1714         return mod;
1715 }
1716
1717 #define obd_mod_get(mod) cfs_atomic_inc(&(mod)->mod_refcount)
1718 #define obd_mod_put(mod)                                        \
1719 ({                                                              \
1720         if (cfs_atomic_dec_and_test(&(mod)->mod_refcount)) {          \
1721                 if ((mod)->mod_open_req)                          \
1722                         ptlrpc_req_finished((mod)->mod_open_req);   \
1723                 OBD_FREE_PTR(mod);                              \
1724         }                                                       \
1725 })
1726
1727 void obdo_from_inode(struct obdo *dst, struct inode *src, obd_flag valid);
1728 void obdo_set_parent_fid(struct obdo *dst, const struct lu_fid *parent);
1729
1730 /* return 1 if client should be resend request */
1731 static inline int client_should_resend(int resend, struct client_obd *cli)
1732 {
1733         return cfs_atomic_read(&cli->cl_resends) ?
1734                cfs_atomic_read(&cli->cl_resends) > resend : 1;
1735 }
1736
1737 /**
1738  * Return device name for this device
1739  *
1740  * XXX: lu_device is declared before obd_device, while a pointer pointing
1741  * back to obd_device in lu_device, so this helper function defines here
1742  * instead of in lu_object.h
1743  */
1744 static inline const char *lu_dev_name(const struct lu_device *lu_dev)
1745 {
1746         return lu_dev->ld_obd->obd_name;
1747 }
1748
1749 #endif /* __OBD_H */