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