Print this page
4374 dn_free_ranges should use range_tree_t
Reviewed by: George Wilson <george.wilson@delphix.com>
Reviewed by: Max Grossman <max.grossman@delphix.com>
Reviewed by: Christopher Siden <christopher.siden@delphix.com
Reviewed by: Garrett D'Amore <garrett@damore.org>
Reviewed by: Dan McDonald <danmcd@omniti.com>
Approved by: Dan McDonald <danmcd@omniti.com>
| Split |
Close |
| Expand all |
| Collapse all |
--- old/usr/src/uts/common/fs/zfs/sys/dnode.h
+++ new/usr/src/uts/common/fs/zfs/sys/dnode.h
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
|
↓ open down ↓ |
12 lines elided |
↑ open up ↑ |
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21 /*
22 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 - * Copyright (c) 2013 by Delphix. All rights reserved.
23 + * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
24 24 */
25 25
26 26 #ifndef _SYS_DNODE_H
27 27 #define _SYS_DNODE_H
28 28
29 29 #include <sys/zfs_context.h>
30 30 #include <sys/avl.h>
31 31 #include <sys/spa.h>
32 32 #include <sys/txg.h>
33 33 #include <sys/zio.h>
34 34 #include <sys/refcount.h>
35 35 #include <sys/dmu_zfetch.h>
36 36 #include <sys/zrlock.h>
37 37
38 38 #ifdef __cplusplus
39 39 extern "C" {
40 40 #endif
41 41
42 42 /*
43 43 * dnode_hold() flags.
44 44 */
45 45 #define DNODE_MUST_BE_ALLOCATED 1
46 46 #define DNODE_MUST_BE_FREE 2
47 47
48 48 /*
49 49 * dnode_next_offset() flags.
50 50 */
51 51 #define DNODE_FIND_HOLE 1
52 52 #define DNODE_FIND_BACKWARDS 2
53 53 #define DNODE_FIND_HAVELOCK 4
54 54
55 55 /*
56 56 * Fixed constants.
57 57 */
58 58 #define DNODE_SHIFT 9 /* 512 bytes */
59 59 #define DN_MIN_INDBLKSHIFT 10 /* 1k */
60 60 #define DN_MAX_INDBLKSHIFT 14 /* 16k */
61 61 #define DNODE_BLOCK_SHIFT 14 /* 16k */
62 62 #define DNODE_CORE_SIZE 64 /* 64 bytes for dnode sans blkptrs */
63 63 #define DN_MAX_OBJECT_SHIFT 48 /* 256 trillion (zfs_fid_t limit) */
64 64 #define DN_MAX_OFFSET_SHIFT 64 /* 2^64 bytes in a dnode */
65 65
66 66 /*
67 67 * dnode id flags
68 68 *
69 69 * Note: a file will never ever have its
70 70 * ids moved from bonus->spill
71 71 * and only in a crypto environment would it be on spill
72 72 */
73 73 #define DN_ID_CHKED_BONUS 0x1
74 74 #define DN_ID_CHKED_SPILL 0x2
75 75 #define DN_ID_OLD_EXIST 0x4
76 76 #define DN_ID_NEW_EXIST 0x8
77 77
78 78 /*
79 79 * Derived constants.
80 80 */
81 81 #define DNODE_SIZE (1 << DNODE_SHIFT)
82 82 #define DN_MAX_NBLKPTR ((DNODE_SIZE - DNODE_CORE_SIZE) >> SPA_BLKPTRSHIFT)
83 83 #define DN_MAX_BONUSLEN (DNODE_SIZE - DNODE_CORE_SIZE - (1 << SPA_BLKPTRSHIFT))
84 84 #define DN_MAX_OBJECT (1ULL << DN_MAX_OBJECT_SHIFT)
85 85 #define DN_ZERO_BONUSLEN (DN_MAX_BONUSLEN + 1)
86 86 #define DN_KILL_SPILLBLK (1)
87 87
88 88 #define DNODES_PER_BLOCK_SHIFT (DNODE_BLOCK_SHIFT - DNODE_SHIFT)
89 89 #define DNODES_PER_BLOCK (1ULL << DNODES_PER_BLOCK_SHIFT)
90 90 #define DNODES_PER_LEVEL_SHIFT (DN_MAX_INDBLKSHIFT - SPA_BLKPTRSHIFT)
91 91 #define DNODES_PER_LEVEL (1ULL << DNODES_PER_LEVEL_SHIFT)
92 92
93 93 /* The +2 here is a cheesy way to round up */
94 94 #define DN_MAX_LEVELS (2 + ((DN_MAX_OFFSET_SHIFT - SPA_MINBLOCKSHIFT) / \
95 95 (DN_MIN_INDBLKSHIFT - SPA_BLKPTRSHIFT)))
96 96
97 97 #define DN_BONUS(dnp) ((void*)((dnp)->dn_bonus + \
98 98 (((dnp)->dn_nblkptr - 1) * sizeof (blkptr_t))))
99 99
100 100 #define DN_USED_BYTES(dnp) (((dnp)->dn_flags & DNODE_FLAG_USED_BYTES) ? \
101 101 (dnp)->dn_used : (dnp)->dn_used << SPA_MINBLOCKSHIFT)
102 102
103 103 #define EPB(blkshift, typeshift) (1 << (blkshift - typeshift))
104 104
105 105 struct dmu_buf_impl;
106 106 struct objset;
107 107 struct zio;
108 108
109 109 enum dnode_dirtycontext {
110 110 DN_UNDIRTIED,
111 111 DN_DIRTY_OPEN,
112 112 DN_DIRTY_SYNC
113 113 };
114 114
115 115 /* Is dn_used in bytes? if not, it's in multiples of SPA_MINBLOCKSIZE */
116 116 #define DNODE_FLAG_USED_BYTES (1<<0)
117 117 #define DNODE_FLAG_USERUSED_ACCOUNTED (1<<1)
118 118
119 119 /* Does dnode have a SA spill blkptr in bonus? */
120 120 #define DNODE_FLAG_SPILL_BLKPTR (1<<2)
121 121
122 122 typedef struct dnode_phys {
123 123 uint8_t dn_type; /* dmu_object_type_t */
124 124 uint8_t dn_indblkshift; /* ln2(indirect block size) */
125 125 uint8_t dn_nlevels; /* 1=dn_blkptr->data blocks */
126 126 uint8_t dn_nblkptr; /* length of dn_blkptr */
127 127 uint8_t dn_bonustype; /* type of data in bonus buffer */
128 128 uint8_t dn_checksum; /* ZIO_CHECKSUM type */
129 129 uint8_t dn_compress; /* ZIO_COMPRESS type */
130 130 uint8_t dn_flags; /* DNODE_FLAG_* */
131 131 uint16_t dn_datablkszsec; /* data block size in 512b sectors */
132 132 uint16_t dn_bonuslen; /* length of dn_bonus */
133 133 uint8_t dn_pad2[4];
134 134
135 135 /* accounting is protected by dn_dirty_mtx */
136 136 uint64_t dn_maxblkid; /* largest allocated block ID */
137 137 uint64_t dn_used; /* bytes (or sectors) of disk space */
138 138
139 139 uint64_t dn_pad3[4];
140 140
141 141 blkptr_t dn_blkptr[1];
142 142 uint8_t dn_bonus[DN_MAX_BONUSLEN - sizeof (blkptr_t)];
143 143 blkptr_t dn_spill;
144 144 } dnode_phys_t;
145 145
146 146 typedef struct dnode {
147 147 /*
148 148 * Protects the structure of the dnode, including the number of levels
149 149 * of indirection (dn_nlevels), dn_maxblkid, and dn_next_*
150 150 */
151 151 krwlock_t dn_struct_rwlock;
152 152
153 153 /* Our link on dn_objset->os_dnodes list; protected by os_lock. */
154 154 list_node_t dn_link;
155 155
156 156 /* immutable: */
157 157 struct objset *dn_objset;
158 158 uint64_t dn_object;
159 159 struct dmu_buf_impl *dn_dbuf;
160 160 struct dnode_handle *dn_handle;
161 161 dnode_phys_t *dn_phys; /* pointer into dn->dn_dbuf->db.db_data */
162 162
163 163 /*
164 164 * Copies of stuff in dn_phys. They're valid in the open
165 165 * context (eg. even before the dnode is first synced).
166 166 * Where necessary, these are protected by dn_struct_rwlock.
167 167 */
168 168 dmu_object_type_t dn_type; /* object type */
169 169 uint16_t dn_bonuslen; /* bonus length */
170 170 uint8_t dn_bonustype; /* bonus type */
171 171 uint8_t dn_nblkptr; /* number of blkptrs (immutable) */
172 172 uint8_t dn_checksum; /* ZIO_CHECKSUM type */
173 173 uint8_t dn_compress; /* ZIO_COMPRESS type */
174 174 uint8_t dn_nlevels;
175 175 uint8_t dn_indblkshift;
176 176 uint8_t dn_datablkshift; /* zero if blksz not power of 2! */
177 177 uint8_t dn_moved; /* Has this dnode been moved? */
178 178 uint16_t dn_datablkszsec; /* in 512b sectors */
179 179 uint32_t dn_datablksz; /* in bytes */
180 180 uint64_t dn_maxblkid;
181 181 uint8_t dn_next_type[TXG_SIZE];
182 182 uint8_t dn_next_nblkptr[TXG_SIZE];
183 183 uint8_t dn_next_nlevels[TXG_SIZE];
184 184 uint8_t dn_next_indblkshift[TXG_SIZE];
185 185 uint8_t dn_next_bonustype[TXG_SIZE];
186 186 uint8_t dn_rm_spillblk[TXG_SIZE]; /* for removing spill blk */
187 187 uint16_t dn_next_bonuslen[TXG_SIZE];
188 188 uint32_t dn_next_blksz[TXG_SIZE]; /* next block size in bytes */
189 189
190 190 /* protected by dn_dbufs_mtx; declared here to fill 32-bit hole */
|
↓ open down ↓ |
157 lines elided |
↑ open up ↑ |
191 191 uint32_t dn_dbufs_count; /* count of dn_dbufs */
192 192 /* There are no level-0 blocks of this blkid or higher in dn_dbufs */
193 193 uint64_t dn_unlisted_l0_blkid;
194 194
195 195 /* protected by os_lock: */
196 196 list_node_t dn_dirty_link[TXG_SIZE]; /* next on dataset's dirty */
197 197
198 198 /* protected by dn_mtx: */
199 199 kmutex_t dn_mtx;
200 200 list_t dn_dirty_records[TXG_SIZE];
201 - avl_tree_t dn_ranges[TXG_SIZE];
201 + struct range_tree *dn_free_ranges[TXG_SIZE];
202 202 uint64_t dn_allocated_txg;
203 203 uint64_t dn_free_txg;
204 204 uint64_t dn_assigned_txg;
205 205 kcondvar_t dn_notxholds;
206 206 enum dnode_dirtycontext dn_dirtyctx;
207 207 uint8_t *dn_dirtyctx_firstset; /* dbg: contents meaningless */
208 208
209 209 /* protected by own devices */
210 210 refcount_t dn_tx_holds;
211 211 refcount_t dn_holds;
212 212
213 213 kmutex_t dn_dbufs_mtx;
214 214 list_t dn_dbufs; /* descendent dbufs */
215 215
216 216 /* protected by dn_struct_rwlock */
217 217 struct dmu_buf_impl *dn_bonus; /* bonus buffer dbuf */
218 218
219 219 boolean_t dn_have_spill; /* have spill or are spilling */
220 220
221 221 /* parent IO for current sync write */
222 222 zio_t *dn_zio;
223 223
224 224 /* used in syncing context */
225 225 uint64_t dn_oldused; /* old phys used bytes */
226 226 uint64_t dn_oldflags; /* old phys dn_flags */
227 227 uint64_t dn_olduid, dn_oldgid;
228 228 uint64_t dn_newuid, dn_newgid;
229 229 int dn_id_flags;
230 230
231 231 /* holds prefetch structure */
232 232 struct zfetch dn_zfetch;
233 233 } dnode_t;
234 234
235 235 /*
236 236 * Adds a level of indirection between the dbuf and the dnode to avoid
237 237 * iterating descendent dbufs in dnode_move(). Handles are not allocated
238 238 * individually, but as an array of child dnodes in dnode_hold_impl().
239 239 */
240 240 typedef struct dnode_handle {
241 241 /* Protects dnh_dnode from modification by dnode_move(). */
242 242 zrlock_t dnh_zrlock;
243 243 dnode_t *dnh_dnode;
244 244 } dnode_handle_t;
245 245
246 246 typedef struct dnode_children {
247 247 size_t dnc_count; /* number of children */
248 248 dnode_handle_t dnc_children[1]; /* sized dynamically */
249 249 } dnode_children_t;
250 250
251 251 typedef struct free_range {
252 252 avl_node_t fr_node;
253 253 uint64_t fr_blkid;
254 254 uint64_t fr_nblks;
255 255 } free_range_t;
256 256
257 257 dnode_t *dnode_special_open(struct objset *dd, dnode_phys_t *dnp,
258 258 uint64_t object, dnode_handle_t *dnh);
259 259 void dnode_special_close(dnode_handle_t *dnh);
260 260
261 261 void dnode_setbonuslen(dnode_t *dn, int newsize, dmu_tx_t *tx);
262 262 void dnode_setbonus_type(dnode_t *dn, dmu_object_type_t, dmu_tx_t *tx);
263 263 void dnode_rm_spill(dnode_t *dn, dmu_tx_t *tx);
264 264
265 265 int dnode_hold(struct objset *dd, uint64_t object,
266 266 void *ref, dnode_t **dnp);
267 267 int dnode_hold_impl(struct objset *dd, uint64_t object, int flag,
268 268 void *ref, dnode_t **dnp);
269 269 boolean_t dnode_add_ref(dnode_t *dn, void *ref);
270 270 void dnode_rele(dnode_t *dn, void *ref);
271 271 void dnode_setdirty(dnode_t *dn, dmu_tx_t *tx);
272 272 void dnode_sync(dnode_t *dn, dmu_tx_t *tx);
|
↓ open down ↓ |
61 lines elided |
↑ open up ↑ |
273 273 void dnode_allocate(dnode_t *dn, dmu_object_type_t ot, int blocksize, int ibs,
274 274 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
275 275 void dnode_reallocate(dnode_t *dn, dmu_object_type_t ot, int blocksize,
276 276 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
277 277 void dnode_free(dnode_t *dn, dmu_tx_t *tx);
278 278 void dnode_byteswap(dnode_phys_t *dnp);
279 279 void dnode_buf_byteswap(void *buf, size_t size);
280 280 void dnode_verify(dnode_t *dn);
281 281 int dnode_set_blksz(dnode_t *dn, uint64_t size, int ibs, dmu_tx_t *tx);
282 282 void dnode_free_range(dnode_t *dn, uint64_t off, uint64_t len, dmu_tx_t *tx);
283 -void dnode_clear_range(dnode_t *dn, uint64_t blkid,
284 - uint64_t nblks, dmu_tx_t *tx);
285 283 void dnode_diduse_space(dnode_t *dn, int64_t space);
286 284 void dnode_willuse_space(dnode_t *dn, int64_t space, dmu_tx_t *tx);
287 285 void dnode_new_blkid(dnode_t *dn, uint64_t blkid, dmu_tx_t *tx, boolean_t);
288 286 uint64_t dnode_block_freed(dnode_t *dn, uint64_t blkid);
289 287 void dnode_init(void);
290 288 void dnode_fini(void);
291 289 int dnode_next_offset(dnode_t *dn, int flags, uint64_t *off,
292 290 int minlvl, uint64_t blkfill, uint64_t txg);
293 291 void dnode_evict_dbufs(dnode_t *dn);
294 292
295 293 #ifdef ZFS_DEBUG
296 294
297 295 /*
298 296 * There should be a ## between the string literal and fmt, to make it
299 297 * clear that we're joining two strings together, but that piece of shit
300 298 * gcc doesn't support that preprocessor token.
301 299 */
302 300 #define dprintf_dnode(dn, fmt, ...) do { \
303 301 if (zfs_flags & ZFS_DEBUG_DPRINTF) { \
304 302 char __db_buf[32]; \
305 303 uint64_t __db_obj = (dn)->dn_object; \
306 304 if (__db_obj == DMU_META_DNODE_OBJECT) \
307 305 (void) strcpy(__db_buf, "mdn"); \
308 306 else \
309 307 (void) snprintf(__db_buf, sizeof (__db_buf), "%lld", \
310 308 (u_longlong_t)__db_obj);\
311 309 dprintf_ds((dn)->dn_objset->os_dsl_dataset, "obj=%s " fmt, \
312 310 __db_buf, __VA_ARGS__); \
313 311 } \
314 312 _NOTE(CONSTCOND) } while (0)
315 313
316 314 #define DNODE_VERIFY(dn) dnode_verify(dn)
317 315 #define FREE_VERIFY(db, start, end, tx) free_verify(db, start, end, tx)
318 316
319 317 #else
320 318
321 319 #define dprintf_dnode(db, fmt, ...)
322 320 #define DNODE_VERIFY(dn)
323 321 #define FREE_VERIFY(db, start, end, tx)
324 322
325 323 #endif
326 324
327 325 #ifdef __cplusplus
328 326 }
329 327 #endif
330 328
331 329 #endif /* _SYS_DNODE_H */
|
↓ open down ↓ |
37 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX