Whamcloud - gitweb
LU-8998 pfl: enhance PFID EA for PFL
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_internal.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/osd/osd_internal.h
33  *
34  * Shared definitions and declarations for osd module
35  *
36  * Author: Nikita Danilov <nikita@clusterfs.com>
37  */
38
39 #ifndef _OSD_INTERNAL_H
40 #define _OSD_INTERNAL_H
41
42
43 /* struct mutex */
44 #include <linux/mutex.h>
45 /* struct rw_semaphore */
46 #include <linux/rwsem.h>
47 /* struct dentry */
48 #include <linux/dcache.h>
49 /* struct dirent64 */
50 #include <linux/dirent.h>
51 #include <linux/statfs.h>
52 #include <ldiskfs/ldiskfs.h>
53 #include <ldiskfs/ldiskfs_jbd2.h>
54
55 /* LUSTRE_OSD_NAME */
56 #include <obd.h>
57 /* class_register_type(), class_unregister_type(), class_get_type() */
58 #include <obd_class.h>
59 #include <lustre_disk.h>
60 #include <dt_object.h>
61 #include <lustre_quota.h>
62
63 #include "osd_oi.h"
64 #include "osd_iam.h"
65 #include "osd_scrub.h"
66 #include "osd_quota_fmt.h"
67
68 struct inode;
69 extern struct kmem_cache *dynlock_cachep;
70
71 #define OSD_COUNTERS (0)
72
73 /* ldiskfs special inode::i_state_flags need to be accessed with
74  * ldiskfs_{set,clear,test}_inode_state() only */
75
76 /* OI scrub should skip this inode. */
77 #define LDISKFS_STATE_LUSTRE_NOSCRUB    31
78 #define LDISKFS_STATE_LUSTRE_DESTROY    30
79
80 /** Enable thandle usage statistics */
81 #define OSD_THANDLE_STATS (0)
82
83 #define MAX_OBJID_GROUP (FID_SEQ_ECHO + 1)
84
85 #define OBJECTS         "OBJECTS"
86 #define ADMIN_USR       "admin_quotafile_v2.usr"
87 #define ADMIN_GRP       "admin_quotafile_v2.grp"
88
89 /* Statfs space reservation for fragmentation and local objects */
90 #define OSD_STATFS_RESERVED             (1ULL << 23) /* 8MB */
91 #define OSD_STATFS_RESERVED_SHIFT       (7) /* reserve 0.78% of all space */
92
93 struct osd_directory {
94         struct iam_container od_container;
95         struct iam_descr     od_descr;
96 };
97
98 /*
99  * Object Index (oi) instance.
100  */
101 struct osd_oi {
102         /*
103          * underlying index object, where fid->id mapping in stored.
104          */
105         struct inode         *oi_inode;
106         struct osd_directory  oi_dir;
107 };
108
109 extern const int osd_dto_credits_noquota[];
110
111 struct osd_object {
112         struct dt_object        oo_dt;
113         /**
114          * Inode for file system object represented by this osd_object. This
115          * inode is pinned for the whole duration of lu_object life.
116          *
117          * Not modified concurrently (either setup early during object
118          * creation, or assigned by osd_object_create() under write lock).
119          */
120         struct inode           *oo_inode;
121         /**
122          * to protect index ops.
123          */
124         struct htree_lock_head *oo_hl_head;
125         struct rw_semaphore     oo_ext_idx_sem;
126         struct rw_semaphore     oo_sem;
127         struct osd_directory    *oo_dir;
128         /** protects inode attributes. */
129         spinlock_t              oo_guard;
130
131         __u32                   oo_destroyed:1;
132
133         /* the i_flags in LMA */
134         __u32                   oo_lma_flags;
135         /**
136          * Following two members are used to indicate the presence of dot and
137          * dotdot in the given directory. This is required for interop mode
138          * (b11826).
139          */
140         int                     oo_compat_dot_created;
141         int                     oo_compat_dotdot_created;
142
143         const struct lu_env    *oo_owner;
144 #ifdef CONFIG_LOCKDEP
145         struct lockdep_map      oo_dep_map;
146 #endif
147
148         struct list_head        oo_xattr_list;
149 };
150
151 struct osd_obj_seq {
152         /* protects on-fly initialization */
153         int              oos_subdir_count; /* subdir count for each seq */
154         struct dentry    *oos_root;        /* O/<seq> */
155         struct dentry    **oos_dirs;       /* O/<seq>/d0-dXX */
156         u64              oos_seq;          /* seq number */
157         struct list_head oos_seq_list;     /* list to seq_list */
158 };
159
160 struct osd_obj_map {
161         struct dentry    *om_root;        /* dentry for /O */
162         rwlock_t         om_seq_list_lock; /* lock for seq_list */
163         struct list_head om_seq_list;      /* list head for seq */
164         int              om_subdir_count;
165         struct mutex     om_dir_init_mutex;
166 };
167
168 struct osd_mdobj {
169         struct dentry   *om_root;      /* AGENT/<index> */
170         u64              om_index;     /* mdt index */
171         struct list_head om_list;      /* list to omm_list */
172 };
173
174 struct osd_mdobj_map {
175         struct dentry   *omm_remote_parent;
176 };
177 int osd_ldiskfs_add_entry(struct osd_thread_info *info, struct osd_device *osd,
178                           handle_t *handle, struct dentry *child,
179                           struct inode *inode, struct htree_lock *hlock);
180
181 #define OSD_OTABLE_IT_CACHE_SIZE        64
182 #define OSD_OTABLE_IT_CACHE_MASK        (~(OSD_OTABLE_IT_CACHE_SIZE - 1))
183
184 struct osd_inconsistent_item {
185         /* link into osd_scrub::os_inconsistent_items,
186          * protected by osd_scrub::os_lock. */
187         struct list_head       oii_list;
188
189         /* The right FID <=> ino#/gen mapping. */
190         struct osd_idmap_cache oii_cache;
191
192         unsigned int           oii_insert:1; /* insert or update mapping. */
193 };
194
195 struct osd_otable_cache {
196         struct osd_idmap_cache ooc_cache[OSD_OTABLE_IT_CACHE_SIZE];
197
198         /* Index for next cache slot to be filled. */
199         int                    ooc_producer_idx;
200
201         /* Index for next cache slot to be returned by it::next(). */
202         int                    ooc_consumer_idx;
203
204         /* How many items in ooc_cache. */
205         int                    ooc_cached_items;
206
207         /* Position for up layer LFSCK iteration pre-loading. */
208         __u32                  ooc_pos_preload;
209 };
210
211 struct osd_otable_it {
212         struct osd_device       *ooi_dev;
213         struct osd_otable_cache  ooi_cache;
214
215         /* The following bits can be updated/checked w/o lock protection.
216          * If more bits will be introduced in the future and need lock to
217          * protect, please add comment. */
218         unsigned long            ooi_used_outside:1, /* Some user out of OSD
219                                                       * uses the iteration. */
220                                  ooi_all_cached:1, /* No more entries can be
221                                                     * filled into cache. */
222                                  ooi_user_ready:1, /* The user out of OSD is
223                                                     * ready to iterate. */
224                                  ooi_waiting:1; /* it::next is waiting. */
225 };
226
227 struct osd_obj_orphan {
228         struct list_head oor_list;
229         struct lu_env   *oor_env; /* to identify "own" records */
230         __u32 oor_ino;
231 };
232
233 /*
234  * osd device.
235  */
236 struct osd_device {
237         /* super-class */
238         struct dt_device          od_dt_dev;
239         /* information about underlying file system */
240         struct vfsmount          *od_mnt;
241         /* object index */
242         struct osd_oi           **od_oi_table;
243         /* total number of OI containers */
244         int                       od_oi_count;
245         /*
246          * Fid Capability
247          */
248         unsigned int              od_fl_capa:1,
249                                   od_maybe_new:1,
250                                   od_noscrub:1,
251                                   od_igif_inoi:1,
252                                   od_check_ff:1,
253                                   od_is_ost:1,
254                                   od_index_in_idif:1;
255
256         __u32                     od_dirent_journal;
257         int                       od_index;
258         struct proc_dir_entry    *od_proc_entry;
259         struct lprocfs_stats     *od_stats;
260
261         spinlock_t                od_osfs_lock;
262
263         int                       od_connects;
264         struct lu_site            od_site;
265
266         struct osd_obj_map      *od_ost_map;
267         struct osd_mdobj_map    *od_mdt_map;
268
269         unsigned long long      od_readcache_max_filesize;
270         int                     od_read_cache;
271         int                     od_writethrough_cache;
272
273         struct brw_stats        od_brw_stats;
274         atomic_t                od_r_in_flight;
275         atomic_t                od_w_in_flight;
276
277         struct mutex              od_otable_mutex;
278         struct osd_otable_it     *od_otable_it;
279         struct osd_scrub          od_scrub;
280         struct list_head                  od_ios_list;
281
282         /* service name associated with the osd device */
283         char                      od_svname[MAX_OBD_NAME];
284         char                      od_mntdev[MAX_OBD_NAME];
285
286         /* quota slave instance */
287         struct qsd_instance      *od_quota_slave;
288
289         /* osd seq instance */
290         struct lu_client_seq    *od_cl_seq;
291         /* If the ratio of "the total OI mappings count" vs
292          * "the bad OI mappings count" is lower than the
293          * osd_device::od_full_scrub_ratio, then trigger
294          * OI scrub to scan the whole the device. */
295         __u64                    od_full_scrub_ratio;
296         /* If the speed of found bad OI mappings (per minute)
297          * exceeds the osd_device::od_full_scrub_threshold_rate,
298          * then trigger OI scrub to scan the whole device. */
299         __u64                    od_full_scrub_threshold_rate;
300
301         /* a list of orphaned agent inodes, protected with od_osfs_lock */
302         struct list_head         od_orphan_list;
303 };
304
305 enum osd_full_scrub_ratio {
306         /* Trigger OI scrub to scan the whole device directly. */
307         OFSR_DIRECTLY   = 0,
308
309         /* Because the bad OI mappings count cannot be larger than
310          * the total OI mappints count, then setting OFSR_NEVER means
311          * that the whole device scanning cannot be triggered by auto
312          * detected bad OI mappings during the RPC services. */
313         OFSR_NEVER      = 1,
314         OFSR_DEFAULT    = 10000,
315 };
316
317 #define FULL_SCRUB_THRESHOLD_RATE_DEFAULT       60
318
319 /* There are at most 10 uid/gids are affected in a transaction, and
320  * that's rename case:
321  * - 2 for source parent uid & gid;
322  * - 2 for source child uid & gid ('..' entry update when child is directory);
323  * - 2 for target parent uid & gid;
324  * - 2 for target child uid & gid (if the target child exists);
325  * - 2 for root uid & gid (last_rcvd, llog, etc);
326  *
327  * The 0 to (OSD_MAX_UGID_CNT - 1) bits of ot_id_type is for indicating
328  * the id type of each id in the ot_id_array.
329  */
330 #define OSD_MAX_UGID_CNT        10
331
332 enum osd_op_type {
333         OSD_OT_ATTR_SET         = 0,
334         OSD_OT_PUNCH            = 1,
335         OSD_OT_XATTR_SET        = 2,
336         OSD_OT_CREATE           = 3,
337         OSD_OT_DESTROY          = 4,
338         OSD_OT_REF_ADD          = 5,
339         OSD_OT_REF_DEL          = 6,
340         OSD_OT_WRITE            = 7,
341         OSD_OT_INSERT           = 8,
342         OSD_OT_DELETE           = 9,
343         OSD_OT_QUOTA            = 10,
344         OSD_OT_MAX              = 11
345 };
346
347 struct osd_thandle {
348         struct thandle          ot_super;
349         handle_t               *ot_handle;
350         struct ldiskfs_journal_cb_entry ot_jcb;
351         struct list_head       ot_commit_dcb_list;
352         struct list_head       ot_stop_dcb_list;
353         /* Link to the device, for debugging. */
354         struct lu_ref_link      ot_dev_link;
355         unsigned int            ot_credits;
356         unsigned short          ot_id_cnt;
357         unsigned short          ot_id_type;
358         unsigned int            ot_remove_agents:1;
359         uid_t                   ot_id_array[OSD_MAX_UGID_CNT];
360         struct lquota_trans    *ot_quota_trans;
361 #if OSD_THANDLE_STATS
362         /** time when this handle was allocated */
363         ktime_t oth_alloced;
364
365         /** time when this thanle was started */
366         ktime_t oth_started;
367 #endif
368 };
369
370 /**
371  * Basic transaction credit op
372  */
373 enum dt_txn_op {
374         DTO_INDEX_INSERT,
375         DTO_INDEX_DELETE,
376         DTO_INDEX_UPDATE,
377         DTO_OBJECT_CREATE,
378         DTO_OBJECT_DELETE,
379         DTO_ATTR_SET_BASE,
380         DTO_XATTR_SET,
381         DTO_WRITE_BASE,
382         DTO_WRITE_BLOCK,
383         DTO_ATTR_SET_CHOWN,
384
385         DTO_NR
386 };
387
388 /*
389  * osd dev stats
390  */
391
392 #ifdef CONFIG_PROC_FS
393 enum {
394         LPROC_OSD_READ_BYTES    = 0,
395         LPROC_OSD_WRITE_BYTES   = 1,
396         LPROC_OSD_GET_PAGE      = 2,
397         LPROC_OSD_NO_PAGE       = 3,
398         LPROC_OSD_CACHE_ACCESS  = 4,
399         LPROC_OSD_CACHE_HIT     = 5,
400         LPROC_OSD_CACHE_MISS    = 6,
401
402 #if OSD_THANDLE_STATS
403         LPROC_OSD_THANDLE_STARTING,
404         LPROC_OSD_THANDLE_OPEN,
405         LPROC_OSD_THANDLE_CLOSING,
406 #endif
407         LPROC_OSD_LAST,
408 };
409 #endif
410
411 /**
412  * Storage representation for fids.
413  *
414  * Variable size, first byte contains the length of the whole record.
415  */
416 struct osd_fid_pack {
417         unsigned char fp_len;
418         char fp_area[sizeof(struct lu_fid)];
419 };
420
421 struct osd_it_ea_dirent {
422         struct lu_fid   oied_fid;
423         __u64           oied_ino;
424         __u64           oied_off;
425         unsigned short  oied_namelen;
426         unsigned int    oied_type;
427         char            oied_name[0];
428 } __attribute__((packed));
429
430 /**
431  * as osd_it_ea_dirent (in memory dirent struct for osd) is greater
432  * than lu_dirent struct. osd readdir reads less number of dirent than
433  * required for mdd dir page. so buffer size need to be increased so that
434  * there  would be one ext3 readdir for every mdd readdir page.
435  */
436
437 #define OSD_IT_EA_BUFSIZE       (PAGE_SIZE + PAGE_SIZE/4)
438
439 /**
440  * This is iterator's in-memory data structure in interoperability
441  * mode (i.e. iterator over ldiskfs style directory)
442  */
443 struct osd_it_ea {
444         struct osd_object       *oie_obj;
445         /** used in ldiskfs iterator, to stored file pointer */
446         struct file             oie_file;
447         /** how many entries have been read-cached from storage */
448         int                     oie_rd_dirent;
449         /** current entry is being iterated by caller */
450         int                     oie_it_dirent;
451         /** current processing entry */
452         struct osd_it_ea_dirent *oie_dirent;
453         /** buffer to hold entries, size == OSD_IT_EA_BUFSIZE */
454         void                    *oie_buf;
455         struct dentry           oie_dentry;
456 };
457
458 /**
459  * Iterator's in-memory data structure for IAM mode.
460  */
461 struct osd_it_iam {
462         struct osd_object     *oi_obj;
463         struct iam_path_descr *oi_ipd;
464         struct iam_iterator    oi_it;
465 };
466
467 struct osd_quota_leaf {
468         struct list_head        oql_link;
469         uint            oql_blk;
470 };
471
472 /**
473  * Iterator's in-memory data structure for quota file.
474  */
475 struct osd_it_quota {
476         struct osd_object       *oiq_obj;
477         /** tree blocks path to where the entry is stored */
478         uint                     oiq_blk[LUSTRE_DQTREEDEPTH + 1];
479         /** on-disk offset for current key where quota record can be found */
480         loff_t                   oiq_offset;
481         /** identifier for current quota record */
482         __u64                    oiq_id;
483         /** the record index in the leaf/index block */
484         uint                     oiq_index[LUSTRE_DQTREEDEPTH + 1];
485         /** list of already processed leaf blocks */
486         struct list_head         oiq_list;
487 };
488
489 #define MAX_BLOCKS_PER_PAGE (PAGE_SIZE / 512)
490
491 struct osd_iobuf {
492         wait_queue_head_t  dr_wait;
493         atomic_t       dr_numreqs;  /* number of reqs being processed */
494         int                dr_max_pages;
495         int                dr_npages;
496         int                dr_error;
497         int                dr_frags;
498         unsigned int       dr_ignore_quota:1;
499         unsigned int       dr_elapsed_valid:1; /* we really did count time */
500         unsigned int       dr_rw:1;
501         struct lu_buf      dr_pg_buf;
502         struct page      **dr_pages;
503         struct lu_buf      dr_bl_buf;
504         sector_t          *dr_blocks;
505         unsigned long      dr_start_time;
506         unsigned long      dr_elapsed;  /* how long io took */
507         struct osd_device *dr_dev;
508         unsigned int       dr_init_at;  /* the line iobuf was initialized */
509 };
510
511 #define OSD_INS_CACHE_SIZE      8
512
513 struct osd_thread_info {
514         const struct lu_env   *oti_env;
515         /**
516          * used for index operations.
517          */
518         struct dentry          oti_obj_dentry;
519         struct dentry          oti_child_dentry;
520
521         /** dentry for Iterator context. */
522         struct dentry           oti_it_dentry;
523
524         union {
525                 /* fake struct file for osd_object_sync */
526                 struct file             oti_file;
527                 /* osd_statfs() */
528                 struct kstatfs          oti_ksfs;
529         };
530
531         struct htree_lock     *oti_hlock;
532
533         struct lu_fid          oti_fid;
534         struct lu_fid          oti_fid2;
535         struct lu_fid          oti_fid3;
536         struct osd_inode_id    oti_id;
537         struct osd_inode_id    oti_id2;
538         struct osd_inode_id    oti_id3;
539         struct ost_id          oti_ostid;
540
541         /*
542          * XXX temporary: for ->i_op calls.
543          */
544         struct timespec        oti_time;
545
546         /**
547          * following ipd and it structures are used for osd_index_iam_lookup()
548          * these are defined separately as we might do index operation
549          * in open iterator session.
550          */
551
552         /** pre-allocated buffer used by oti_it_ea, size OSD_IT_EA_BUFSIZE */
553         void                    *oti_it_ea_buf;
554         unsigned int            oti_it_ea_buf_used:1;
555
556         /* IAM iterator for index operation. */
557         struct iam_iterator    oti_idx_it;
558
559         /** union to guarantee that ->oti_ipd[] has proper alignment. */
560         union {
561                 char           oti_name[48];
562                 char           oti_it_ipd[DX_IPD_MAX_SIZE];
563                 long long      oti_alignment_lieutenant;
564         };
565
566         union {
567                 char           oti_idx_ipd[DX_IPD_MAX_SIZE];
568                 long long      oti_alignment_lieutenant_colonel;
569         };
570
571         struct osd_idmap_cache oti_cache;
572
573         /* dedicated OI cache for insert (which needs inum) */
574         struct osd_idmap_cache *oti_ins_cache;
575         int                    oti_ins_cache_size;
576         int                    oti_ins_cache_used;
577
578         int                    oti_r_locks;
579         int                    oti_w_locks;
580         int                    oti_txns;
581         /** used in osd_fid_set() to put xattr */
582         struct lu_buf          oti_buf;
583         struct lu_buf          oti_big_buf;
584         /** used in osd_ea_fid_set() to set fid into common ea */
585         union {
586                 struct lustre_ost_attrs oti_ost_attrs;
587                 struct filter_fid_old   oti_ff;
588                 struct filter_fid       oti_ff_new;
589         };
590         /** 0-copy IO */
591         struct osd_iobuf       oti_iobuf;
592         /* used to access objects in /O */
593         struct inode          *oti_inode;
594 #define OSD_FID_REC_SZ 32
595         char                   oti_ldp[OSD_FID_REC_SZ];
596         char                   oti_ldp2[OSD_FID_REC_SZ];
597
598         /* used by quota code */
599         union {
600 #if defined(HAVE_DQUOT_QC_DQBLK)
601                 struct qc_dqblk         oti_qdq;
602 #elif defined(HAVE_DQUOT_FS_DISK_QUOTA)
603                 struct fs_disk_quota    oti_fdq;
604 #else
605                 struct if_dqblk         oti_dqblk;
606 #endif
607                 struct if_dqinfo        oti_dqinfo;
608         };
609         struct lquota_id_info   oti_qi;
610         struct lquota_trans     oti_quota_trans;
611         union lquota_rec        oti_quota_rec;
612         __u64                   oti_quota_id;
613         struct lu_seq_range     oti_seq_range;
614
615         /* Tracking for transaction credits, to allow debugging and optimizing
616          * cases where a large number of credits are being allocated for
617          * single transaction. */
618         unsigned int            oti_credits_before;
619         unsigned int            oti_declare_ops[OSD_OT_MAX];
620         unsigned int            oti_declare_ops_cred[OSD_OT_MAX];
621         unsigned int            oti_declare_ops_used[OSD_OT_MAX];
622 };
623
624 extern int ldiskfs_pdo;
625
626 static inline int __osd_xattr_get(struct inode *inode, struct dentry *dentry,
627                                   const char *name, void *buf, int len)
628 {
629         if (inode == NULL)
630                 return -EINVAL;
631
632         dentry->d_inode = inode;
633         dentry->d_sb = inode->i_sb;
634         return inode->i_op->getxattr(dentry, name, buf, len);
635 }
636
637 static inline int __osd_xattr_set(struct osd_thread_info *info,
638                                   struct inode *inode, const char *name,
639                                   const void *buf, int buflen, int fl)
640 {
641         struct dentry *dentry = &info->oti_child_dentry;
642
643         ll_vfs_dq_init(inode);
644         dentry->d_inode = inode;
645         dentry->d_sb = inode->i_sb;
646         return inode->i_op->setxattr(dentry, name, buf, buflen, fl);
647 }
648
649 #ifdef CONFIG_PROC_FS
650 /* osd_lproc.c */
651 extern struct lprocfs_vars lprocfs_osd_obd_vars[];
652 extern struct lprocfs_vars lprocfs_osd_module_vars[];
653 int osd_procfs_init(struct osd_device *osd, const char *name);
654 int osd_procfs_fini(struct osd_device *osd);
655 void osd_brw_stats_update(struct osd_device *osd, struct osd_iobuf *iobuf);
656 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 52, 0)
657 int osd_register_proc_index_in_idif(struct osd_device *osd);
658 #endif
659
660 #endif
661 int osd_statfs(const struct lu_env *env, struct dt_device *dev,
662                struct obd_statfs *sfs);
663 struct inode *osd_iget(struct osd_thread_info *info, struct osd_device *dev,
664                        struct osd_inode_id *id);
665 int osd_ea_fid_set(struct osd_thread_info *info, struct inode *inode,
666                    const struct lu_fid *fid, __u32 compat, __u32 incompat);
667 int osd_get_lma(struct osd_thread_info *info, struct inode *inode,
668                 struct dentry *dentry, struct lustre_ost_attrs *loa);
669 void osd_add_oi_cache(struct osd_thread_info *info, struct osd_device *osd,
670                       struct osd_inode_id *id, const struct lu_fid *fid);
671 int osd_get_idif(struct osd_thread_info *info, struct inode *inode,
672                  struct dentry *dentry, struct lu_fid *fid);
673
674 int osd_obj_map_init(const struct lu_env *env, struct osd_device *osd);
675 void osd_obj_map_fini(struct osd_device *dev);
676 int osd_obj_map_lookup(struct osd_thread_info *info, struct osd_device *osd,
677                         const struct lu_fid *fid, struct osd_inode_id *id);
678 int osd_obj_map_insert(struct osd_thread_info *info, struct osd_device *osd,
679                        const struct lu_fid *fid, const struct osd_inode_id *id,
680                        handle_t *th);
681 int osd_obj_map_delete(struct osd_thread_info *info, struct osd_device *osd,
682                         const struct lu_fid *fid, handle_t *th);
683 int osd_obj_map_update(struct osd_thread_info *info, struct osd_device *osd,
684                        const struct lu_fid *fid, const struct osd_inode_id *id,
685                        handle_t *th);
686 int osd_obj_map_recover(struct osd_thread_info *info, struct osd_device *osd,
687                         struct inode *src_parent, struct dentry *src_child,
688                         const struct lu_fid *fid);
689 int osd_obj_spec_lookup(struct osd_thread_info *info, struct osd_device *osd,
690                         const struct lu_fid *fid, struct osd_inode_id *id);
691 int osd_obj_spec_insert(struct osd_thread_info *info, struct osd_device *osd,
692                         const struct lu_fid *fid, const struct osd_inode_id *id,
693                         handle_t *th);
694 int osd_obj_spec_update(struct osd_thread_info *info, struct osd_device *osd,
695                         const struct lu_fid *fid, const struct osd_inode_id *id,
696                         handle_t *th);
697
698 void osd_scrub_file_reset(struct osd_scrub *scrub, __u8 *uuid, __u64 flags);
699 int osd_scrub_file_store(struct osd_scrub *scrub);
700 char *osd_lf_fid2name(const struct lu_fid *fid);
701 int osd_scrub_start(struct osd_device *dev, __u32 flags);
702 int osd_scrub_setup(const struct lu_env *env, struct osd_device *dev);
703 void osd_scrub_cleanup(const struct lu_env *env, struct osd_device *dev);
704 int osd_oii_insert(struct osd_device *dev, struct osd_idmap_cache *oic,
705                    int insert);
706 int osd_oii_lookup(struct osd_device *dev, const struct lu_fid *fid,
707                    struct osd_inode_id *id);
708 int osd_scrub_dump(struct seq_file *m, struct osd_device *dev);
709
710 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
711                    u64 seq, struct lu_seq_range *range);
712
713 int osd_delete_from_remote_parent(const struct lu_env *env,
714                                   struct osd_device *osd,
715                                   struct osd_object *obj,
716                                   struct osd_thandle *oh);
717 int osd_add_to_remote_parent(const struct lu_env *env, struct osd_device *osd,
718                              struct osd_object *obj, struct osd_thandle *oh);
719 int osd_lookup_in_remote_parent(struct osd_thread_info *oti,
720                                 struct osd_device *osd,
721                                 const struct lu_fid *fid,
722                                 struct osd_inode_id *id);
723
724 int osd_ost_seq_exists(struct osd_thread_info *info, struct osd_device *osd,
725                        __u64 seq);
726 /* osd_quota_fmt.c */
727 int walk_tree_dqentry(const struct lu_env *env, struct osd_object *obj,
728                       int type, uint blk, int depth, uint index,
729                       struct osd_it_quota *it);
730 int walk_block_dqentry(const struct lu_env *env, struct osd_object *obj,
731                        int type, uint blk, uint index,
732                        struct osd_it_quota *it);
733 loff_t find_tree_dqentry(const struct lu_env *env,
734                          struct osd_object *obj, int type,
735                          qid_t dqid, uint blk, int depth,
736                          struct osd_it_quota *it);
737 /* osd_quota.c */
738 int osd_declare_qid(const struct lu_env *env, struct osd_thandle *oh,
739                     struct lquota_id_info *qi, struct osd_object *obj,
740                     bool enforce, int *flags);
741 int osd_declare_inode_qid(const struct lu_env *env, qid_t uid, qid_t gid,
742                           long long space, struct osd_thandle *oh,
743                           struct osd_object *obj, bool is_blk, int *flags,
744                           bool force);
745 const struct dt_rec *osd_quota_pack(struct osd_object *obj,
746                                     const struct dt_rec *rec,
747                                     union lquota_rec *quota_rec);
748 void osd_quota_unpack(struct osd_object *obj, const struct dt_rec *rec);
749 int osd_quota_migration(const struct lu_env *env, struct dt_object *dt);
750
751 #ifndef HAVE_I_UID_READ
752 static inline uid_t i_uid_read(const struct inode *inode)
753 {
754         return inode->i_uid;
755 }
756
757 static inline gid_t i_gid_read(const struct inode *inode)
758 {
759         return inode->i_gid;
760 }
761
762 static inline void i_uid_write(struct inode *inode, uid_t uid)
763 {
764         inode->i_uid = uid;
765 }
766
767 static inline void i_gid_write(struct inode *inode, gid_t gid)
768 {
769         inode->i_gid = gid;
770 }
771 #endif
772
773 #ifdef HAVE_LDISKFS_INFO_JINODE
774 # define osd_attach_jinode(inode) ldiskfs_inode_attach_jinode(inode)
775 #else  /* HAVE_LDISKFS_INFO_JINODE */
776 # define osd_attach_jinode(inode) 0
777 #endif /* HAVE_LDISKFS_INFO_JINODE */
778
779 #ifdef LDISKFS_HT_MISC
780 # define osd_journal_start_sb(sb, type, nblock) \
781                 ldiskfs_journal_start_sb(sb, type, nblock)
782 static inline struct buffer_head *osd_ldiskfs_append(handle_t *handle,
783                                                      struct inode *inode,
784                                                      ldiskfs_lblk_t *nblock)
785 {
786         int rc;
787
788         rc = osd_attach_jinode(inode);
789         if (rc)
790                 return ERR_PTR(rc);
791         return ldiskfs_append(handle, inode, nblock);
792 }
793 # define osd_ldiskfs_find_entry(dir, name, de, inlined, lock) \
794                 (__ldiskfs_find_entry(dir, name, de, inlined, lock) ?: \
795                  ERR_PTR(-ENOENT))
796 # define osd_journal_start(inode, type, nblocks) \
797                 ldiskfs_journal_start(inode, type, nblocks)
798 # define osd_transaction_size(dev) \
799                 (osd_journal(dev)->j_max_transaction_buffers / 2)
800 #else
801 # define LDISKFS_HT_MISC        0
802 # define osd_journal_start_sb(sb, type, nblock) \
803                 ldiskfs_journal_start_sb(sb, nblock)
804
805 static inline struct buffer_head *osd_ldiskfs_append(handle_t *handle,
806                                                      struct inode *inode,
807                                                      ldiskfs_lblk_t *nblock)
808 {
809         struct buffer_head *bh;
810         int err = 0;
811
812         bh = ldiskfs_append(handle, inode, nblock, &err);
813         if (bh == NULL)
814                 bh = ERR_PTR(err);
815
816         return bh;
817 }
818
819 # define osd_ldiskfs_find_entry(dir, name, de, inlined, lock) \
820                 (__ldiskfs_find_entry(dir, name, de, lock) ?: \
821                  ERR_PTR(-ENOENT))
822 # define osd_journal_start(inode, type, nblocks) \
823                 ldiskfs_journal_start(inode, nblocks)
824 # define osd_transaction_size(dev) \
825                 (osd_journal(dev)->j_max_transaction_buffers)
826 #endif
827
828 /*
829  * Invariants, assertions.
830  */
831
832 /*
833  * XXX: do not enable this, until invariant checking code is made thread safe
834  * in the face of pdirops locking.
835  */
836 #define OSD_INVARIANT_CHECKS (0)
837
838 #if OSD_INVARIANT_CHECKS
839 static inline int osd_invariant(const struct osd_object *obj)
840 {
841         return
842                 obj != NULL &&
843                 ergo(obj->oo_inode != NULL,
844                      obj->oo_inode->i_sb == osd_sb(osd_obj2dev(obj)) &&
845                      atomic_read(&obj->oo_inode->i_count) > 0) &&
846                 ergo(obj->oo_dir != NULL &&
847                      obj->oo_dir->od_conationer.ic_object != NULL,
848                      obj->oo_dir->od_conationer.ic_object == obj->oo_inode);
849 }
850 #else
851 #define osd_invariant(obj) (1)
852 #endif
853
854 #define OSD_MAX_CACHE_SIZE OBD_OBJECT_EOF
855
856 extern const struct dt_index_operations osd_otable_ops;
857
858 static inline int osd_oi_fid2idx(struct osd_device *dev,
859                                  const struct lu_fid *fid)
860 {
861         return fid->f_seq & (dev->od_oi_count - 1);
862 }
863
864 static inline struct osd_oi *osd_fid2oi(struct osd_device *osd,
865                                         const struct lu_fid *fid)
866 {
867         LASSERTF(!fid_is_idif(fid), DFID"\n", PFID(fid));
868         LASSERTF(!fid_is_last_id(fid), DFID"\n", PFID(fid));
869         LASSERTF(osd->od_oi_table != NULL && osd->od_oi_count >= 1,
870                  DFID"\n", PFID(fid));
871         /* It can work even od_oi_count equals to 1 although it's unexpected,
872          * the only reason we set it to 1 is for performance measurement */
873         return osd->od_oi_table[osd_oi_fid2idx(osd, fid)];
874 }
875
876 extern const struct lu_device_operations  osd_lu_ops;
877
878 static inline int lu_device_is_osd(const struct lu_device *d)
879 {
880         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &osd_lu_ops);
881 }
882
883 static inline struct osd_device *osd_dt_dev(const struct dt_device *d)
884 {
885         LASSERT(lu_device_is_osd(&d->dd_lu_dev));
886         return container_of0(d, struct osd_device, od_dt_dev);
887 }
888
889 static inline struct osd_device *osd_dev(const struct lu_device *d)
890 {
891         LASSERT(lu_device_is_osd(d));
892         return osd_dt_dev(container_of0(d, struct dt_device, dd_lu_dev));
893 }
894
895 static inline struct osd_device *osd_obj2dev(const struct osd_object *o)
896 {
897         return osd_dev(o->oo_dt.do_lu.lo_dev);
898 }
899
900 static inline struct super_block *osd_sb(const struct osd_device *dev)
901 {
902         return dev->od_mnt->mnt_sb;
903 }
904
905 /**
906  * Put the osd object once done with it.
907  *
908  * \param obj osd object that needs to be put
909  */
910 static inline void osd_object_put(const struct lu_env *env,
911                                   struct osd_object *obj)
912 {
913         dt_object_put(env, &obj->oo_dt);
914 }
915
916 static inline int osd_object_is_root(const struct osd_object *obj)
917 {
918         return osd_sb(osd_obj2dev(obj))->s_root->d_inode == obj->oo_inode;
919 }
920
921 static inline struct osd_object *osd_obj(const struct lu_object *o)
922 {
923         LASSERT(lu_device_is_osd(o->lo_dev));
924         return container_of0(o, struct osd_object, oo_dt.do_lu);
925 }
926
927 static inline struct osd_object *osd_dt_obj(const struct dt_object *d)
928 {
929         return osd_obj(&d->do_lu);
930 }
931
932 static inline struct lu_device *osd2lu_dev(struct osd_device *osd)
933 {
934         return &osd->od_dt_dev.dd_lu_dev;
935 }
936
937 static inline journal_t *osd_journal(const struct osd_device *dev)
938 {
939         return LDISKFS_SB(osd_sb(dev))->s_journal;
940 }
941
942 static inline struct seq_server_site *osd_seq_site(struct osd_device *osd)
943 {
944         return osd->od_dt_dev.dd_lu_dev.ld_site->ld_seq_site;
945 }
946
947 static inline char *osd_name(struct osd_device *osd)
948 {
949         return osd->od_svname;
950 }
951
952 static inline bool osd_is_ea_inode(struct inode *inode)
953 {
954         return !!(LDISKFS_I(inode)->i_flags & LDISKFS_EA_INODE_FL);
955 }
956
957 extern const struct dt_body_operations osd_body_ops;
958 extern struct lu_context_key osd_key;
959
960 static inline struct osd_thread_info *osd_oti_get(const struct lu_env *env)
961 {
962         return lu_context_key_get(&env->le_ctx, &osd_key);
963 }
964
965 extern const struct dt_body_operations osd_body_ops_new;
966
967 /**
968  * IAM Iterator
969  */
970 static inline
971 struct iam_path_descr *osd_it_ipd_get(const struct lu_env *env,
972                                       const struct iam_container *bag)
973 {
974         return bag->ic_descr->id_ops->id_ipd_alloc(bag,
975                                            osd_oti_get(env)->oti_it_ipd);
976 }
977
978 static inline
979 struct iam_path_descr *osd_idx_ipd_get(const struct lu_env *env,
980                                        const struct iam_container *bag)
981 {
982         return bag->ic_descr->id_ops->id_ipd_alloc(bag,
983                                            osd_oti_get(env)->oti_idx_ipd);
984 }
985
986 static inline void osd_ipd_put(const struct lu_env *env,
987                                const struct iam_container *bag,
988                                struct iam_path_descr *ipd)
989 {
990         bag->ic_descr->id_ops->id_ipd_free(ipd);
991 }
992
993 int osd_calc_bkmap_credits(struct super_block *sb, struct inode *inode,
994                            const loff_t size, const loff_t pos,
995                            const int blocks);
996
997 int osd_ldiskfs_read(struct inode *inode, void *buf, int size, loff_t *offs);
998 int osd_ldiskfs_write_record(struct inode *inode, void *buf, int bufsize,
999                              int write_NUL, loff_t *offs, handle_t *handle);
1000
1001 static inline
1002 struct dentry *osd_child_dentry_by_inode(const struct lu_env *env,
1003                                          struct inode *inode,
1004                                          const char *name, const int namelen)
1005 {
1006         struct osd_thread_info *info = osd_oti_get(env);
1007         struct dentry *child_dentry = &info->oti_child_dentry;
1008         struct dentry *obj_dentry = &info->oti_obj_dentry;
1009
1010         obj_dentry->d_inode = inode;
1011         obj_dentry->d_sb = inode->i_sb;
1012         obj_dentry->d_name.hash = 0;
1013
1014         child_dentry->d_name.hash = 0;
1015         child_dentry->d_parent = obj_dentry;
1016         child_dentry->d_name.name = name;
1017         child_dentry->d_name.len = namelen;
1018         return child_dentry;
1019 }
1020
1021 extern int osd_trans_declare_op2rb[];
1022 extern int ldiskfs_track_declares_assert;
1023 void osd_trans_dump_creds(const struct lu_env *env, struct thandle *th);
1024
1025 static inline void osd_trans_declare_op(const struct lu_env *env,
1026                                         struct osd_thandle *oh,
1027                                         enum osd_op_type op, int credits)
1028 {
1029         struct osd_thread_info *oti = osd_oti_get(env);
1030
1031         LASSERT(oh->ot_handle == NULL);
1032         if (unlikely(op >= OSD_OT_MAX)) {
1033                 if (unlikely(ldiskfs_track_declares_assert)) {
1034                         LASSERT(op < OSD_OT_MAX);
1035                 } else {
1036                         CWARN("%s: Invalid operation index %d\n",
1037                               osd_name(osd_dt_dev(oh->ot_super.th_dev)), op);
1038                         libcfs_debug_dumpstack(NULL);
1039                 }
1040         } else {
1041                 oti->oti_declare_ops[op]++;
1042                 oti->oti_declare_ops_cred[op] += credits;
1043         }
1044         oh->ot_credits += credits;
1045 }
1046
1047 static inline void osd_trans_exec_op(const struct lu_env *env,
1048                                      struct thandle *th,
1049                                      enum osd_op_type op)
1050 {
1051         struct osd_thread_info *oti = osd_oti_get(env);
1052         struct osd_thandle     *oh  = container_of(th, struct osd_thandle,
1053                                                    ot_super);
1054         unsigned int            rb, left;
1055
1056         LASSERT(oh->ot_handle != NULL);
1057         if (unlikely(op >= OSD_OT_MAX)) {
1058                 if (unlikely(ldiskfs_track_declares_assert))
1059                         LASSERT(op < OSD_OT_MAX);
1060                 else {
1061                         CWARN("%s: opcode %u: invalid value >= %u\n",
1062                               osd_name(osd_dt_dev(oh->ot_super.th_dev)),
1063                               op, OSD_OT_MAX);
1064                         libcfs_debug_dumpstack(NULL);
1065                         return;
1066                 }
1067         }
1068
1069         /* find rollback (or reverse) operation for the given one
1070          * such an operation doesn't require additional credits
1071          * as the same set of blocks are modified */
1072         rb = osd_trans_declare_op2rb[op];
1073
1074         /* check whether credits for this operation were reserved at all */
1075         if (unlikely(oti->oti_declare_ops_cred[op] == 0 &&
1076                      oti->oti_declare_ops_cred[rb] == 0)) {
1077                 /* the API is not perfect yet: CREATE does REF_ADD internally
1078                  * while DESTROY does not. To rollback CREATE the callers
1079                  * needs to call REF_DEL+DESTROY which is hard to detect using
1080                  * a simple table of rollback operations */
1081                 if (op == OSD_OT_REF_DEL &&
1082                     oti->oti_declare_ops_cred[OSD_OT_CREATE] > 0)
1083                         goto proceed;
1084                 if (op == OSD_OT_REF_ADD &&
1085                     oti->oti_declare_ops_cred[OSD_OT_DESTROY] > 0)
1086                         goto proceed;
1087                 CWARN("%s: opcode %u: credits = 0, rollback = %u\n",
1088                       osd_name(osd_dt_dev(oh->ot_super.th_dev)), op, rb);
1089                 osd_trans_dump_creds(env, th);
1090                 LASSERT(!ldiskfs_track_declares_assert);
1091         }
1092
1093 proceed:
1094         /* remember how many credits we have unused before the operation */
1095         oti->oti_credits_before = oh->ot_handle->h_buffer_credits;
1096         left = oti->oti_declare_ops_cred[op] - oti->oti_declare_ops_used[op];
1097         if (unlikely(oti->oti_credits_before < left)) {
1098                 CWARN("%s: opcode %u: before %u < left %u, rollback = %u\n",
1099                       osd_name(osd_dt_dev(oh->ot_super.th_dev)), op,
1100                       oti->oti_credits_before, left, rb);
1101                 osd_trans_dump_creds(env, th);
1102                 /* on a very small fs (testing?) it's possible that
1103                  * the transaction can't fit 1/4 of journal, so we
1104                  * just request less credits (see osd_trans_start()).
1105                  * ignore the same case here */
1106                 rb = osd_transaction_size(osd_dt_dev(th->th_dev));
1107                 if (unlikely(oh->ot_credits < rb))
1108                         LASSERT(!ldiskfs_track_declares_assert);
1109         }
1110 }
1111
1112 static inline void osd_trans_exec_check(const struct lu_env *env,
1113                                         struct thandle *th,
1114                                         enum osd_op_type op)
1115 {
1116         struct osd_thread_info *oti = osd_oti_get(env);
1117         struct osd_thandle     *oh  = container_of(th, struct osd_thandle,
1118                                                    ot_super);
1119         int                     used, over, quota;
1120
1121         /* how many credits have been used by the operation */
1122         used = oti->oti_credits_before - oh->ot_handle->h_buffer_credits;
1123
1124         if (unlikely(used < 0)) {
1125                 /* if some block was allocated and released in the same
1126                  * transaction, then it won't be a part of the transaction
1127                  * and delta can be negative */
1128                 return;
1129         }
1130
1131         if (used == 0) {
1132                 /* rollback operations (e.g. when we destroy just created
1133                  * object) should not consume any credits. there is no point
1134                  * to confuse the checks below */
1135                 return;
1136         }
1137
1138         oti->oti_declare_ops_used[op] += used;
1139         if (oti->oti_declare_ops_used[op] <= oti->oti_declare_ops_cred[op])
1140                 return;
1141
1142         /* we account quota for a whole transaction and any operation can
1143          * consume corresponding credits */
1144         over = oti->oti_declare_ops_used[op] -
1145                 oti->oti_declare_ops_cred[op];
1146         quota = oti->oti_declare_ops_cred[OSD_OT_QUOTA] -
1147                 oti->oti_declare_ops_used[OSD_OT_QUOTA];
1148         if (over <= quota) {
1149                 /* probably that credits were consumed by
1150                  * quota indirectly (in the depths of ldiskfs) */
1151                 oti->oti_declare_ops_used[OSD_OT_QUOTA] += over;
1152                 oti->oti_declare_ops_used[op] -= over;
1153         } else {
1154                 CWARN("%s: opcode %d: used %u, used now %u, reserved %u\n",
1155                       osd_name(osd_dt_dev(oh->ot_super.th_dev)), op,
1156                       oti->oti_declare_ops_used[op], used,
1157                       oti->oti_declare_ops_cred[op]);
1158                 osd_trans_dump_creds(env, th);
1159                 if (unlikely(ldiskfs_track_declares_assert))
1160                         LBUG();
1161         }
1162 }
1163
1164 /**
1165  * Helper function to pack the fid, ldiskfs stores fid in packed format.
1166  */
1167 static inline
1168 void osd_fid_pack(struct osd_fid_pack *pack, const struct dt_rec *fid,
1169                   struct lu_fid *befider)
1170 {
1171         fid_cpu_to_be(befider, (struct lu_fid *)fid);
1172         memcpy(pack->fp_area, befider, sizeof(*befider));
1173         pack->fp_len =  sizeof(*befider) + 1;
1174 }
1175
1176 static inline
1177 int osd_fid_unpack(struct lu_fid *fid, const struct osd_fid_pack *pack)
1178 {
1179         int result;
1180
1181         result = 0;
1182         switch (pack->fp_len) {
1183         case sizeof *fid + 1:
1184                 memcpy(fid, pack->fp_area, sizeof *fid);
1185                 fid_be_to_cpu(fid, fid);
1186                 break;
1187         default:
1188                 CERROR("Unexpected packed fid size: %d\n", pack->fp_len);
1189                 result = -EIO;
1190         }
1191         return result;
1192 }
1193
1194 /**
1195  * Quota/Accounting handling
1196  */
1197 extern const struct dt_index_operations osd_acct_index_ops;
1198 int osd_acct_obj_lookup(struct osd_thread_info *info, struct osd_device *osd,
1199                         const struct lu_fid *fid, struct osd_inode_id *id);
1200
1201 /* copy from fs/ext4/dir.c */
1202 static inline int is_32bit_api(void)
1203 {
1204 #ifdef CONFIG_COMPAT
1205         return in_compat_syscall();
1206 #else
1207         return (BITS_PER_LONG == 32);
1208 #endif
1209 }
1210
1211 static inline loff_t ldiskfs_get_htree_eof(struct file *filp)
1212 {
1213         if ((filp->f_mode & FMODE_32BITHASH) ||
1214             (!(filp->f_mode & FMODE_64BITHASH) && is_32bit_api()))
1215                 return LDISKFS_HTREE_EOF_32BIT;
1216         else
1217                 return LDISKFS_HTREE_EOF_64BIT;
1218 }
1219
1220 static inline int fid_is_internal(const struct lu_fid *fid)
1221 {
1222         return (!fid_is_namespace_visible(fid) && !fid_is_idif(fid));
1223 }
1224
1225 static inline unsigned long osd_remote_parent_ino(struct osd_device *dev)
1226 {
1227         return dev->od_mdt_map->omm_remote_parent->d_inode->i_ino;
1228 }
1229
1230 /**
1231  * ext4_bread/ldiskfs_bread has either 5 or 4 parameters. The error
1232  * return code has been removed and integrated into the pointer in the
1233  * kernel 3.18.
1234  */
1235 static inline struct buffer_head *__ldiskfs_bread(handle_t *handle,
1236                                                   struct inode *inode,
1237                                                   ldiskfs_lblk_t block,
1238                                                   int create)
1239 {
1240         int rc = 0;
1241         struct buffer_head *bh;
1242
1243         if (create) {
1244                 rc = osd_attach_jinode(inode);
1245                 if (rc)
1246                         return ERR_PTR(rc);
1247         }
1248 #ifdef HAVE_EXT4_BREAD_4ARGS
1249         bh = ldiskfs_bread(handle, inode, block, create);
1250 #else
1251
1252         bh = ldiskfs_bread(handle, inode, block, create, &rc);
1253         if (bh == NULL && rc != 0)
1254                 bh = ERR_PTR(rc);
1255 #endif
1256         return bh;
1257 }
1258
1259 void ldiskfs_inc_count(handle_t *handle, struct inode *inode);
1260 void ldiskfs_dec_count(handle_t *handle, struct inode *inode);
1261
1262 void osd_fini_iobuf(struct osd_device *d, struct osd_iobuf *iobuf);
1263
1264
1265 #endif /* _OSD_INTERNAL_H */