Whamcloud - gitweb
LU-4865 zfs: grow block size by write pattern
[fs/lustre-release.git] / lustre / osd-zfs / 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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/osd-zfs/osd_internal.h
37  * Shared definitions and declarations for zfs/dmu osd
38  *
39  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
40  * Author: Mike Pershin <tappro@whamcloud.com>
41  * Author: Johann Lombardi <johann@whamcloud.com>
42  */
43
44 #ifndef _OSD_INTERNAL_H
45 #define _OSD_INTERNAL_H
46
47 #include <dt_object.h>
48 #include <md_object.h>
49 #include <lustre_quota.h>
50 #ifdef SHRINK_STOP
51 #undef SHRINK_STOP
52 #endif
53 #include <sys/arc.h>
54 #include <sys/nvpair.h>
55 #include <sys/zfs_znode.h>
56 #include <sys/zap.h>
57 #include <sys/dbuf.h>
58
59 /**
60  * By design including kmem.h overrides the Linux slab interfaces to provide
61  * the Illumos kmem cache interfaces.  To override this and gain access to
62  * the Linux interfaces these preprocessor macros must be undefined.
63  */
64 #ifdef kmem_cache_destroy
65 #undef kmem_cache_destroy
66 #endif
67
68 #ifdef kmem_cache_create
69 #undef kmem_cache_create
70 #endif
71
72 #ifdef kmem_cache_alloc
73 #undef kmem_cache_alloc
74 #endif
75
76 #ifdef kmem_cache_free
77 #undef kmem_cache_free
78 #endif
79
80 #define LUSTRE_ROOT_FID_SEQ     0
81 #define DMU_OSD_SVNAME          "svname"
82 #define DMU_OSD_OI_NAME_BASE    "oi"
83
84 #define OSD_GFP_IO              (GFP_NOFS | __GFP_HIGHMEM)
85
86 /* Statfs space reservation for grant, fragmentation, and unlink space. */
87 #define OSD_STATFS_RESERVED_SIZE        (16ULL << 20) /* reserve 16MB minimum */
88 #define OSD_STATFS_RESERVED_SHIFT       (7)     /* reserve 0.78% of all space */
89
90 /* Statfs {minimum, safe estimate, and maximum} dnodes per block */
91 #define OSD_DNODE_MIN_BLKSHIFT  (DNODES_PER_BLOCK_SHIFT)
92 #define OSD_DNODE_EST_BLKSHIFT  (DNODES_PER_BLOCK_SHIFT >> 1)
93 #define OSD_DNODE_EST_COUNT     1024
94
95 #define OSD_GRANT_FOR_LOCAL_OIDS (2ULL << 20) /* 2MB for last_rcvd, ... */
96
97 /**
98  * Iterator's in-memory data structure for quota file.
99  */
100 struct osd_it_quota {
101         struct osd_object       *oiq_obj;
102         /* DMU accounting object id */
103         uint64_t                 oiq_oid;
104         /* ZAP cursor */
105         zap_cursor_t            *oiq_zc;
106         /** identifier for current quota record */
107         __u64                    oiq_id;
108         unsigned                 oiq_reset:1; /* 1 -- no need to advance */
109 };
110
111 /**
112  * Iterator's in-memory data structure for ZAPs
113  *
114  * ZFS does not store . and .. on a disk, instead they are
115  * generated up on request
116  * to follow this format we do the same
117  */
118 struct osd_zap_it {
119         zap_cursor_t            *ozi_zc;
120         struct osd_object       *ozi_obj;
121         unsigned                 ozi_reset:1;   /* 1 -- no need to advance */
122         /* ozi_pos - position of the cursor:
123          * 0 - before any record
124          * 1 - "."
125          * 2 - ".."
126          * 3 - real records */
127         unsigned                 ozi_pos:3;
128         union {
129                 char             ozi_name[MAXNAMELEN]; /* file name for dir */
130                 __u64            ozi_key; /* binary key for index files */
131         };
132 };
133 #define DT_IT2DT(it) (&((struct osd_zap_it *)it)->ozi_obj->oo_dt)
134
135 /*
136  * regular ZFS direntry
137  */
138 struct zpl_direntry {
139         uint64_t        zde_dnode:48,
140                         zde_pad:12,
141                         zde_type:4;
142 } __attribute__((packed));
143
144 /*
145  * lustre direntry adds a fid to regular ZFS direntry
146  */
147 struct luz_direntry {
148         struct zpl_direntry     lzd_reg;
149         struct lu_fid           lzd_fid;
150 } __attribute__((packed));
151
152
153 /* cached SA attributes */
154 struct osa_attr {
155         uint64_t        mode;
156         uint64_t        gid;
157         uint64_t        uid;
158         uint64_t        nlink;
159         uint64_t        rdev;
160         uint64_t        flags;
161         uint64_t        size;
162         uint64_t        atime[2];
163         uint64_t        mtime[2];
164         uint64_t        ctime[2];
165 };
166
167 /* max.number of regular attrubites the callers may ask for */
168 #define OSD_MAX_IN_BULK         13
169
170 struct osd_thread_info {
171         const struct lu_env     *oti_env;
172
173         struct lu_fid            oti_fid;
174         /*
175          * XXX temporary: for ->i_op calls.
176          */
177         struct timespec          oti_time;
178
179         struct ost_id            oti_ostid;
180
181         char                     oti_buf[64];
182
183         char                     oti_str[64];
184         union {
185                 char             oti_key[MAXNAMELEN + 1];
186                 __u64            oti_key64[(MAXNAMELEN + 1)/sizeof(__u64)];
187                 sa_bulk_attr_t   oti_attr_bulk[OSD_MAX_IN_BULK];
188         };
189         struct lustre_mdt_attrs oti_mdt_attrs;
190
191         struct lu_attr           oti_la;
192         struct osa_attr          oti_osa;
193         zap_attribute_t          oti_za;
194         dmu_object_info_t        oti_doi;
195         struct luz_direntry      oti_zde;
196
197         struct lquota_id_info    oti_qi;
198         struct lu_seq_range      oti_seq_range;
199 };
200
201 extern struct lu_context_key osd_key;
202
203 static inline struct osd_thread_info *osd_oti_get(const struct lu_env *env)
204 {
205         return lu_context_key_get(&env->le_ctx, &osd_key);
206 }
207
208 struct osd_thandle {
209         struct thandle           ot_super;
210         struct list_head         ot_dcb_list;
211         struct list_head         ot_stop_dcb_list;
212         struct list_head         ot_unlinked_list;
213         struct list_head         ot_sa_list;
214         struct semaphore         ot_sa_lock;
215         dmu_tx_t                *ot_tx;
216         struct lquota_trans      ot_quota_trans;
217         __u32                    ot_write_commit:1,
218                                  ot_assigned:1;
219 };
220
221 #define OSD_OI_NAME_SIZE        16
222
223 /*
224  * Object Index (OI) instance.
225  */
226 struct osd_oi {
227         char                    oi_name[OSD_OI_NAME_SIZE]; /* unused */
228         uint64_t                oi_zapid;
229         dmu_buf_t              *oi_db;
230 };
231
232 struct osd_seq {
233         uint64_t         *os_compat_dirs;
234         int              os_subdir_count; /* subdir count for each seq */
235         u64              os_seq;          /* seq number */
236         struct list_head os_seq_list;     /* list to seq_list */
237 };
238
239 struct osd_seq_list {
240         rwlock_t         osl_seq_list_lock;     /* lock for seq_list */
241         struct list_head osl_seq_list;          /* list head for seq */
242         struct semaphore osl_seq_init_sem;
243 };
244
245 #define OSD_OST_MAP_SIZE        32
246
247 /*
248  * osd device.
249  */
250 struct osd_device {
251         /* super-class */
252         struct dt_device         od_dt_dev;
253         /* information about underlying file system */
254         struct objset           *od_os;
255         uint64_t                 od_rootid;  /* id of root znode */
256         uint64_t                 od_unlinkedid; /* id of unlinked zapobj */
257         /* SA attr mapping->id,
258          * name is the same as in ZFS to use defines SA_ZPL_...*/
259         sa_attr_type_t           *z_attr_table;
260
261         struct proc_dir_entry   *od_proc_entry;
262         struct lprocfs_stats    *od_stats;
263
264         uint64_t                 od_max_blksz;
265         uint64_t                 od_root;
266         uint64_t                 od_O_id;
267         struct osd_oi           **od_oi_table;
268         unsigned int             od_oi_count;
269         struct osd_seq_list     od_seq_list;
270
271         unsigned int             od_dev_set_rdonly:1, /**< osd_ro() called */
272                                  od_prop_rdonly:1,  /**< ZFS property readonly */
273                                  od_xattr_in_sa:1,
274                                  od_quota_iused_est:1,
275                                  od_is_ost:1,
276                                  od_posix_acl:1;
277
278         char                     od_mntdev[128];
279         char                     od_svname[128];
280
281         int                      od_connects;
282         struct lu_site           od_site;
283
284         /* object IDs of the inode accounting indexes */
285         uint64_t                 od_iusr_oid;
286         uint64_t                 od_igrp_oid;
287
288         /* quota slave instance */
289         struct qsd_instance     *od_quota_slave;
290
291         struct brw_stats        od_brw_stats;
292         atomic_t                od_r_in_flight;
293         atomic_t                od_w_in_flight;
294
295         /* used to debug zerocopy logic: the fields track all
296          * allocated, loaned and referenced buffers in use.
297          * to be removed once the change is tested well. */
298         atomic_t                 od_zerocopy_alloc;
299         atomic_t                 od_zerocopy_loan;
300         atomic_t                 od_zerocopy_pin;
301
302         arc_prune_t             *arc_prune_cb;
303
304         /* osd seq instance */
305         struct lu_client_seq    *od_cl_seq;
306 };
307
308 enum osd_destroy_type {
309         OSD_DESTROY_NONE = 0,
310         OSD_DESTROY_SYNC = 1,
311         OSD_DESTROY_ASYNC = 2,
312 };
313
314 struct osd_object {
315         struct dt_object         oo_dt;
316         /*
317          * Inode for file system object represented by this osd_object. This
318          * inode is pinned for the whole duration of lu_object life.
319          *
320          * Not modified concurrently (either setup early during object
321          * creation, or assigned by osd_object_create() under write lock).
322          */
323         dmu_buf_t               *oo_db;
324         sa_handle_t             *oo_sa_hdl;
325         nvlist_t                *oo_sa_xattr;
326         struct list_head         oo_sa_linkage;
327
328         /* used to implement osd_object_*_{lock|unlock} */
329         struct rw_semaphore      oo_sem;
330
331         /* to serialize some updates: destroy vs. others,
332          * xattr_set, object block size change etc */
333         struct rw_semaphore      oo_guard;
334
335         /* protected by oo_guard */
336         struct list_head         oo_unlinked_linkage;
337
338         /* cached attributes */
339         rwlock_t                 oo_attr_lock;
340         struct lu_attr           oo_attr;
341
342         /* external dnode holding large EAs, protected by oo_guard */
343         uint64_t                 oo_xattr;
344         enum osd_destroy_type    oo_destroy;
345
346         __u32                    oo_destroyed:1;
347
348         /* the i_flags in LMA */
349         __u32                    oo_lma_flags;
350         /* record size for index file */
351         unsigned char            oo_keysize;
352         unsigned char            oo_recsize;
353         unsigned char            oo_recusize;   /* unit size */
354 };
355
356 int osd_statfs(const struct lu_env *, struct dt_device *, struct obd_statfs *);
357 extern const struct dt_index_operations osd_acct_index_ops;
358 uint64_t osd_quota_fid2dmu(const struct lu_fid *fid);
359 extern struct lu_device_operations  osd_lu_ops;
360 extern struct dt_index_operations osd_dir_ops;
361 int osd_declare_quota(const struct lu_env *env, struct osd_device *osd,
362                       qid_t uid, qid_t gid, long long space,
363                       struct osd_thandle *oh, bool is_blk, int *flags,
364                       bool force);
365 uint64_t osd_objs_count_estimate(uint64_t refdbytes, uint64_t usedobjs,
366                                  uint64_t nrblocks, uint64_t est_maxblockshift);
367
368 /*
369  * Helpers.
370  */
371 static inline int lu_device_is_osd(const struct lu_device *d)
372 {
373         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &osd_lu_ops);
374 }
375
376 static inline struct osd_object *osd_obj(const struct lu_object *o)
377 {
378         LASSERT(lu_device_is_osd(o->lo_dev));
379         return container_of0(o, struct osd_object, oo_dt.do_lu);
380 }
381
382 static inline struct osd_device *osd_dt_dev(const struct dt_device *d)
383 {
384         LASSERT(lu_device_is_osd(&d->dd_lu_dev));
385         return container_of0(d, struct osd_device, od_dt_dev);
386 }
387
388 static inline struct osd_device *osd_dev(const struct lu_device *d)
389 {
390         LASSERT(lu_device_is_osd(d));
391         return osd_dt_dev(container_of0(d, struct dt_device, dd_lu_dev));
392 }
393
394 static inline struct osd_object *osd_dt_obj(const struct dt_object *d)
395 {
396         return osd_obj(&d->do_lu);
397 }
398
399 static inline struct osd_device *osd_obj2dev(const struct osd_object *o)
400 {
401         return osd_dev(o->oo_dt.do_lu.lo_dev);
402 }
403
404 static inline struct lu_device *osd2lu_dev(struct osd_device *osd)
405 {
406         return &osd->od_dt_dev.dd_lu_dev;
407 }
408
409 static inline struct objset * osd_dtobj2objset(struct dt_object *o)
410 {
411         return osd_dev(o->do_lu.lo_dev)->od_os;
412 }
413
414 static inline int osd_invariant(const struct osd_object *obj)
415 {
416         return 1;
417 }
418
419 static inline int osd_object_invariant(const struct lu_object *l)
420 {
421         return osd_invariant(osd_obj(l));
422 }
423
424 static inline struct seq_server_site *osd_seq_site(struct osd_device *osd)
425 {
426         return osd->od_dt_dev.dd_lu_dev.ld_site->ld_seq_site;
427 }
428
429 static inline char *osd_name(struct osd_device *osd)
430 {
431         return osd->od_dt_dev.dd_lu_dev.ld_obd->obd_name;
432 }
433
434 #ifdef CONFIG_PROC_FS
435 enum {
436         LPROC_OSD_READ_BYTES = 0,
437         LPROC_OSD_WRITE_BYTES = 1,
438         LPROC_OSD_GET_PAGE = 2,
439         LPROC_OSD_NO_PAGE = 3,
440         LPROC_OSD_CACHE_ACCESS = 4,
441         LPROC_OSD_CACHE_HIT = 5,
442         LPROC_OSD_CACHE_MISS = 6,
443         LPROC_OSD_COPY_IO = 7,
444         LPROC_OSD_ZEROCOPY_IO = 8,
445         LPROC_OSD_TAIL_IO = 9,
446         LPROC_OSD_LAST,
447 };
448
449 extern struct kmem_cache *osd_zapit_cachep;
450 /* osd_lproc.c */
451 extern struct lprocfs_vars lprocfs_osd_obd_vars[];
452
453 int osd_procfs_init(struct osd_device *osd, const char *name);
454 int osd_procfs_fini(struct osd_device *osd);
455
456 /* osd_object.c */
457 extern char *osd_obj_tag;
458 void osd_object_sa_dirty_rele(struct osd_thandle *oh);
459 int __osd_obj2dbuf(const struct lu_env *env, objset_t *os,
460                    uint64_t oid, dmu_buf_t **dbp);
461 struct lu_object *osd_object_alloc(const struct lu_env *env,
462                                    const struct lu_object_header *hdr,
463                                    struct lu_device *d);
464 int osd_object_sa_update(struct osd_object *obj, sa_attr_type_t type,
465                          void *buf, uint32_t buflen, struct osd_thandle *oh);
466 int __osd_zap_create(const struct lu_env *env, struct osd_device *osd,
467                      dmu_buf_t **zap_dbp, dmu_tx_t *tx, struct lu_attr *la,
468                      uint64_t parent, zap_flags_t flags);
469 int __osd_object_create(const struct lu_env *env, struct osd_object *obj,
470                         dmu_buf_t **dbp, dmu_tx_t *tx, struct lu_attr *la,
471                         uint64_t parent);
472
473 /* osd_oi.c */
474 int osd_oi_init(const struct lu_env *env, struct osd_device *o);
475 void osd_oi_fini(const struct lu_env *env, struct osd_device *o);
476 int osd_fid_lookup(const struct lu_env *env,
477                    struct osd_device *, const struct lu_fid *, uint64_t *);
478 uint64_t osd_get_name_n_idx(const struct lu_env *env, struct osd_device *osd,
479                             const struct lu_fid *fid, char *buf);
480 int osd_options_init(void);
481 int osd_ost_seq_exists(const struct lu_env *env, struct osd_device *osd,
482                        __u64 seq);
483 /* osd_index.c */
484 int osd_index_try(const struct lu_env *env, struct dt_object *dt,
485                   const struct dt_index_features *feat);
486 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
487                    u64 seq, struct lu_seq_range *range);
488 void osd_zap_cursor_init_serialized(zap_cursor_t *zc, struct objset *os,
489                                     uint64_t id, uint64_t dirhash);
490 int osd_zap_cursor_init(zap_cursor_t **zc, struct objset *os,
491                         uint64_t id, uint64_t dirhash);
492 void osd_zap_cursor_fini(zap_cursor_t *zc);
493 uint64_t osd_zap_cursor_serialize(zap_cursor_t *zc);
494
495 /* osd_xattr.c */
496 int __osd_xattr_load(struct osd_device *osd, uint64_t dnode,
497                      nvlist_t **sa_xattr);
498 int __osd_xattr_get_large(const struct lu_env *env, struct osd_device *osd,
499                           uint64_t xattr, struct lu_buf *buf,
500                           const char *name, int *sizep);
501 int osd_xattr_get(const struct lu_env *env, struct dt_object *dt,
502                   struct lu_buf *buf, const char *name);
503 int osd_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
504                           const struct lu_buf *buf, const char *name,
505                           int fl, struct thandle *handle);
506 int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
507                   const struct lu_buf *buf, const char *name, int fl,
508                   struct thandle *handle);
509 int osd_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
510                           const char *name, struct thandle *handle);
511 int osd_xattr_del(const struct lu_env *env, struct dt_object *dt,
512                   const char *name, struct thandle *handle);
513 void osd_declare_xattrs_destroy(const struct lu_env *env,
514                                 struct osd_object *obj,
515                                 struct osd_thandle *oh);
516 int osd_xattrs_destroy(const struct lu_env *env,
517                        struct osd_object *obj, struct osd_thandle *oh);
518 int osd_xattr_list(const struct lu_env *env, struct dt_object *dt,
519                    const struct lu_buf *lb);
520 void __osd_xattr_declare_set(const struct lu_env *env, struct osd_object *obj,
521                         int vallen, const char *name, struct osd_thandle *oh);
522 int __osd_sa_xattr_set(const struct lu_env *env, struct osd_object *obj,
523                        const struct lu_buf *buf, const char *name, int fl,
524                        struct osd_thandle *oh);;
525 int __osd_xattr_set(const struct lu_env *env, struct osd_object *obj,
526                     const struct lu_buf *buf, const char *name, int fl,
527                     struct osd_thandle *oh);
528 static inline int
529 osd_xattr_set_internal(const struct lu_env *env, struct osd_object *obj,
530                        const struct lu_buf *buf, const char *name, int fl,
531                        struct osd_thandle *oh)
532 {
533         int rc;
534
535         if (unlikely(!dt_object_exists(&obj->oo_dt) || obj->oo_destroyed))
536                 return -ENOENT;
537
538         LASSERT(obj->oo_db);
539         if (osd_obj2dev(obj)->od_xattr_in_sa) {
540                 rc = __osd_sa_xattr_set(env, obj, buf, name, fl, oh);
541                 if (rc == -EFBIG)
542                         rc = __osd_xattr_set(env, obj, buf, name, fl, oh);
543         } else {
544                 rc = __osd_xattr_set(env, obj, buf, name, fl, oh);
545         }
546
547         return rc;
548 }
549
550 static inline uint64_t attrs_fs2zfs(const uint32_t flags)
551 {
552         return (flags & LUSTRE_APPEND_FL        ? ZFS_APPENDONLY        : 0) |
553                 (flags & LUSTRE_NODUMP_FL       ? ZFS_NODUMP            : 0) |
554                 (flags & LUSTRE_IMMUTABLE_FL    ? ZFS_IMMUTABLE         : 0);
555 }
556
557 static inline uint32_t attrs_zfs2fs(const uint64_t flags)
558 {
559         return (flags & ZFS_APPENDONLY  ? LUSTRE_APPEND_FL      : 0) |
560                 (flags & ZFS_NODUMP     ? LUSTRE_NODUMP_FL      : 0) |
561                 (flags & ZFS_IMMUTABLE  ? LUSTRE_IMMUTABLE_FL   : 0);
562 }
563
564 #endif
565
566 #ifndef HAVE_DSL_POOL_CONFIG
567 static inline void dsl_pool_config_enter(dsl_pool_t *dp, char *name)
568 {
569 }
570
571 static inline void dsl_pool_config_exit(dsl_pool_t *dp, char *name)
572 {
573 }
574 #endif
575
576 #ifdef HAVE_SPA_MAXBLOCKSIZE
577 #define osd_spa_maxblocksize(spa)       spa_maxblocksize(spa)
578 #define osd_spa_maxblockshift(spa)      fls64(spa_maxblocksize(spa) - 1)
579 #else
580 #define osd_spa_maxblocksize(spa)       SPA_MAXBLOCKSIZE
581 #define osd_spa_maxblockshift(spa)      SPA_MAXBLOCKSHIFT
582 #define SPA_OLD_MAXBLOCKSIZE            SPA_MAXBLOCKSIZE
583 #endif
584
585 #ifdef HAVE_SA_SPILL_ALLOC
586 static inline void *
587 osd_zio_buf_alloc(size_t size)
588 {
589         return sa_spill_alloc(KM_SLEEP);
590 }
591
592 static inline void
593 osd_zio_buf_free(void *buf, size_t size)
594 {
595         sa_spill_free(buf);
596 }
597 #else
598 #define osd_zio_buf_alloc(size)         zio_buf_alloc(size)
599 #define osd_zio_buf_free(buf, size)     zio_buf_free(buf, size)
600 #endif
601
602 #ifdef HAVE_DMU_OBJECT_ALLOC_DNSIZE
603 static inline uint64_t
604 osd_dmu_object_alloc(objset_t *os, dmu_object_type_t objtype, int blocksize,
605                      int dnodesize, dmu_tx_t *tx)
606 {
607         if (dnodesize == 0)
608                 dnodesize = MAX(dmu_objset_dnodesize(os), DNODE_MIN_SIZE);
609
610         return dmu_object_alloc_dnsize(os, objtype, blocksize, DMU_OT_SA,
611                                        DN_BONUS_SIZE(dnodesize), dnodesize, tx);
612 }
613
614 static inline uint64_t
615 osd_zap_create_flags(objset_t *os, int normflags, zap_flags_t flags,
616                      dmu_object_type_t ot, int leaf_blockshift,
617                      int indirect_blockshift, int dnodesize, dmu_tx_t *tx)
618 {
619         if (dnodesize == 0)
620                 dnodesize = MAX(dmu_objset_dnodesize(os), DNODE_MIN_SIZE);
621
622         return zap_create_flags_dnsize(os, normflags, flags, ot,
623                                        leaf_blockshift, indirect_blockshift,
624                                        DMU_OT_SA, DN_BONUS_SIZE(dnodesize),
625                                        dnodesize, tx);
626 }
627 #else
628 static inline uint64_t
629 osd_dmu_object_alloc(objset_t *os, dmu_object_type_t objtype, int blocksize,
630                      int dnodesize, dmu_tx_t *tx)
631 {
632         return dmu_object_alloc(os, objtype, blocksize, DMU_OT_SA,
633                                 DN_MAX_BONUSLEN, tx);
634 }
635
636 static inline uint64_t
637 osd_zap_create_flags(objset_t *os, int normflags, zap_flags_t flags,
638                      dmu_object_type_t ot, int leaf_blockshift,
639                      int indirect_blockshift, int dnodesize, dmu_tx_t *tx)
640 {
641         return zap_create_flags(os, normflags, flags, ot, leaf_blockshift,
642                                 indirect_blockshift, DMU_OT_SA,
643                                 DN_MAX_BONUSLEN, tx);
644 }
645 #endif /* HAVE_DMU_OBJECT_ALLOC_DNSIZE */
646
647 #ifdef HAVE_DMU_PREFETCH_6ARG
648 #define osd_dmu_prefetch(os, obj, lvl, off, len, pri)   \
649         dmu_prefetch((os), (obj), (lvl), (off), (len), (pri))
650 #else
651 #define osd_dmu_prefetch(os, obj, lvl, off, len, pri)   \
652         dmu_prefetch((os), (obj), (lvl), (off))
653 #endif
654
655 #endif /* _OSD_INTERNAL_H */