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