xref: /titanic_50/usr/src/uts/common/fs/zfs/sys/dnode.h (revision cd485b49201b16c079663125308af274b6299e96)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5ea8dc4b6Seschrock  * Common Development and Distribution License (the "License").
6ea8dc4b6Seschrock  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21fa9e4066Sahrens /*
2228d97a71SMark Shellenbaum  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23bf16b11eSMatthew Ahrens  * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
24bc9014e6SJustin Gibbs  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
25fa9e4066Sahrens  */
26fa9e4066Sahrens 
27fa9e4066Sahrens #ifndef	_SYS_DNODE_H
28fa9e4066Sahrens #define	_SYS_DNODE_H
29fa9e4066Sahrens 
30fa9e4066Sahrens #include <sys/zfs_context.h>
31fa9e4066Sahrens #include <sys/avl.h>
32fa9e4066Sahrens #include <sys/spa.h>
33fa9e4066Sahrens #include <sys/txg.h>
34c717a561Smaybee #include <sys/zio.h>
35fa9e4066Sahrens #include <sys/refcount.h>
36fa9e4066Sahrens #include <sys/dmu_zfetch.h>
37744947dcSTom Erickson #include <sys/zrlock.h>
38fa9e4066Sahrens 
39fa9e4066Sahrens #ifdef	__cplusplus
40fa9e4066Sahrens extern "C" {
41fa9e4066Sahrens #endif
42fa9e4066Sahrens 
43fa9e4066Sahrens /*
44cdb0ab79Smaybee  * dnode_hold() flags.
45fa9e4066Sahrens  */
46fa9e4066Sahrens #define	DNODE_MUST_BE_ALLOCATED	1
47fa9e4066Sahrens #define	DNODE_MUST_BE_FREE	2
48fa9e4066Sahrens 
49fa9e4066Sahrens /*
50cdb0ab79Smaybee  * dnode_next_offset() flags.
51cdb0ab79Smaybee  */
52cdb0ab79Smaybee #define	DNODE_FIND_HOLE		1
53cdb0ab79Smaybee #define	DNODE_FIND_BACKWARDS	2
54cdb0ab79Smaybee #define	DNODE_FIND_HAVELOCK	4
55cdb0ab79Smaybee 
56cdb0ab79Smaybee /*
57fa9e4066Sahrens  * Fixed constants.
58fa9e4066Sahrens  */
59fa9e4066Sahrens #define	DNODE_SHIFT		9	/* 512 bytes */
60e94f268aSMatthew Ahrens #define	DN_MIN_INDBLKSHIFT	12	/* 4k */
61fa9e4066Sahrens #define	DN_MAX_INDBLKSHIFT	14	/* 16k */
62fa9e4066Sahrens #define	DNODE_BLOCK_SHIFT	14	/* 16k */
63fa9e4066Sahrens #define	DNODE_CORE_SIZE		64	/* 64 bytes for dnode sans blkptrs */
64fa9e4066Sahrens #define	DN_MAX_OBJECT_SHIFT	48	/* 256 trillion (zfs_fid_t limit) */
65fa9e4066Sahrens #define	DN_MAX_OFFSET_SHIFT	64	/* 2^64 bytes in a dnode */
66fa9e4066Sahrens 
67fa9e4066Sahrens /*
680a586ceaSMark Shellenbaum  * dnode id flags
690a586ceaSMark Shellenbaum  *
700a586ceaSMark Shellenbaum  * Note: a file will never ever have its
710a586ceaSMark Shellenbaum  * ids moved from bonus->spill
720a586ceaSMark Shellenbaum  * and only in a crypto environment would it be on spill
730a586ceaSMark Shellenbaum  */
740a586ceaSMark Shellenbaum #define	DN_ID_CHKED_BONUS	0x1
750a586ceaSMark Shellenbaum #define	DN_ID_CHKED_SPILL	0x2
760a586ceaSMark Shellenbaum #define	DN_ID_OLD_EXIST		0x4
770a586ceaSMark Shellenbaum #define	DN_ID_NEW_EXIST		0x8
780a586ceaSMark Shellenbaum 
790a586ceaSMark Shellenbaum /*
80fa9e4066Sahrens  * Derived constants.
81fa9e4066Sahrens  */
82fa9e4066Sahrens #define	DNODE_SIZE	(1 << DNODE_SHIFT)
83fa9e4066Sahrens #define	DN_MAX_NBLKPTR	((DNODE_SIZE - DNODE_CORE_SIZE) >> SPA_BLKPTRSHIFT)
84fa9e4066Sahrens #define	DN_MAX_BONUSLEN	(DNODE_SIZE - DNODE_CORE_SIZE - (1 << SPA_BLKPTRSHIFT))
85ea8dc4b6Seschrock #define	DN_MAX_OBJECT	(1ULL << DN_MAX_OBJECT_SHIFT)
861934e92fSmaybee #define	DN_ZERO_BONUSLEN	(DN_MAX_BONUSLEN + 1)
870a586ceaSMark Shellenbaum #define	DN_KILL_SPILLBLK (1)
88fa9e4066Sahrens 
89fa9e4066Sahrens #define	DNODES_PER_BLOCK_SHIFT	(DNODE_BLOCK_SHIFT - DNODE_SHIFT)
90fa9e4066Sahrens #define	DNODES_PER_BLOCK	(1ULL << DNODES_PER_BLOCK_SHIFT)
91fa9e4066Sahrens #define	DNODES_PER_LEVEL_SHIFT	(DN_MAX_INDBLKSHIFT - SPA_BLKPTRSHIFT)
92c1449561SEric Taylor #define	DNODES_PER_LEVEL	(1ULL << DNODES_PER_LEVEL_SHIFT)
93fa9e4066Sahrens 
94fa9e4066Sahrens /* The +2 here is a cheesy way to round up */
95fa9e4066Sahrens #define	DN_MAX_LEVELS	(2 + ((DN_MAX_OFFSET_SHIFT - SPA_MINBLOCKSHIFT) / \
96fa9e4066Sahrens 	(DN_MIN_INDBLKSHIFT - SPA_BLKPTRSHIFT)))
97fa9e4066Sahrens 
98fa9e4066Sahrens #define	DN_BONUS(dnp)	((void*)((dnp)->dn_bonus + \
99fa9e4066Sahrens 	(((dnp)->dn_nblkptr - 1) * sizeof (blkptr_t))))
100fa9e4066Sahrens 
10199653d4eSeschrock #define	DN_USED_BYTES(dnp) (((dnp)->dn_flags & DNODE_FLAG_USED_BYTES) ? \
10299653d4eSeschrock 	(dnp)->dn_used : (dnp)->dn_used << SPA_MINBLOCKSHIFT)
10399653d4eSeschrock 
104fa9e4066Sahrens #define	EPB(blkshift, typeshift)	(1 << (blkshift - typeshift))
105fa9e4066Sahrens 
106fa9e4066Sahrens struct dmu_buf_impl;
107503ad85cSMatthew Ahrens struct objset;
108fa9e4066Sahrens struct zio;
109fa9e4066Sahrens 
110fa9e4066Sahrens enum dnode_dirtycontext {
111fa9e4066Sahrens 	DN_UNDIRTIED,
112fa9e4066Sahrens 	DN_DIRTY_OPEN,
113fa9e4066Sahrens 	DN_DIRTY_SYNC
114fa9e4066Sahrens };
115fa9e4066Sahrens 
11699653d4eSeschrock /* Is dn_used in bytes?  if not, it's in multiples of SPA_MINBLOCKSIZE */
11799653d4eSeschrock #define	DNODE_FLAG_USED_BYTES		(1<<0)
11814843421SMatthew Ahrens #define	DNODE_FLAG_USERUSED_ACCOUNTED	(1<<1)
11999653d4eSeschrock 
1200a586ceaSMark Shellenbaum /* Does dnode have a SA spill blkptr in bonus? */
1210a586ceaSMark Shellenbaum #define	DNODE_FLAG_SPILL_BLKPTR	(1<<2)
1220a586ceaSMark Shellenbaum 
123fa9e4066Sahrens typedef struct dnode_phys {
124fa9e4066Sahrens 	uint8_t dn_type;		/* dmu_object_type_t */
125fa9e4066Sahrens 	uint8_t dn_indblkshift;		/* ln2(indirect block size) */
126fa9e4066Sahrens 	uint8_t dn_nlevels;		/* 1=dn_blkptr->data blocks */
127fa9e4066Sahrens 	uint8_t dn_nblkptr;		/* length of dn_blkptr */
128fa9e4066Sahrens 	uint8_t dn_bonustype;		/* type of data in bonus buffer */
129fa9e4066Sahrens 	uint8_t	dn_checksum;		/* ZIO_CHECKSUM type */
130fa9e4066Sahrens 	uint8_t	dn_compress;		/* ZIO_COMPRESS type */
13199653d4eSeschrock 	uint8_t dn_flags;		/* DNODE_FLAG_* */
132fa9e4066Sahrens 	uint16_t dn_datablkszsec;	/* data block size in 512b sectors */
133fa9e4066Sahrens 	uint16_t dn_bonuslen;		/* length of dn_bonus */
134fa9e4066Sahrens 	uint8_t dn_pad2[4];
135fa9e4066Sahrens 
136fa9e4066Sahrens 	/* accounting is protected by dn_dirty_mtx */
137fa9e4066Sahrens 	uint64_t dn_maxblkid;		/* largest allocated block ID */
13899653d4eSeschrock 	uint64_t dn_used;		/* bytes (or sectors) of disk space */
139fa9e4066Sahrens 
140fa9e4066Sahrens 	uint64_t dn_pad3[4];
141fa9e4066Sahrens 
142fa9e4066Sahrens 	blkptr_t dn_blkptr[1];
1430a586ceaSMark Shellenbaum 	uint8_t dn_bonus[DN_MAX_BONUSLEN - sizeof (blkptr_t)];
1440a586ceaSMark Shellenbaum 	blkptr_t dn_spill;
145fa9e4066Sahrens } dnode_phys_t;
146fa9e4066Sahrens 
147fa9e4066Sahrens typedef struct dnode {
148fa9e4066Sahrens 	/*
149f7170741SWill Andrews 	 * Protects the structure of the dnode, including the number of levels
150f7170741SWill Andrews 	 * of indirection (dn_nlevels), dn_maxblkid, and dn_next_*
151fa9e4066Sahrens 	 */
152fa9e4066Sahrens 	krwlock_t dn_struct_rwlock;
153fa9e4066Sahrens 
15414843421SMatthew Ahrens 	/* Our link on dn_objset->os_dnodes list; protected by os_lock.  */
155fa9e4066Sahrens 	list_node_t dn_link;
156fa9e4066Sahrens 
157fa9e4066Sahrens 	/* immutable: */
158503ad85cSMatthew Ahrens 	struct objset *dn_objset;
159fa9e4066Sahrens 	uint64_t dn_object;
160fa9e4066Sahrens 	struct dmu_buf_impl *dn_dbuf;
161744947dcSTom Erickson 	struct dnode_handle *dn_handle;
162fa9e4066Sahrens 	dnode_phys_t *dn_phys; /* pointer into dn->dn_dbuf->db.db_data */
163fa9e4066Sahrens 
164fa9e4066Sahrens 	/*
165c543ec06Sahrens 	 * Copies of stuff in dn_phys.  They're valid in the open
166c543ec06Sahrens 	 * context (eg. even before the dnode is first synced).
167c543ec06Sahrens 	 * Where necessary, these are protected by dn_struct_rwlock.
168fa9e4066Sahrens 	 */
169c543ec06Sahrens 	dmu_object_type_t dn_type;	/* object type */
170c543ec06Sahrens 	uint16_t dn_bonuslen;		/* bonus length */
171c543ec06Sahrens 	uint8_t dn_bonustype;		/* bonus type */
172fa9e4066Sahrens 	uint8_t dn_nblkptr;		/* number of blkptrs (immutable) */
173fa9e4066Sahrens 	uint8_t dn_checksum;		/* ZIO_CHECKSUM type */
174fa9e4066Sahrens 	uint8_t dn_compress;		/* ZIO_COMPRESS type */
175fa9e4066Sahrens 	uint8_t dn_nlevels;
176fa9e4066Sahrens 	uint8_t dn_indblkshift;
177c543ec06Sahrens 	uint8_t dn_datablkshift;	/* zero if blksz not power of 2! */
178744947dcSTom Erickson 	uint8_t dn_moved;		/* Has this dnode been moved? */
179c543ec06Sahrens 	uint16_t dn_datablkszsec;	/* in 512b sectors */
180c543ec06Sahrens 	uint32_t dn_datablksz;		/* in bytes */
181c543ec06Sahrens 	uint64_t dn_maxblkid;
1822acef22dSMatthew Ahrens 	uint8_t dn_next_type[TXG_SIZE];
183da03de99SMark Maybee 	uint8_t dn_next_nblkptr[TXG_SIZE];
184fa9e4066Sahrens 	uint8_t dn_next_nlevels[TXG_SIZE];
185fa9e4066Sahrens 	uint8_t dn_next_indblkshift[TXG_SIZE];
1860a586ceaSMark Shellenbaum 	uint8_t dn_next_bonustype[TXG_SIZE];
1870a586ceaSMark Shellenbaum 	uint8_t dn_rm_spillblk[TXG_SIZE];	/* for removing spill blk */
1881934e92fSmaybee 	uint16_t dn_next_bonuslen[TXG_SIZE];
189c543ec06Sahrens 	uint32_t dn_next_blksz[TXG_SIZE];	/* next block size in bytes */
190fa9e4066Sahrens 
191744947dcSTom Erickson 	/* protected by dn_dbufs_mtx; declared here to fill 32-bit hole */
192744947dcSTom Erickson 	uint32_t dn_dbufs_count;	/* count of dn_dbufs */
193713d6c20SMatthew Ahrens 	/* There are no level-0 blocks of this blkid or higher in dn_dbufs */
194713d6c20SMatthew Ahrens 	uint64_t dn_unlisted_l0_blkid;
195744947dcSTom Erickson 
196fa9e4066Sahrens 	/* protected by os_lock: */
197fa9e4066Sahrens 	list_node_t dn_dirty_link[TXG_SIZE];	/* next on dataset's dirty */
198fa9e4066Sahrens 
199fa9e4066Sahrens 	/* protected by dn_mtx: */
200fa9e4066Sahrens 	kmutex_t dn_mtx;
201c717a561Smaybee 	list_t dn_dirty_records[TXG_SIZE];
202bf16b11eSMatthew Ahrens 	struct range_tree *dn_free_ranges[TXG_SIZE];
203fa9e4066Sahrens 	uint64_t dn_allocated_txg;
204fa9e4066Sahrens 	uint64_t dn_free_txg;
205fa9e4066Sahrens 	uint64_t dn_assigned_txg;
206fa9e4066Sahrens 	kcondvar_t dn_notxholds;
207fa9e4066Sahrens 	enum dnode_dirtycontext dn_dirtyctx;
208fa9e4066Sahrens 	uint8_t *dn_dirtyctx_firstset;		/* dbg: contents meaningless */
209fa9e4066Sahrens 
210fa9e4066Sahrens 	/* protected by own devices */
211fa9e4066Sahrens 	refcount_t dn_tx_holds;
212fa9e4066Sahrens 	refcount_t dn_holds;
213fa9e4066Sahrens 
214fa9e4066Sahrens 	kmutex_t dn_dbufs_mtx;
21586bb58aeSAlex Reece 	/*
21686bb58aeSAlex Reece 	 * Descendent dbufs, ordered by dbuf_compare. Note that dn_dbufs
21786bb58aeSAlex Reece 	 * can contain multiple dbufs of the same (level, blkid) when a
21886bb58aeSAlex Reece 	 * dbuf is marked DB_EVICTING without being removed from
21986bb58aeSAlex Reece 	 * dn_dbufs. To maintain the avl invariant that there cannot be
22086bb58aeSAlex Reece 	 * duplicate entries, we order the dbufs by an arbitrary value -
22186bb58aeSAlex Reece 	 * their address in memory. This means that dn_dbufs cannot be used to
22286bb58aeSAlex Reece 	 * directly look up a dbuf. Instead, callers must use avl_walk, have
22386bb58aeSAlex Reece 	 * a reference to the dbuf, or look up a non-existant node with
22486bb58aeSAlex Reece 	 * db_state = DB_SEARCH (see dbuf_free_range for an example).
22586bb58aeSAlex Reece 	 */
22686bb58aeSAlex Reece 	avl_tree_t dn_dbufs;
227744947dcSTom Erickson 
228744947dcSTom Erickson 	/* protected by dn_struct_rwlock */
229ea8dc4b6Seschrock 	struct dmu_buf_impl *dn_bonus;	/* bonus buffer dbuf */
230744947dcSTom Erickson 
2310a586ceaSMark Shellenbaum 	boolean_t dn_have_spill;	/* have spill or are spilling */
232fa9e4066Sahrens 
233c717a561Smaybee 	/* parent IO for current sync write */
234c717a561Smaybee 	zio_t *dn_zio;
235c717a561Smaybee 
23614843421SMatthew Ahrens 	/* used in syncing context */
2370a586ceaSMark Shellenbaum 	uint64_t dn_oldused;	/* old phys used bytes */
2380a586ceaSMark Shellenbaum 	uint64_t dn_oldflags;	/* old phys dn_flags */
2390a586ceaSMark Shellenbaum 	uint64_t dn_olduid, dn_oldgid;
2400a586ceaSMark Shellenbaum 	uint64_t dn_newuid, dn_newgid;
2410a586ceaSMark Shellenbaum 	int dn_id_flags;
24214843421SMatthew Ahrens 
243fa9e4066Sahrens 	/* holds prefetch structure */
244fa9e4066Sahrens 	struct zfetch	dn_zfetch;
245fa9e4066Sahrens } dnode_t;
246fa9e4066Sahrens 
247744947dcSTom Erickson /*
248744947dcSTom Erickson  * Adds a level of indirection between the dbuf and the dnode to avoid
249744947dcSTom Erickson  * iterating descendent dbufs in dnode_move(). Handles are not allocated
250744947dcSTom Erickson  * individually, but as an array of child dnodes in dnode_hold_impl().
251744947dcSTom Erickson  */
252744947dcSTom Erickson typedef struct dnode_handle {
253744947dcSTom Erickson 	/* Protects dnh_dnode from modification by dnode_move(). */
254744947dcSTom Erickson 	zrlock_t dnh_zrlock;
255744947dcSTom Erickson 	dnode_t *dnh_dnode;
256744947dcSTom Erickson } dnode_handle_t;
257744947dcSTom Erickson 
258744947dcSTom Erickson typedef struct dnode_children {
259bc9014e6SJustin Gibbs 	dmu_buf_user_t dnc_dbu;		/* User evict data */
260744947dcSTom Erickson 	size_t dnc_count;		/* number of children */
2617f18da4cSJustin T. Gibbs 	dnode_handle_t dnc_children[];	/* sized dynamically */
262744947dcSTom Erickson } dnode_children_t;
263744947dcSTom Erickson 
264fa9e4066Sahrens typedef struct free_range {
265fa9e4066Sahrens 	avl_node_t fr_node;
266fa9e4066Sahrens 	uint64_t fr_blkid;
267fa9e4066Sahrens 	uint64_t fr_nblks;
268fa9e4066Sahrens } free_range_t;
269fa9e4066Sahrens 
270bc9014e6SJustin Gibbs void dnode_special_open(struct objset *dd, dnode_phys_t *dnp,
271744947dcSTom Erickson     uint64_t object, dnode_handle_t *dnh);
272744947dcSTom Erickson void dnode_special_close(dnode_handle_t *dnh);
273fa9e4066Sahrens 
2741934e92fSmaybee void dnode_setbonuslen(dnode_t *dn, int newsize, dmu_tx_t *tx);
2750a586ceaSMark Shellenbaum void dnode_setbonus_type(dnode_t *dn, dmu_object_type_t, dmu_tx_t *tx);
2760a586ceaSMark Shellenbaum void dnode_rm_spill(dnode_t *dn, dmu_tx_t *tx);
2770a586ceaSMark Shellenbaum 
278503ad85cSMatthew Ahrens int dnode_hold(struct objset *dd, uint64_t object,
279ea8dc4b6Seschrock     void *ref, dnode_t **dnp);
280503ad85cSMatthew Ahrens int dnode_hold_impl(struct objset *dd, uint64_t object, int flag,
281ea8dc4b6Seschrock     void *ref, dnode_t **dnp);
2821934e92fSmaybee boolean_t dnode_add_ref(dnode_t *dn, void *ref);
283fa9e4066Sahrens void dnode_rele(dnode_t *dn, void *ref);
284*cd485b49SJustin T. Gibbs void dnode_rele_and_unlock(dnode_t *dn, void *tag);
285fa9e4066Sahrens void dnode_setdirty(dnode_t *dn, dmu_tx_t *tx);
286c717a561Smaybee void dnode_sync(dnode_t *dn, dmu_tx_t *tx);
287fa9e4066Sahrens void dnode_allocate(dnode_t *dn, dmu_object_type_t ot, int blocksize, int ibs,
288fa9e4066Sahrens     dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
289fa9e4066Sahrens void dnode_reallocate(dnode_t *dn, dmu_object_type_t ot, int blocksize,
290fa9e4066Sahrens     dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
291fa9e4066Sahrens void dnode_free(dnode_t *dn, dmu_tx_t *tx);
292fa9e4066Sahrens void dnode_byteswap(dnode_phys_t *dnp);
293fa9e4066Sahrens void dnode_buf_byteswap(void *buf, size_t size);
294fa9e4066Sahrens void dnode_verify(dnode_t *dn);
295fa9e4066Sahrens int dnode_set_blksz(dnode_t *dn, uint64_t size, int ibs, dmu_tx_t *tx);
296fa9e4066Sahrens void dnode_free_range(dnode_t *dn, uint64_t off, uint64_t len, dmu_tx_t *tx);
297fa9e4066Sahrens void dnode_diduse_space(dnode_t *dn, int64_t space);
298fa9e4066Sahrens void dnode_willuse_space(dnode_t *dn, int64_t space, dmu_tx_t *tx);
2998346f03fSJonathan W Adams void dnode_new_blkid(dnode_t *dn, uint64_t blkid, dmu_tx_t *tx, boolean_t);
300fa9e4066Sahrens uint64_t dnode_block_freed(dnode_t *dn, uint64_t blkid);
301fa9e4066Sahrens void dnode_init(void);
302fa9e4066Sahrens void dnode_fini(void);
303cdb0ab79Smaybee int dnode_next_offset(dnode_t *dn, int flags, uint64_t *off,
304cdb0ab79Smaybee     int minlvl, uint64_t blkfill, uint64_t txg);
3051934e92fSmaybee void dnode_evict_dbufs(dnode_t *dn);
306*cd485b49SJustin T. Gibbs void dnode_evict_bonus(dnode_t *dn);
307fa9e4066Sahrens 
308fa9e4066Sahrens #ifdef ZFS_DEBUG
309fa9e4066Sahrens 
310fa9e4066Sahrens /*
311fa9e4066Sahrens  * There should be a ## between the string literal and fmt, to make it
312fa9e4066Sahrens  * clear that we're joining two strings together, but that piece of shit
313fa9e4066Sahrens  * gcc doesn't support that preprocessor token.
314fa9e4066Sahrens  */
315fa9e4066Sahrens #define	dprintf_dnode(dn, fmt, ...) do { \
316fa9e4066Sahrens 	if (zfs_flags & ZFS_DEBUG_DPRINTF) { \
317fa9e4066Sahrens 	char __db_buf[32]; \
318fa9e4066Sahrens 	uint64_t __db_obj = (dn)->dn_object; \
319fa9e4066Sahrens 	if (__db_obj == DMU_META_DNODE_OBJECT) \
320fa9e4066Sahrens 		(void) strcpy(__db_buf, "mdn"); \
321fa9e4066Sahrens 	else \
322fa9e4066Sahrens 		(void) snprintf(__db_buf, sizeof (__db_buf), "%lld", \
323fa9e4066Sahrens 		    (u_longlong_t)__db_obj);\
324fa9e4066Sahrens 	dprintf_ds((dn)->dn_objset->os_dsl_dataset, "obj=%s " fmt, \
325fa9e4066Sahrens 	    __db_buf, __VA_ARGS__); \
326fa9e4066Sahrens 	} \
327fa9e4066Sahrens _NOTE(CONSTCOND) } while (0)
328fa9e4066Sahrens 
3299c9dc39aSek110237 #define	DNODE_VERIFY(dn)		dnode_verify(dn)
3309c9dc39aSek110237 #define	FREE_VERIFY(db, start, end, tx)	free_verify(db, start, end, tx)
3319c9dc39aSek110237 
332fa9e4066Sahrens #else
333fa9e4066Sahrens 
334fa9e4066Sahrens #define	dprintf_dnode(db, fmt, ...)
3359c9dc39aSek110237 #define	DNODE_VERIFY(dn)
3369c9dc39aSek110237 #define	FREE_VERIFY(db, start, end, tx)
337fa9e4066Sahrens 
338fa9e4066Sahrens #endif
339fa9e4066Sahrens 
340fa9e4066Sahrens #ifdef	__cplusplus
341fa9e4066Sahrens }
342fa9e4066Sahrens #endif
343fa9e4066Sahrens 
344fa9e4066Sahrens #endif	/* _SYS_DNODE_H */
345