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