]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/zvol.c
zfs_rename: support RENAME_* flags
[mirror_zfs.git] / module / zfs / zvol.c
CommitLineData
60101509
BB
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1d3ba0bf 9 * or https://opensource.org/licenses/CDDL-1.0.
60101509
BB
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
22 * Copyright (C) 2008-2010 Lawrence Livermore National Security, LLC.
23 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
24 * Rewritten for Linux by Brian Behlendorf <behlendorf1@llnl.gov>.
25 * LLNL-CODE-403049.
26 *
27 * ZFS volume emulation driver.
28 *
29 * Makes a DMU object look like a volume of arbitrary size, up to 2^64 bytes.
30 * Volumes are accessed through the symbolic links named:
31 *
32 * /dev/<pool_name>/<dataset_name>
33 *
34 * Volumes are persistent through reboot and module load. No user command
35 * needs to be run before opening and using a device.
460a0213
DM
36 *
37 * Copyright 2014 Nexenta Systems, Inc. All rights reserved.
5428dc51 38 * Copyright (c) 2016 Actifio, Inc. All rights reserved.
1eacf2b3 39 * Copyright (c) 2012, 2019 by Delphix. All rights reserved.
60101509
BB
40 */
41
5559ba09
BP
42/*
43 * Note on locking of zvol state structures.
44 *
45 * These structures are used to maintain internal state used to emulate block
46 * devices on top of zvols. In particular, management of device minor number
47 * operations - create, remove, rename, and set_snapdev - involves access to
48 * these structures. The zvol_state_lock is primarily used to protect the
49 * zvol_state_list. The zv->zv_state_lock is used to protect the contents
50 * of the zvol_state_t structures, as well as to make sure that when the
51 * time comes to remove the structure from the list, it is not in use, and
52 * therefore, it can be taken off zvol_state_list and freed.
53 *
58404a73
BP
54 * The zv_suspend_lock was introduced to allow for suspending I/O to a zvol,
55 * e.g. for the duration of receive and rollback operations. This lock can be
56 * held for significant periods of time. Given that it is undesirable to hold
57 * mutexes for long periods of time, the following lock ordering applies:
58 * - take zvol_state_lock if necessary, to protect zvol_state_list
59 * - take zv_suspend_lock if necessary, by the code path in question
60 * - take zv_state_lock to protect zvol_state_t
61 *
62 * The minor operations are issued to spa->spa_zvol_taskq queues, that are
5559ba09
BP
63 * single-threaded (to preserve order of minor operations), and are executed
64 * through the zvol_task_cb that dispatches the specific operations. Therefore,
65 * these operations are serialized per pool. Consequently, we can be certain
66 * that for a given zvol, there is only one operation at a time in progress.
67 * That is why one can be sure that first, zvol_state_t for a given zvol is
68 * allocated and placed on zvol_state_list, and then other minor operations
69 * for this zvol are going to proceed in the order of issue.
70 *
5559ba09
BP
71 */
72
a448a255 73#include <sys/dataset_kstats.h>
03c6040b 74#include <sys/dbuf.h>
60101509
BB
75#include <sys/dmu_traverse.h>
76#include <sys/dsl_dataset.h>
77#include <sys/dsl_prop.h>
a0bd735a 78#include <sys/dsl_dir.h>
60101509 79#include <sys/zap.h>
4cb7b9c5 80#include <sys/zfeature.h>
60101509 81#include <sys/zil_impl.h>
460a0213 82#include <sys/dmu_tx.h>
60101509
BB
83#include <sys/zio.h>
84#include <sys/zfs_rlock.h>
a0bd735a 85#include <sys/spa_impl.h>
60101509 86#include <sys/zvol.h>
5df7e9d8
MM
87#include <sys/zvol_impl.h>
88
74497b7a 89unsigned int zvol_inhibit_dev = 0;
cf8738d8 90unsigned int zvol_volmode = ZFS_VOLMODE_GEOM;
60101509 91
5df7e9d8 92struct hlist_head *zvol_htable;
18168da7 93static list_t zvol_state_list;
5df7e9d8 94krwlock_t zvol_state_lock;
60101509 95
a0bd735a 96typedef enum {
a0bd735a
BP
97 ZVOL_ASYNC_REMOVE_MINORS,
98 ZVOL_ASYNC_RENAME_MINORS,
99 ZVOL_ASYNC_SET_SNAPDEV,
cf8738d8 100 ZVOL_ASYNC_SET_VOLMODE,
a0bd735a
BP
101 ZVOL_ASYNC_MAX
102} zvol_async_op_t;
103
104typedef struct {
105 zvol_async_op_t op;
a0bd735a
BP
106 char name1[MAXNAMELEN];
107 char name2[MAXNAMELEN];
cf8738d8 108 uint64_t value;
a0bd735a
BP
109} zvol_task_t;
110
5df7e9d8 111uint64_t
d45e010d 112zvol_name_hash(const char *name)
60101509 113{
d45e010d
CC
114 int i;
115 uint64_t crc = -1ULL;
5df7e9d8 116 const uint8_t *p = (const uint8_t *)name;
d45e010d
CC
117 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
118 for (i = 0; i < MAXNAMELEN - 1 && *p; i++, p++) {
119 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (*p)) & 0xFF];
60101509 120 }
d45e010d 121 return (crc);
60101509
BB
122}
123
60101509 124/*
d45e010d 125 * Find a zvol_state_t given the name and hash generated by zvol_name_hash.
58404a73
BP
126 * If found, return with zv_suspend_lock and zv_state_lock taken, otherwise,
127 * return (NULL) without the taking locks. The zv_suspend_lock is always taken
128 * before zv_state_lock. The mode argument indicates the mode (including none)
129 * for zv_suspend_lock to be taken.
60101509 130 */
5df7e9d8 131zvol_state_t *
58404a73 132zvol_find_by_name_hash(const char *name, uint64_t hash, int mode)
60101509
BB
133{
134 zvol_state_t *zv;
94183a9d 135 struct hlist_node *p = NULL;
60101509 136
7b98f0d9 137 rw_enter(&zvol_state_lock, RW_READER);
d45e010d
CC
138 hlist_for_each(p, ZVOL_HT_HEAD(hash)) {
139 zv = hlist_entry(p, zvol_state_t, zv_hlink);
58404a73 140 mutex_enter(&zv->zv_state_lock);
d45e010d 141 if (zv->zv_hash == hash &&
58404a73
BP
142 strncmp(zv->zv_name, name, MAXNAMELEN) == 0) {
143 /*
144 * this is the right zvol, take the locks in the
145 * right order
146 */
147 if (mode != RW_NONE &&
148 !rw_tryenter(&zv->zv_suspend_lock, mode)) {
149 mutex_exit(&zv->zv_state_lock);
150 rw_enter(&zv->zv_suspend_lock, mode);
151 mutex_enter(&zv->zv_state_lock);
152 /*
153 * zvol cannot be renamed as we continue
154 * to hold zvol_state_lock
155 */
156 ASSERT(zv->zv_hash == hash &&
157 strncmp(zv->zv_name, name, MAXNAMELEN)
158 == 0);
159 }
7b98f0d9 160 rw_exit(&zvol_state_lock);
ce37ebd2 161 return (zv);
58404a73
BP
162 }
163 mutex_exit(&zv->zv_state_lock);
60101509 164 }
7b98f0d9 165 rw_exit(&zvol_state_lock);
58404a73 166
ce37ebd2 167 return (NULL);
60101509
BB
168}
169
d45e010d 170/*
58404a73
BP
171 * Find a zvol_state_t given the name.
172 * If found, return with zv_suspend_lock and zv_state_lock taken, otherwise,
173 * return (NULL) without the taking locks. The zv_suspend_lock is always taken
174 * before zv_state_lock. The mode argument indicates the mode (including none)
175 * for zv_suspend_lock to be taken.
d45e010d
CC
176 */
177static zvol_state_t *
58404a73 178zvol_find_by_name(const char *name, int mode)
d45e010d 179{
58404a73 180 return (zvol_find_by_name_hash(name, zvol_name_hash(name), mode));
d45e010d
CC
181}
182
60101509
BB
183/*
184 * ZFS_IOC_CREATE callback handles dmu zvol and zap object creation.
185 */
186void
187zvol_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx)
188{
189 zfs_creat_t *zct = arg;
190 nvlist_t *nvprops = zct->zct_props;
191 int error;
192 uint64_t volblocksize, volsize;
193
194 VERIFY(nvlist_lookup_uint64(nvprops,
195 zfs_prop_to_name(ZFS_PROP_VOLSIZE), &volsize) == 0);
196 if (nvlist_lookup_uint64(nvprops,
197 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), &volblocksize) != 0)
198 volblocksize = zfs_prop_default_numeric(ZFS_PROP_VOLBLOCKSIZE);
199
200 /*
201 * These properties must be removed from the list so the generic
202 * property setting step won't apply to them.
203 */
204 VERIFY(nvlist_remove_all(nvprops,
205 zfs_prop_to_name(ZFS_PROP_VOLSIZE)) == 0);
206 (void) nvlist_remove_all(nvprops,
207 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE));
208
209 error = dmu_object_claim(os, ZVOL_OBJ, DMU_OT_ZVOL, volblocksize,
210 DMU_OT_NONE, 0, tx);
211 ASSERT(error == 0);
212
213 error = zap_create_claim(os, ZVOL_ZAP_OBJ, DMU_OT_ZVOL_PROP,
214 DMU_OT_NONE, 0, tx);
215 ASSERT(error == 0);
216
217 error = zap_update(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize, tx);
218 ASSERT(error == 0);
219}
220
221/*
222 * ZFS_IOC_OBJSET_STATS entry point.
223 */
224int
225zvol_get_stats(objset_t *os, nvlist_t *nv)
226{
227 int error;
228 dmu_object_info_t *doi;
229 uint64_t val;
230
231 error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &val);
232 if (error)
ce37ebd2 233 return (SET_ERROR(error));
60101509
BB
234
235 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_VOLSIZE, val);
ce37ebd2 236 doi = kmem_alloc(sizeof (dmu_object_info_t), KM_SLEEP);
60101509
BB
237 error = dmu_object_info(os, ZVOL_OBJ, doi);
238
239 if (error == 0) {
240 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_VOLBLOCKSIZE,
241 doi->doi_data_block_size);
242 }
243
ce37ebd2 244 kmem_free(doi, sizeof (dmu_object_info_t));
60101509 245
ce37ebd2 246 return (SET_ERROR(error));
60101509
BB
247}
248
249/*
250 * Sanity check volume size.
251 */
252int
253zvol_check_volsize(uint64_t volsize, uint64_t blocksize)
254{
255 if (volsize == 0)
2e528b49 256 return (SET_ERROR(EINVAL));
60101509
BB
257
258 if (volsize % blocksize != 0)
2e528b49 259 return (SET_ERROR(EINVAL));
60101509
BB
260
261#ifdef _ILP32
82ec9d41 262 if (volsize - 1 > SPEC_MAXOFFSET_T)
2e528b49 263 return (SET_ERROR(EOVERFLOW));
60101509
BB
264#endif
265 return (0);
266}
267
268/*
269 * Ensure the zap is flushed then inform the VFS of the capacity change.
270 */
271static int
35d3e322 272zvol_update_volsize(uint64_t volsize, objset_t *os)
60101509 273{
60101509
BB
274 dmu_tx_t *tx;
275 int error;
513168ab 276 uint64_t txg;
60101509 277
df554c14 278 tx = dmu_tx_create(os);
60101509 279 dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
19d55079 280 dmu_tx_mark_netfree(tx);
60101509
BB
281 error = dmu_tx_assign(tx, TXG_WAIT);
282 if (error) {
283 dmu_tx_abort(tx);
ce37ebd2 284 return (SET_ERROR(error));
60101509 285 }
513168ab 286 txg = dmu_tx_get_txg(tx);
60101509 287
df554c14 288 error = zap_update(os, ZVOL_ZAP_OBJ, "size", 8, 1,
60101509
BB
289 &volsize, tx);
290 dmu_tx_commit(tx);
291
513168ab 292 txg_wait_synced(dmu_objset_pool(os), txg);
293
35d3e322
BB
294 if (error == 0)
295 error = dmu_free_long_range(os,
296 ZVOL_OBJ, volsize, DMU_OBJECT_END);
60101509 297
35d3e322
BB
298 return (error);
299}
60101509 300
60101509 301/*
7b98f0d9
BB
302 * Set ZFS_PROP_VOLSIZE set entry point. Note that modifying the volume
303 * size will result in a udev "change" event being generated.
60101509
BB
304 */
305int
306zvol_set_volsize(const char *name, uint64_t volsize)
307{
60101509 308 objset_t *os = NULL;
35d3e322 309 uint64_t readonly;
7b98f0d9 310 int error;
35d3e322 311 boolean_t owned = B_FALSE;
60101509 312
13fe0198
MA
313 error = dsl_prop_get_integer(name,
314 zfs_prop_to_name(ZFS_PROP_READONLY), &readonly, NULL);
315 if (error != 0)
ce37ebd2 316 return (SET_ERROR(error));
13fe0198 317 if (readonly)
2e528b49 318 return (SET_ERROR(EROFS));
13fe0198 319
7b98f0d9 320 zvol_state_t *zv = zvol_find_by_name(name, RW_READER);
58404a73
BP
321
322 ASSERT(zv == NULL || (MUTEX_HELD(&zv->zv_state_lock) &&
323 RW_READ_HELD(&zv->zv_suspend_lock)));
35d3e322
BB
324
325 if (zv == NULL || zv->zv_objset == NULL) {
58404a73
BP
326 if (zv != NULL)
327 rw_exit(&zv->zv_suspend_lock);
b5256303 328 if ((error = dmu_objset_own(name, DMU_OST_ZVOL, B_FALSE, B_TRUE,
35d3e322 329 FTAG, &os)) != 0) {
5559ba09
BP
330 if (zv != NULL)
331 mutex_exit(&zv->zv_state_lock);
35d3e322
BB
332 return (SET_ERROR(error));
333 }
334 owned = B_TRUE;
335 if (zv != NULL)
336 zv->zv_objset = os;
337 } else {
338 os = zv->zv_objset;
60101509
BB
339 }
340
7b98f0d9 341 dmu_object_info_t *doi = kmem_alloc(sizeof (*doi), KM_SLEEP);
60101509 342
ce37ebd2
BB
343 if ((error = dmu_object_info(os, ZVOL_OBJ, doi)) ||
344 (error = zvol_check_volsize(volsize, doi->doi_data_block_size)))
35d3e322 345 goto out;
60101509 346
35d3e322 347 error = zvol_update_volsize(volsize, os);
7b98f0d9
BB
348 if (error == 0 && zv != NULL) {
349 zv->zv_volsize = volsize;
350 zv->zv_changed = 1;
7b98f0d9 351 }
35d3e322 352out:
3f7d0418 353 kmem_free(doi, sizeof (dmu_object_info_t));
354
35d3e322 355 if (owned) {
b5256303 356 dmu_objset_disown(os, B_TRUE, FTAG);
35d3e322
BB
357 if (zv != NULL)
358 zv->zv_objset = NULL;
040dab99
CC
359 } else {
360 rw_exit(&zv->zv_suspend_lock);
35d3e322 361 }
5559ba09
BP
362
363 if (zv != NULL)
364 mutex_exit(&zv->zv_state_lock);
58404a73 365
5df7e9d8 366 if (error == 0 && zv != NULL)
1dccfd7a 367 zvol_os_update_volsize(zv, volsize);
7b98f0d9 368
5559ba09 369 return (SET_ERROR(error));
60101509
BB
370}
371
372/*
373 * Sanity check volume block size.
374 */
375int
4cb7b9c5 376zvol_check_volblocksize(const char *name, uint64_t volblocksize)
60101509 377{
4cb7b9c5
BB
378 /* Record sizes above 128k need the feature to be enabled */
379 if (volblocksize > SPA_OLD_MAXBLOCKSIZE) {
380 spa_t *spa;
381 int error;
382
383 if ((error = spa_open(name, &spa, FTAG)) != 0)
384 return (error);
385
386 if (!spa_feature_is_enabled(spa, SPA_FEATURE_LARGE_BLOCKS)) {
387 spa_close(spa, FTAG);
388 return (SET_ERROR(ENOTSUP));
389 }
390
391 /*
392 * We don't allow setting the property above 1MB,
393 * unless the tunable has been changed.
394 */
395 if (volblocksize > zfs_max_recordsize)
396 return (SET_ERROR(EDOM));
397
398 spa_close(spa, FTAG);
399 }
400
60101509
BB
401 if (volblocksize < SPA_MINBLOCKSIZE ||
402 volblocksize > SPA_MAXBLOCKSIZE ||
403 !ISP2(volblocksize))
2e528b49 404 return (SET_ERROR(EDOM));
60101509
BB
405
406 return (0);
407}
408
460a0213
DM
409/*
410 * Replay a TX_TRUNCATE ZIL transaction if asked. TX_TRUNCATE is how we
411 * implement DKIOCFREE/free-long-range.
412 */
413static int
867959b5 414zvol_replay_truncate(void *arg1, void *arg2, boolean_t byteswap)
460a0213 415{
867959b5
BB
416 zvol_state_t *zv = arg1;
417 lr_truncate_t *lr = arg2;
460a0213
DM
418 uint64_t offset, length;
419
420 if (byteswap)
421 byteswap_uint64_array(lr, sizeof (*lr));
422
423 offset = lr->lr_offset;
424 length = lr->lr_length;
425
93e36580
CS
426 dmu_tx_t *tx = dmu_tx_create(zv->zv_objset);
427 dmu_tx_mark_netfree(tx);
428 int error = dmu_tx_assign(tx, TXG_WAIT);
429 if (error != 0) {
430 dmu_tx_abort(tx);
431 } else {
2a493a4c 432 (void) zil_replaying(zv->zv_zilog, tx);
93e36580
CS
433 dmu_tx_commit(tx);
434 error = dmu_free_long_range(zv->zv_objset, ZVOL_OBJ, offset,
435 length);
436 }
437
438 return (error);
460a0213
DM
439}
440
60101509
BB
441/*
442 * Replay a TX_WRITE ZIL transaction that didn't get committed
443 * after a system failure
444 */
445static int
867959b5 446zvol_replay_write(void *arg1, void *arg2, boolean_t byteswap)
60101509 447{
867959b5
BB
448 zvol_state_t *zv = arg1;
449 lr_write_t *lr = arg2;
60101509 450 objset_t *os = zv->zv_objset;
5c214ae3
BB
451 char *data = (char *)(lr + 1); /* data follows lr_write_t */
452 uint64_t offset, length;
60101509
BB
453 dmu_tx_t *tx;
454 int error;
455
456 if (byteswap)
457 byteswap_uint64_array(lr, sizeof (*lr));
458
5c214ae3
BB
459 offset = lr->lr_offset;
460 length = lr->lr_length;
461
462 /* If it's a dmu_sync() block, write the whole block */
463 if (lr->lr_common.lrc_reclen == sizeof (lr_write_t)) {
464 uint64_t blocksize = BP_GET_LSIZE(&lr->lr_blkptr);
465 if (length < blocksize) {
466 offset -= offset % blocksize;
467 length = blocksize;
468 }
469 }
470
60101509 471 tx = dmu_tx_create(os);
5c214ae3 472 dmu_tx_hold_write(tx, ZVOL_OBJ, offset, length);
60101509
BB
473 error = dmu_tx_assign(tx, TXG_WAIT);
474 if (error) {
475 dmu_tx_abort(tx);
476 } else {
5c214ae3 477 dmu_write(os, ZVOL_OBJ, offset, length, data, tx);
2a493a4c 478 (void) zil_replaying(zv->zv_zilog, tx);
60101509
BB
479 dmu_tx_commit(tx);
480 }
481
5c214ae3 482 return (error);
60101509
BB
483}
484
485static int
867959b5 486zvol_replay_err(void *arg1, void *arg2, boolean_t byteswap)
60101509 487{
18168da7 488 (void) arg1, (void) arg2, (void) byteswap;
2e528b49 489 return (SET_ERROR(ENOTSUP));
60101509
BB
490}
491
492/*
493 * Callback vectors for replaying records.
460a0213 494 * Only TX_WRITE and TX_TRUNCATE are needed for zvol.
60101509 495 */
18168da7 496zil_replay_func_t *const zvol_replay_vector[TX_MAX_TYPE] = {
867959b5
BB
497 zvol_replay_err, /* no such transaction type */
498 zvol_replay_err, /* TX_CREATE */
499 zvol_replay_err, /* TX_MKDIR */
500 zvol_replay_err, /* TX_MKXATTR */
501 zvol_replay_err, /* TX_SYMLINK */
502 zvol_replay_err, /* TX_REMOVE */
503 zvol_replay_err, /* TX_RMDIR */
504 zvol_replay_err, /* TX_LINK */
505 zvol_replay_err, /* TX_RENAME */
506 zvol_replay_write, /* TX_WRITE */
507 zvol_replay_truncate, /* TX_TRUNCATE */
508 zvol_replay_err, /* TX_SETATTR */
509 zvol_replay_err, /* TX_ACL */
510 zvol_replay_err, /* TX_CREATE_ATTR */
511 zvol_replay_err, /* TX_CREATE_ACL_ATTR */
512 zvol_replay_err, /* TX_MKDIR_ACL */
513 zvol_replay_err, /* TX_MKDIR_ATTR */
514 zvol_replay_err, /* TX_MKDIR_ACL_ATTR */
515 zvol_replay_err, /* TX_WRITE2 */
159c6fd1 516 zvol_replay_err, /* TX_SETSAXATTR */
dbf6108b
AS
517 zvol_replay_err, /* TX_RENAME_EXCHANGE */
518 zvol_replay_err, /* TX_RENAME_WHITEOUT */
60101509
BB
519};
520
521/*
522 * zvol_log_write() handles synchronous writes using TX_WRITE ZIL transactions.
523 *
524 * We store data in the log buffers if it's small enough.
525 * Otherwise we will later flush the data out via dmu_sync().
526 */
18168da7 527static const ssize_t zvol_immediate_write_sz = 32768;
60101509 528
5df7e9d8 529void
ce37ebd2
BB
530zvol_log_write(zvol_state_t *zv, dmu_tx_t *tx, uint64_t offset,
531 uint64_t size, int sync)
60101509
BB
532{
533 uint32_t blocksize = zv->zv_volblocksize;
534 zilog_t *zilog = zv->zv_zilog;
1b7c1e5c 535 itx_wr_state_t write_state;
a7bd20e3 536 uint64_t sz = size;
60101509
BB
537
538 if (zil_replaying(zilog, tx))
539 return;
540
1b7c1e5c
GDN
541 if (zilog->zl_logbias == ZFS_LOGBIAS_THROUGHPUT)
542 write_state = WR_INDIRECT;
543 else if (!spa_has_slogs(zilog->zl_spa) &&
544 size >= blocksize && blocksize > zvol_immediate_write_sz)
545 write_state = WR_INDIRECT;
546 else if (sync)
547 write_state = WR_COPIED;
548 else
549 write_state = WR_NEED_COPY;
60101509
BB
550
551 while (size) {
552 itx_t *itx;
553 lr_write_t *lr;
1b7c1e5c
GDN
554 itx_wr_state_t wr_state = write_state;
555 ssize_t len = size;
60101509 556
b8738257 557 if (wr_state == WR_COPIED && size > zil_max_copied_data(zilog))
1b7c1e5c
GDN
558 wr_state = WR_NEED_COPY;
559 else if (wr_state == WR_INDIRECT)
560 len = MIN(blocksize - P2PHASE(offset, blocksize), size);
60101509
BB
561
562 itx = zil_itx_create(TX_WRITE, sizeof (*lr) +
1b7c1e5c 563 (wr_state == WR_COPIED ? len : 0));
60101509 564 lr = (lr_write_t *)&itx->itx_lr;
5228cf01
RY
565 if (wr_state == WR_COPIED && dmu_read_by_dnode(zv->zv_dn,
566 offset, len, lr+1, DMU_READ_NO_PREFETCH) != 0) {
60101509
BB
567 zil_itx_destroy(itx);
568 itx = zil_itx_create(TX_WRITE, sizeof (*lr));
569 lr = (lr_write_t *)&itx->itx_lr;
1b7c1e5c 570 wr_state = WR_NEED_COPY;
60101509
BB
571 }
572
1b7c1e5c 573 itx->itx_wr_state = wr_state;
60101509
BB
574 lr->lr_foid = ZVOL_OBJ;
575 lr->lr_offset = offset;
576 lr->lr_length = len;
577 lr->lr_blkoff = 0;
578 BP_ZERO(&lr->lr_blkptr);
579
580 itx->itx_private = zv;
581 itx->itx_sync = sync;
582
583 (void) zil_itx_assign(zilog, itx, tx);
584
585 offset += len;
586 size -= len;
587 }
a7bd20e3
KJ
588
589 if (write_state == WR_COPIED || write_state == WR_NEED_COPY) {
590 dsl_pool_wrlog_count(zilog->zl_dmu_pool, sz, tx->tx_txg);
591 }
60101509
BB
592}
593
460a0213
DM
594/*
595 * Log a DKIOCFREE/free-long-range to the ZIL with TX_TRUNCATE.
596 */
5df7e9d8 597void
460a0213
DM
598zvol_log_truncate(zvol_state_t *zv, dmu_tx_t *tx, uint64_t off, uint64_t len,
599 boolean_t sync)
600{
601 itx_t *itx;
602 lr_truncate_t *lr;
603 zilog_t *zilog = zv->zv_zilog;
604
605 if (zil_replaying(zilog, tx))
606 return;
607
608 itx = zil_itx_create(TX_TRUNCATE, sizeof (*lr));
609 lr = (lr_truncate_t *)&itx->itx_lr;
610 lr->lr_foid = ZVOL_OBJ;
611 lr->lr_offset = off;
612 lr->lr_length = len;
613
614 itx->itx_sync = sync;
615 zil_itx_assign(zilog, itx, tx);
616}
617
60101509 618
1eacf2b3
JG
619static void
620zvol_get_done(zgd_t *zgd, int error)
621{
ef70eff1 622 (void) error;
1eacf2b3
JG
623 if (zgd->zgd_db)
624 dmu_buf_rele(zgd->zgd_db, zgd);
625
2cc479d0 626 zfs_rangelock_exit(zgd->zgd_lr);
1eacf2b3
JG
627
628 kmem_free(zgd, sizeof (zgd_t));
629}
630
631/*
632 * Get data to generate a TX_WRITE intent log record.
633 */
5df7e9d8 634int
296a4a36
CC
635zvol_get_data(void *arg, uint64_t arg2, lr_write_t *lr, char *buf,
636 struct lwb *lwb, zio_t *zio)
1eacf2b3
JG
637{
638 zvol_state_t *zv = arg;
639 uint64_t offset = lr->lr_offset;
640 uint64_t size = lr->lr_length;
641 dmu_buf_t *db;
642 zgd_t *zgd;
643 int error;
644
645 ASSERT3P(lwb, !=, NULL);
646 ASSERT3P(zio, !=, NULL);
647 ASSERT3U(size, !=, 0);
648
649 zgd = (zgd_t *)kmem_zalloc(sizeof (zgd_t), KM_SLEEP);
650 zgd->zgd_lwb = lwb;
651
652 /*
653 * Write records come in two flavors: immediate and indirect.
654 * For small writes it's cheaper to store the data with the
655 * log record (immediate); for large writes it's cheaper to
656 * sync the data and get a pointer to it (indirect) so that
657 * we don't have to write the data twice.
658 */
659 if (buf != NULL) { /* immediate write */
2cc479d0
MM
660 zgd->zgd_lr = zfs_rangelock_enter(&zv->zv_rangelock, offset,
661 size, RL_READER);
1eacf2b3
JG
662 error = dmu_read_by_dnode(zv->zv_dn, offset, size, buf,
663 DMU_READ_NO_PREFETCH);
664 } else { /* indirect write */
665 /*
666 * Have to lock the whole block to ensure when it's written out
667 * and its checksum is being calculated that no one can change
668 * the data. Contrarily to zfs_get_data we need not re-check
669 * blocksize after we get the lock because it cannot be changed.
670 */
671 size = zv->zv_volblocksize;
672 offset = P2ALIGN_TYPED(offset, size, uint64_t);
2cc479d0
MM
673 zgd->zgd_lr = zfs_rangelock_enter(&zv->zv_rangelock, offset,
674 size, RL_READER);
1eacf2b3
JG
675 error = dmu_buf_hold_by_dnode(zv->zv_dn, offset, zgd, &db,
676 DMU_READ_NO_PREFETCH);
677 if (error == 0) {
678 blkptr_t *bp = &lr->lr_blkptr;
679
680 zgd->zgd_db = db;
681 zgd->zgd_bp = bp;
682
683 ASSERT(db != NULL);
684 ASSERT(db->db_offset == offset);
685 ASSERT(db->db_size == size);
686
687 error = dmu_sync(zio, lr->lr_common.lrc_txg,
688 zvol_get_done, zgd);
689
690 if (error == 0)
691 return (0);
692 }
693 }
694
695 zvol_get_done(zgd, error);
696
697 return (SET_ERROR(error));
698}
699
60101509 700/*
d45e010d 701 * The zvol_state_t's are inserted into zvol_state_list and zvol_htable.
60101509 702 */
5df7e9d8
MM
703
704void
d45e010d 705zvol_insert(zvol_state_t *zv)
60101509 706{
7b98f0d9 707 ASSERT(RW_WRITE_HELD(&zvol_state_lock));
d45e010d
CC
708 list_insert_head(&zvol_state_list, zv);
709 hlist_add_head(&zv->zv_hlink, ZVOL_HT_HEAD(zv->zv_hash));
60101509
BB
710}
711
712/*
713 * Simply remove the zvol from to list of zvols.
714 */
715static void
d45e010d 716zvol_remove(zvol_state_t *zv)
60101509 717{
7b98f0d9 718 ASSERT(RW_WRITE_HELD(&zvol_state_lock));
d45e010d
CC
719 list_remove(&zvol_state_list, zv);
720 hlist_del(&zv->zv_hlink);
60101509
BB
721}
722
040dab99
CC
723/*
724 * Setup zv after we just own the zv->objset
725 */
60101509 726static int
040dab99 727zvol_setup_zv(zvol_state_t *zv)
60101509 728{
60101509
BB
729 uint64_t volsize;
730 int error;
731 uint64_t ro;
040dab99 732 objset_t *os = zv->zv_objset;
1ee159f4 733
7b98f0d9
BB
734 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
735 ASSERT(RW_LOCK_HELD(&zv->zv_suspend_lock));
58404a73 736
1eacf2b3
JG
737 zv->zv_zilog = NULL;
738 zv->zv_flags &= ~ZVOL_WRITTEN_TO;
739
1ee159f4
BP
740 error = dsl_prop_get_integer(zv->zv_name, "readonly", &ro, NULL);
741 if (error)
040dab99 742 return (SET_ERROR(error));
60101509
BB
743
744 error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize);
1ee159f4 745 if (error)
040dab99 746 return (SET_ERROR(error));
60101509 747
570d7038 748 error = dnode_hold(os, ZVOL_OBJ, zv, &zv->zv_dn);
1ee159f4 749 if (error)
040dab99 750 return (SET_ERROR(error));
60101509 751
1dccfd7a 752 zvol_os_set_capacity(zv, volsize >> 9);
60101509 753 zv->zv_volsize = volsize;
60101509 754
a4430fce
GW
755 if (ro || dmu_objset_is_snapshot(os) ||
756 !spa_writeable(dmu_objset_spa(os))) {
1dccfd7a 757 zvol_os_set_disk_ro(zv, 1);
babf3f9b 758 zv->zv_flags |= ZVOL_RDONLY;
60101509 759 } else {
1dccfd7a 760 zvol_os_set_disk_ro(zv, 0);
babf3f9b 761 zv->zv_flags &= ~ZVOL_RDONLY;
60101509 762 }
040dab99 763 return (0);
60101509
BB
764}
765
040dab99
CC
766/*
767 * Shutdown every zv_objset related stuff except zv_objset itself.
768 * The is the reverse of zvol_setup_zv.
769 */
60101509 770static void
040dab99 771zvol_shutdown_zv(zvol_state_t *zv)
60101509 772{
58404a73
BP
773 ASSERT(MUTEX_HELD(&zv->zv_state_lock) &&
774 RW_LOCK_HELD(&zv->zv_suspend_lock));
775
1eacf2b3
JG
776 if (zv->zv_flags & ZVOL_WRITTEN_TO) {
777 ASSERT(zv->zv_zilog != NULL);
778 zil_close(zv->zv_zilog);
779 }
780
60101509 781 zv->zv_zilog = NULL;
04434775 782
570d7038 783 dnode_rele(zv->zv_dn, zv);
5228cf01 784 zv->zv_dn = NULL;
04434775
MA
785
786 /*
47ab01a1
TC
787 * Evict cached data. We must write out any dirty data before
788 * disowning the dataset.
04434775 789 */
1eacf2b3 790 if (zv->zv_flags & ZVOL_WRITTEN_TO)
04434775
MA
791 txg_wait_synced(dmu_objset_pool(zv->zv_objset), 0);
792 (void) dmu_objset_evict_dbufs(zv->zv_objset);
040dab99
CC
793}
794
795/*
796 * return the proper tag for rollback and recv
797 */
798void *
799zvol_tag(zvol_state_t *zv)
800{
801 ASSERT(RW_WRITE_HELD(&zv->zv_suspend_lock));
802 return (zv->zv_open_count > 0 ? zv : NULL);
803}
804
805/*
806 * Suspend the zvol for recv and rollback.
807 */
808zvol_state_t *
809zvol_suspend(const char *name)
810{
811 zvol_state_t *zv;
812
58404a73
BP
813 zv = zvol_find_by_name(name, RW_WRITER);
814
815 if (zv == NULL)
5559ba09 816 return (NULL);
04434775 817
040dab99 818 /* block all I/O, release in zvol_resume. */
7b98f0d9
BB
819 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
820 ASSERT(RW_WRITE_HELD(&zv->zv_suspend_lock));
040dab99
CC
821
822 atomic_inc(&zv->zv_suspend_ref);
823
824 if (zv->zv_open_count > 0)
825 zvol_shutdown_zv(zv);
5559ba09 826
58404a73
BP
827 /*
828 * do not hold zv_state_lock across suspend/resume to
829 * avoid locking up zvol lookups
830 */
5559ba09 831 mutex_exit(&zv->zv_state_lock);
58404a73
BP
832
833 /* zv_suspend_lock is released in zvol_resume() */
040dab99
CC
834 return (zv);
835}
836
837int
838zvol_resume(zvol_state_t *zv)
839{
840 int error = 0;
841
842 ASSERT(RW_WRITE_HELD(&zv->zv_suspend_lock));
2d82116e 843
58404a73
BP
844 mutex_enter(&zv->zv_state_lock);
845
040dab99
CC
846 if (zv->zv_open_count > 0) {
847 VERIFY0(dmu_objset_hold(zv->zv_name, zv, &zv->zv_objset));
848 VERIFY3P(zv->zv_objset->os_dsl_dataset->ds_owner, ==, zv);
849 VERIFY(dsl_dataset_long_held(zv->zv_objset->os_dsl_dataset));
850 dmu_objset_rele(zv->zv_objset, zv);
851
852 error = zvol_setup_zv(zv);
853 }
58404a73
BP
854
855 mutex_exit(&zv->zv_state_lock);
856
040dab99
CC
857 rw_exit(&zv->zv_suspend_lock);
858 /*
859 * We need this because we don't hold zvol_state_lock while releasing
860 * zv_suspend_lock. zvol_remove_minors_impl thus cannot check
861 * zv_suspend_lock to determine it is safe to free because rwlock is
862 * not inherent atomic.
863 */
864 atomic_dec(&zv->zv_suspend_ref);
865
866 return (SET_ERROR(error));
867}
868
5df7e9d8 869int
163a8c28 870zvol_first_open(zvol_state_t *zv, boolean_t readonly)
040dab99
CC
871{
872 objset_t *os;
77e2756d 873 int error;
07783588 874
58404a73
BP
875 ASSERT(RW_READ_HELD(&zv->zv_suspend_lock));
876 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
77e2756d 877 ASSERT(mutex_owned(&spa_namespace_lock));
58404a73 878
77e2756d 879 boolean_t ro = (readonly || (strchr(zv->zv_name, '@') != NULL));
163a8c28 880 error = dmu_objset_own(zv->zv_name, DMU_OST_ZVOL, ro, B_TRUE, zv, &os);
040dab99 881 if (error)
77e2756d 882 return (SET_ERROR(error));
040dab99
CC
883
884 zv->zv_objset = os;
885
886 error = zvol_setup_zv(zv);
040dab99 887 if (error) {
b5256303 888 dmu_objset_disown(os, 1, zv);
040dab99
CC
889 zv->zv_objset = NULL;
890 }
891
77e2756d 892 return (error);
040dab99
CC
893}
894
5df7e9d8 895void
040dab99
CC
896zvol_last_close(zvol_state_t *zv)
897{
58404a73
BP
898 ASSERT(RW_READ_HELD(&zv->zv_suspend_lock));
899 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
900
040dab99
CC
901 zvol_shutdown_zv(zv);
902
b5256303 903 dmu_objset_disown(zv->zv_objset, 1, zv);
60101509
BB
904 zv->zv_objset = NULL;
905}
906
7ac557ce
CC
907typedef struct minors_job {
908 list_t *list;
909 list_node_t link;
910 /* input */
911 char *name;
912 /* output */
913 int error;
914} minors_job_t;
915
916/*
917 * Prefetch zvol dnodes for the minors_job
918 */
919static void
920zvol_prefetch_minors_impl(void *arg)
921{
922 minors_job_t *job = arg;
923 char *dsname = job->name;
924 objset_t *os = NULL;
925
b5256303
TC
926 job->error = dmu_objset_own(dsname, DMU_OST_ZVOL, B_TRUE, B_TRUE,
927 FTAG, &os);
7ac557ce
CC
928 if (job->error == 0) {
929 dmu_prefetch(os, ZVOL_OBJ, 0, 0, 0, ZIO_PRIORITY_SYNC_READ);
b5256303 930 dmu_objset_disown(os, B_TRUE, FTAG);
7ac557ce
CC
931 }
932}
a0bd735a
BP
933
934/*
935 * Mask errors to continue dmu_objset_find() traversal
936 */
937static int
938zvol_create_snap_minor_cb(const char *dsname, void *arg)
939{
7ac557ce
CC
940 minors_job_t *j = arg;
941 list_t *minors_list = j->list;
942 const char *name = j->name;
a0bd735a 943
1ee159f4
BP
944 ASSERT0(MUTEX_HELD(&spa_namespace_lock));
945
a0bd735a
BP
946 /* skip the designated dataset */
947 if (name && strcmp(dsname, name) == 0)
948 return (0);
949
950 /* at this point, the dsname should name a snapshot */
951 if (strchr(dsname, '@') == 0) {
952 dprintf("zvol_create_snap_minor_cb(): "
e1cfd73f 953 "%s is not a snapshot name\n", dsname);
a0bd735a 954 } else {
7ac557ce 955 minors_job_t *job;
e4f5fa12 956 char *n = kmem_strdup(dsname);
7ac557ce
CC
957 if (n == NULL)
958 return (0);
959
960 job = kmem_alloc(sizeof (minors_job_t), KM_SLEEP);
961 job->name = n;
962 job->list = minors_list;
963 job->error = 0;
964 list_insert_tail(minors_list, job);
965 /* don't care if dispatch fails, because job->error is 0 */
966 taskq_dispatch(system_taskq, zvol_prefetch_minors_impl, job,
967 TQ_SLEEP);
a0bd735a
BP
968 }
969
970 return (0);
971}
972
7443299f
JL
973/*
974 * If spa_keystore_load_wkey() is called for an encrypted zvol,
975 * we need to look for any clones also using the key. This function
976 * is "best effort" - so we just skip over it if there are failures.
977 */
978static void
979zvol_add_clones(const char *dsname, list_t *minors_list)
980{
981 /* Also check if it has clones */
982 dsl_dir_t *dd = NULL;
983 dsl_pool_t *dp = NULL;
984
985 if (dsl_pool_hold(dsname, FTAG, &dp) != 0)
986 return;
987
988 if (!spa_feature_is_enabled(dp->dp_spa,
989 SPA_FEATURE_ENCRYPTION))
990 goto out;
991
992 if (dsl_dir_hold(dp, dsname, FTAG, &dd, NULL) != 0)
993 goto out;
994
995 if (dsl_dir_phys(dd)->dd_clones == 0)
996 goto out;
997
998 zap_cursor_t *zc = kmem_alloc(sizeof (zap_cursor_t), KM_SLEEP);
999 zap_attribute_t *za = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
1000 objset_t *mos = dd->dd_pool->dp_meta_objset;
1001
1002 for (zap_cursor_init(zc, mos, dsl_dir_phys(dd)->dd_clones);
1003 zap_cursor_retrieve(zc, za) == 0;
1004 zap_cursor_advance(zc)) {
1005 dsl_dataset_t *clone;
1006 minors_job_t *job;
1007
1008 if (dsl_dataset_hold_obj(dd->dd_pool,
1009 za->za_first_integer, FTAG, &clone) == 0) {
1010
1011 char name[ZFS_MAX_DATASET_NAME_LEN];
1012 dsl_dataset_name(clone, name);
1013
1014 char *n = kmem_strdup(name);
1015 job = kmem_alloc(sizeof (minors_job_t), KM_SLEEP);
1016 job->name = n;
1017 job->list = minors_list;
1018 job->error = 0;
1019 list_insert_tail(minors_list, job);
1020
1021 dsl_dataset_rele(clone, FTAG);
1022 }
1023 }
1024 zap_cursor_fini(zc);
1025 kmem_free(za, sizeof (zap_attribute_t));
1026 kmem_free(zc, sizeof (zap_cursor_t));
1027
1028out:
1029 if (dd != NULL)
1030 dsl_dir_rele(dd, FTAG);
717641ac 1031 dsl_pool_rele(dp, FTAG);
7443299f
JL
1032}
1033
a0bd735a
BP
1034/*
1035 * Mask errors to continue dmu_objset_find() traversal
1036 */
60101509 1037static int
13fe0198 1038zvol_create_minors_cb(const char *dsname, void *arg)
60101509 1039{
a0bd735a
BP
1040 uint64_t snapdev;
1041 int error;
7ac557ce 1042 list_t *minors_list = arg;
a0bd735a 1043
1ee159f4
BP
1044 ASSERT0(MUTEX_HELD(&spa_namespace_lock));
1045
a0bd735a
BP
1046 error = dsl_prop_get_integer(dsname, "snapdev", &snapdev, NULL);
1047 if (error)
1048 return (0);
1049
1050 /*
1051 * Given the name and the 'snapdev' property, create device minor nodes
1052 * with the linkages to zvols/snapshots as needed.
1053 * If the name represents a zvol, create a minor node for the zvol, then
1054 * check if its snapshots are 'visible', and if so, iterate over the
1055 * snapshots and create device minor nodes for those.
1056 */
1057 if (strchr(dsname, '@') == 0) {
7ac557ce 1058 minors_job_t *job;
e4f5fa12 1059 char *n = kmem_strdup(dsname);
7ac557ce
CC
1060 if (n == NULL)
1061 return (0);
1062
1063 job = kmem_alloc(sizeof (minors_job_t), KM_SLEEP);
1064 job->name = n;
1065 job->list = minors_list;
1066 job->error = 0;
1067 list_insert_tail(minors_list, job);
1068 /* don't care if dispatch fails, because job->error is 0 */
1069 taskq_dispatch(system_taskq, zvol_prefetch_minors_impl, job,
1070 TQ_SLEEP);
1071
7443299f
JL
1072 zvol_add_clones(dsname, minors_list);
1073
7ac557ce 1074 if (snapdev == ZFS_SNAPDEV_VISIBLE) {
a0bd735a
BP
1075 /*
1076 * traverse snapshots only, do not traverse children,
1077 * and skip the 'dsname'
1078 */
5df7e9d8 1079 error = dmu_objset_find(dsname,
7ac557ce 1080 zvol_create_snap_minor_cb, (void *)job,
a0bd735a 1081 DS_FIND_SNAPSHOTS);
a0bd735a
BP
1082 }
1083 } else {
1084 dprintf("zvol_create_minors_cb(): %s is not a zvol name\n",
02730c33 1085 dsname);
a0bd735a 1086 }
60101509 1087
d5674448 1088 return (0);
60101509
BB
1089}
1090
1091/*
a0bd735a
BP
1092 * Create minors for the specified dataset, including children and snapshots.
1093 * Pay attention to the 'snapdev' property and iterate over the snapshots
1094 * only if they are 'visible'. This approach allows one to assure that the
1095 * snapshot metadata is read from disk only if it is needed.
1096 *
1097 * The name can represent a dataset to be recursively scanned for zvols and
1098 * their snapshots, or a single zvol snapshot. If the name represents a
1099 * dataset, the scan is performed in two nested stages:
1100 * - scan the dataset for zvols, and
1101 * - for each zvol, create a minor node, then check if the zvol's snapshots
1102 * are 'visible', and only then iterate over the snapshots if needed
1103 *
4e33ba4c 1104 * If the name represents a snapshot, a check is performed if the snapshot is
a0bd735a
BP
1105 * 'visible' (which also verifies that the parent is a zvol), and if so,
1106 * a minor node for that snapshot is created.
60101509 1107 */
ec213971
MA
1108void
1109zvol_create_minors_recursive(const char *name)
60101509 1110{
7ac557ce
CC
1111 list_t minors_list;
1112 minors_job_t *job;
60101509 1113
5428dc51 1114 if (zvol_inhibit_dev)
ec213971 1115 return;
5428dc51 1116
7ac557ce
CC
1117 /*
1118 * This is the list for prefetch jobs. Whenever we found a match
1119 * during dmu_objset_find, we insert a minors_job to the list and do
1120 * taskq_dispatch to parallel prefetch zvol dnodes. Note we don't need
1121 * any lock because all list operation is done on the current thread.
1122 *
1dccfd7a 1123 * We will use this list to do zvol_os_create_minor after prefetch
7ac557ce
CC
1124 * so we don't have to traverse using dmu_objset_find again.
1125 */
1126 list_create(&minors_list, sizeof (minors_job_t),
1127 offsetof(minors_job_t, link));
1128
a0bd735a 1129
ec213971 1130 if (strchr(name, '@') != NULL) {
a0bd735a
BP
1131 uint64_t snapdev;
1132
ec213971 1133 int error = dsl_prop_get_integer(name, "snapdev",
a0bd735a
BP
1134 &snapdev, NULL);
1135
1136 if (error == 0 && snapdev == ZFS_SNAPDEV_VISIBLE)
1dccfd7a 1137 (void) zvol_os_create_minor(name);
a0bd735a 1138 } else {
ec213971
MA
1139 fstrans_cookie_t cookie = spl_fstrans_mark();
1140 (void) dmu_objset_find(name, zvol_create_minors_cb,
7ac557ce 1141 &minors_list, DS_FIND_CHILDREN);
a0bd735a
BP
1142 spl_fstrans_unmark(cookie);
1143 }
1144
7ac557ce
CC
1145 taskq_wait_outstanding(system_taskq, 0);
1146
1147 /*
1dccfd7a 1148 * Prefetch is completed, we can do zvol_os_create_minor
7ac557ce
CC
1149 * sequentially.
1150 */
1151 while ((job = list_head(&minors_list)) != NULL) {
1152 list_remove(&minors_list, job);
1153 if (!job->error)
1dccfd7a 1154 (void) zvol_os_create_minor(job->name);
e4f5fa12 1155 kmem_strfree(job->name);
7ac557ce
CC
1156 kmem_free(job, sizeof (minors_job_t));
1157 }
1158
1159 list_destroy(&minors_list);
ec213971 1160}
ba6a2402 1161
ec213971
MA
1162void
1163zvol_create_minor(const char *name)
1164{
1165 /*
1166 * Note: the dsl_pool_config_lock must not be held.
1167 * Minor node creation needs to obtain the zvol_state_lock.
1168 * zvol_open() obtains the zvol_state_lock and then the dsl pool
1169 * config lock. Therefore, we can't have the config lock now if
1170 * we are going to wait for the zvol_state_lock, because it
1171 * would be a lock order inversion which could lead to deadlock.
1172 */
1173
1174 if (zvol_inhibit_dev)
1175 return;
1176
1177 if (strchr(name, '@') != NULL) {
1178 uint64_t snapdev;
1179
1180 int error = dsl_prop_get_integer(name,
1181 "snapdev", &snapdev, NULL);
1182
1183 if (error == 0 && snapdev == ZFS_SNAPDEV_VISIBLE)
1dccfd7a 1184 (void) zvol_os_create_minor(name);
ec213971 1185 } else {
1dccfd7a 1186 (void) zvol_os_create_minor(name);
ec213971 1187 }
ba6a2402
BB
1188}
1189
1190/*
1191 * Remove minors for specified dataset including children and snapshots.
1192 */
5df7e9d8 1193
23c13c7e
AL
1194static void
1195zvol_free_task(void *arg)
1196{
1dccfd7a 1197 zvol_os_free(arg);
23c13c7e
AL
1198}
1199
5df7e9d8 1200void
a0bd735a 1201zvol_remove_minors_impl(const char *name)
ba6a2402
BB
1202{
1203 zvol_state_t *zv, *zv_next;
1204 int namelen = ((name) ? strlen(name) : 0);
99573cc0 1205 taskqid_t t;
5559ba09 1206 list_t free_list;
ba6a2402 1207
74497b7a 1208 if (zvol_inhibit_dev)
ba6a2402 1209 return;
74497b7a 1210
5559ba09
BP
1211 list_create(&free_list, sizeof (zvol_state_t),
1212 offsetof(zvol_state_t, zv_next));
1213
7b98f0d9 1214 rw_enter(&zvol_state_lock, RW_WRITER);
ba6a2402
BB
1215
1216 for (zv = list_head(&zvol_state_list); zv != NULL; zv = zv_next) {
1217 zv_next = list_next(&zvol_state_list, zv);
1218
58404a73 1219 mutex_enter(&zv->zv_state_lock);
ba6a2402
BB
1220 if (name == NULL || strcmp(zv->zv_name, name) == 0 ||
1221 (strncmp(zv->zv_name, name, namelen) == 0 &&
5428dc51
BP
1222 (zv->zv_name[namelen] == '/' ||
1223 zv->zv_name[namelen] == '@'))) {
5559ba09 1224 /*
58404a73 1225 * By holding zv_state_lock here, we guarantee that no
5559ba09
BP
1226 * one is currently using this zv
1227 */
97f8d796 1228
1229 /* If in use, leave alone */
1230 if (zv->zv_open_count > 0 ||
1231 atomic_read(&zv->zv_suspend_ref)) {
1232 mutex_exit(&zv->zv_state_lock);
1233 continue;
1234 }
1235
ba6a2402 1236 zvol_remove(zv);
899662e3 1237
58404a73 1238 /*
7b98f0d9
BB
1239 * Cleared while holding zvol_state_lock as a writer
1240 * which will prevent zvol_open() from opening it.
58404a73 1241 */
1dccfd7a 1242 zvol_os_clear_private(zv);
899662e3 1243
97f8d796 1244 /* Drop zv_state_lock before zvol_free() */
1245 mutex_exit(&zv->zv_state_lock);
1246
7b98f0d9 1247 /* Try parallel zv_free, if failed do it in place */
23c13c7e
AL
1248 t = taskq_dispatch(system_taskq, zvol_free_task, zv,
1249 TQ_SLEEP);
899662e3 1250 if (t == TASKQID_INVALID)
5559ba09 1251 list_insert_head(&free_list, zv);
58404a73
BP
1252 } else {
1253 mutex_exit(&zv->zv_state_lock);
60101509 1254 }
60101509 1255 }
7b98f0d9 1256 rw_exit(&zvol_state_lock);
5559ba09 1257
7b98f0d9 1258 /* Drop zvol_state_lock before calling zvol_free() */
5559ba09
BP
1259 while ((zv = list_head(&free_list)) != NULL) {
1260 list_remove(&free_list, zv);
1dccfd7a 1261 zvol_os_free(zv);
5559ba09 1262 }
60101509
BB
1263}
1264
cf8738d8 1265/* Remove minor for this specific volume only */
a0bd735a
BP
1266static void
1267zvol_remove_minor_impl(const char *name)
1268{
92aceb2a 1269 zvol_state_t *zv = NULL, *zv_next;
a0bd735a
BP
1270
1271 if (zvol_inhibit_dev)
1272 return;
1273
7b98f0d9 1274 rw_enter(&zvol_state_lock, RW_WRITER);
a0bd735a
BP
1275
1276 for (zv = list_head(&zvol_state_list); zv != NULL; zv = zv_next) {
1277 zv_next = list_next(&zvol_state_list, zv);
1278
58404a73 1279 mutex_enter(&zv->zv_state_lock);
a0bd735a 1280 if (strcmp(zv->zv_name, name) == 0) {
5559ba09 1281 /*
58404a73 1282 * By holding zv_state_lock here, we guarantee that no
5559ba09
BP
1283 * one is currently using this zv
1284 */
97f8d796 1285
1286 /* If in use, leave alone */
1287 if (zv->zv_open_count > 0 ||
1288 atomic_read(&zv->zv_suspend_ref)) {
1289 mutex_exit(&zv->zv_state_lock);
1290 continue;
1291 }
a0bd735a 1292 zvol_remove(zv);
97f8d796 1293
1dccfd7a 1294 zvol_os_clear_private(zv);
97f8d796 1295 mutex_exit(&zv->zv_state_lock);
a0bd735a 1296 break;
58404a73
BP
1297 } else {
1298 mutex_exit(&zv->zv_state_lock);
a0bd735a
BP
1299 }
1300 }
1301
92aceb2a 1302 /* Drop zvol_state_lock before calling zvol_free() */
7b98f0d9 1303 rw_exit(&zvol_state_lock);
5559ba09 1304
92aceb2a 1305 if (zv != NULL)
1dccfd7a 1306 zvol_os_free(zv);
a0bd735a
BP
1307}
1308
60101509 1309/*
ba6a2402 1310 * Rename minors for specified dataset including children and snapshots.
60101509 1311 */
a0bd735a
BP
1312static void
1313zvol_rename_minors_impl(const char *oldname, const char *newname)
60101509
BB
1314{
1315 zvol_state_t *zv, *zv_next;
7c2eb1c8 1316 int oldnamelen;
60101509 1317
74497b7a
DH
1318 if (zvol_inhibit_dev)
1319 return;
1320
ba6a2402 1321 oldnamelen = strlen(oldname);
60101509 1322
7b98f0d9 1323 rw_enter(&zvol_state_lock, RW_READER);
ba6a2402 1324
60101509
BB
1325 for (zv = list_head(&zvol_state_list); zv != NULL; zv = zv_next) {
1326 zv_next = list_next(&zvol_state_list, zv);
1327
58404a73
BP
1328 mutex_enter(&zv->zv_state_lock);
1329
ba6a2402 1330 if (strcmp(zv->zv_name, oldname) == 0) {
1dccfd7a 1331 zvol_os_rename_minor(zv, newname);
ba6a2402
BB
1332 } else if (strncmp(zv->zv_name, oldname, oldnamelen) == 0 &&
1333 (zv->zv_name[oldnamelen] == '/' ||
1334 zv->zv_name[oldnamelen] == '@')) {
682ce104 1335 char *name = kmem_asprintf("%s%c%s", newname,
ba6a2402
BB
1336 zv->zv_name[oldnamelen],
1337 zv->zv_name + oldnamelen + 1);
1dccfd7a 1338 zvol_os_rename_minor(zv, name);
e4f5fa12 1339 kmem_strfree(name);
60101509 1340 }
58404a73
BP
1341
1342 mutex_exit(&zv->zv_state_lock);
60101509 1343 }
ba6a2402 1344
7b98f0d9 1345 rw_exit(&zvol_state_lock);
60101509
BB
1346}
1347
a0bd735a
BP
1348typedef struct zvol_snapdev_cb_arg {
1349 uint64_t snapdev;
1350} zvol_snapdev_cb_arg_t;
1351
0b4d1b58 1352static int
4ea3f864
GM
1353zvol_set_snapdev_cb(const char *dsname, void *param)
1354{
a0bd735a 1355 zvol_snapdev_cb_arg_t *arg = param;
0b4d1b58
ED
1356
1357 if (strchr(dsname, '@') == NULL)
ba6a2402 1358 return (0);
0b4d1b58 1359
a0bd735a 1360 switch (arg->snapdev) {
0b4d1b58 1361 case ZFS_SNAPDEV_VISIBLE:
1dccfd7a 1362 (void) zvol_os_create_minor(dsname);
0b4d1b58
ED
1363 break;
1364 case ZFS_SNAPDEV_HIDDEN:
a0bd735a 1365 (void) zvol_remove_minor_impl(dsname);
0b4d1b58
ED
1366 break;
1367 }
ba6a2402
BB
1368
1369 return (0);
0b4d1b58
ED
1370}
1371
a0bd735a
BP
1372static void
1373zvol_set_snapdev_impl(char *name, uint64_t snapdev)
1374{
1375 zvol_snapdev_cb_arg_t arg = {snapdev};
1376 fstrans_cookie_t cookie = spl_fstrans_mark();
1377 /*
1378 * The zvol_set_snapdev_sync() sets snapdev appropriately
1379 * in the dataset hierarchy. Here, we only scan snapshots.
1380 */
1381 dmu_objset_find(name, zvol_set_snapdev_cb, &arg, DS_FIND_SNAPSHOTS);
1382 spl_fstrans_unmark(cookie);
1383}
1384
cf8738d8 1385static void
1386zvol_set_volmode_impl(char *name, uint64_t volmode)
1387{
0ca45cb3
MM
1388 fstrans_cookie_t cookie;
1389 uint64_t old_volmode;
1390 zvol_state_t *zv;
cf8738d8 1391
1392 if (strchr(name, '@') != NULL)
1393 return;
1394
1395 /*
1396 * It's unfortunate we need to remove minors before we create new ones:
1397 * this is necessary because our backing gendisk (zvol_state->zv_disk)
ec213971 1398 * could be different when we set, for instance, volmode from "geom"
cf8738d8 1399 * to "dev" (or vice versa).
cf8738d8 1400 */
0ca45cb3
MM
1401 zv = zvol_find_by_name(name, RW_NONE);
1402 if (zv == NULL && volmode == ZFS_VOLMODE_NONE)
1403 return;
1404 if (zv != NULL) {
1405 old_volmode = zv->zv_volmode;
1406 mutex_exit(&zv->zv_state_lock);
1407 if (old_volmode == volmode)
1408 return;
1409 zvol_wait_close(zv);
1410 }
1411 cookie = spl_fstrans_mark();
cf8738d8 1412 switch (volmode) {
1413 case ZFS_VOLMODE_NONE:
1414 (void) zvol_remove_minor_impl(name);
1415 break;
1416 case ZFS_VOLMODE_GEOM:
1417 case ZFS_VOLMODE_DEV:
1418 (void) zvol_remove_minor_impl(name);
1dccfd7a 1419 (void) zvol_os_create_minor(name);
cf8738d8 1420 break;
1421 case ZFS_VOLMODE_DEFAULT:
1422 (void) zvol_remove_minor_impl(name);
1423 if (zvol_volmode == ZFS_VOLMODE_NONE)
1424 break;
1425 else /* if zvol_volmode is invalid defaults to "geom" */
1dccfd7a 1426 (void) zvol_os_create_minor(name);
cf8738d8 1427 break;
1428 }
cf8738d8 1429 spl_fstrans_unmark(cookie);
1430}
1431
a0bd735a
BP
1432static zvol_task_t *
1433zvol_task_alloc(zvol_async_op_t op, const char *name1, const char *name2,
cf8738d8 1434 uint64_t value)
a0bd735a
BP
1435{
1436 zvol_task_t *task;
a0bd735a
BP
1437
1438 /* Never allow tasks on hidden names. */
1439 if (name1[0] == '$')
1440 return (NULL);
1441
1442 task = kmem_zalloc(sizeof (zvol_task_t), KM_SLEEP);
1443 task->op = op;
cf8738d8 1444 task->value = value;
a0bd735a
BP
1445
1446 strlcpy(task->name1, name1, MAXNAMELEN);
1447 if (name2 != NULL)
1448 strlcpy(task->name2, name2, MAXNAMELEN);
1449
1450 return (task);
1451}
1452
1453static void
1454zvol_task_free(zvol_task_t *task)
1455{
1456 kmem_free(task, sizeof (zvol_task_t));
1457}
1458
1459/*
1460 * The worker thread function performed asynchronously.
1461 */
1462static void
ec213971 1463zvol_task_cb(void *arg)
a0bd735a 1464{
ec213971 1465 zvol_task_t *task = arg;
a0bd735a
BP
1466
1467 switch (task->op) {
a0bd735a
BP
1468 case ZVOL_ASYNC_REMOVE_MINORS:
1469 zvol_remove_minors_impl(task->name1);
1470 break;
1471 case ZVOL_ASYNC_RENAME_MINORS:
1472 zvol_rename_minors_impl(task->name1, task->name2);
1473 break;
1474 case ZVOL_ASYNC_SET_SNAPDEV:
cf8738d8 1475 zvol_set_snapdev_impl(task->name1, task->value);
1476 break;
1477 case ZVOL_ASYNC_SET_VOLMODE:
1478 zvol_set_volmode_impl(task->name1, task->value);
a0bd735a
BP
1479 break;
1480 default:
1481 VERIFY(0);
1482 break;
1483 }
1484
1485 zvol_task_free(task);
1486}
1487
cf8738d8 1488typedef struct zvol_set_prop_int_arg {
a0bd735a
BP
1489 const char *zsda_name;
1490 uint64_t zsda_value;
1491 zprop_source_t zsda_source;
1492 dmu_tx_t *zsda_tx;
cf8738d8 1493} zvol_set_prop_int_arg_t;
a0bd735a
BP
1494
1495/*
1496 * Sanity check the dataset for safe use by the sync task. No additional
1497 * conditions are imposed.
1498 */
1499static int
1500zvol_set_snapdev_check(void *arg, dmu_tx_t *tx)
1501{
cf8738d8 1502 zvol_set_prop_int_arg_t *zsda = arg;
a0bd735a
BP
1503 dsl_pool_t *dp = dmu_tx_pool(tx);
1504 dsl_dir_t *dd;
1505 int error;
1506
1507 error = dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL);
1508 if (error != 0)
1509 return (error);
1510
1511 dsl_dir_rele(dd, FTAG);
1512
1513 return (error);
1514}
1515
1516static int
1517zvol_set_snapdev_sync_cb(dsl_pool_t *dp, dsl_dataset_t *ds, void *arg)
1518{
ef70eff1 1519 (void) arg;
a0bd735a
BP
1520 char dsname[MAXNAMELEN];
1521 zvol_task_t *task;
92aceb2a 1522 uint64_t snapdev;
a0bd735a
BP
1523
1524 dsl_dataset_name(ds, dsname);
92aceb2a 1525 if (dsl_prop_get_int_ds(ds, "snapdev", &snapdev) != 0)
1526 return (0);
1527 task = zvol_task_alloc(ZVOL_ASYNC_SET_SNAPDEV, dsname, NULL, snapdev);
a0bd735a
BP
1528 if (task == NULL)
1529 return (0);
1530
1531 (void) taskq_dispatch(dp->dp_spa->spa_zvol_taskq, zvol_task_cb,
02730c33 1532 task, TQ_SLEEP);
a0bd735a
BP
1533 return (0);
1534}
1535
1536/*
92aceb2a 1537 * Traverse all child datasets and apply snapdev appropriately.
1538 * We call dsl_prop_set_sync_impl() here to set the value only on the toplevel
1539 * dataset and read the effective "snapdev" on every child in the callback
1540 * function: this is because the value is not guaranteed to be the same in the
1541 * whole dataset hierarchy.
a0bd735a
BP
1542 */
1543static void
1544zvol_set_snapdev_sync(void *arg, dmu_tx_t *tx)
1545{
cf8738d8 1546 zvol_set_prop_int_arg_t *zsda = arg;
a0bd735a
BP
1547 dsl_pool_t *dp = dmu_tx_pool(tx);
1548 dsl_dir_t *dd;
92aceb2a 1549 dsl_dataset_t *ds;
1550 int error;
a0bd735a
BP
1551
1552 VERIFY0(dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL));
1553 zsda->zsda_tx = tx;
1554
92aceb2a 1555 error = dsl_dataset_hold(dp, zsda->zsda_name, FTAG, &ds);
1556 if (error == 0) {
1557 dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_SNAPDEV),
1558 zsda->zsda_source, sizeof (zsda->zsda_value), 1,
1559 &zsda->zsda_value, zsda->zsda_tx);
1560 dsl_dataset_rele(ds, FTAG);
1561 }
a0bd735a
BP
1562 dmu_objset_find_dp(dp, dd->dd_object, zvol_set_snapdev_sync_cb,
1563 zsda, DS_FIND_CHILDREN);
1564
1565 dsl_dir_rele(dd, FTAG);
1566}
1567
0b4d1b58 1568int
a0bd735a
BP
1569zvol_set_snapdev(const char *ddname, zprop_source_t source, uint64_t snapdev)
1570{
cf8738d8 1571 zvol_set_prop_int_arg_t zsda;
5428dc51 1572
a0bd735a
BP
1573 zsda.zsda_name = ddname;
1574 zsda.zsda_source = source;
1575 zsda.zsda_value = snapdev;
5428dc51 1576
a0bd735a
BP
1577 return (dsl_sync_task(ddname, zvol_set_snapdev_check,
1578 zvol_set_snapdev_sync, &zsda, 0, ZFS_SPACE_CHECK_NONE));
1579}
1580
cf8738d8 1581/*
1582 * Sanity check the dataset for safe use by the sync task. No additional
1583 * conditions are imposed.
1584 */
1585static int
1586zvol_set_volmode_check(void *arg, dmu_tx_t *tx)
1587{
1588 zvol_set_prop_int_arg_t *zsda = arg;
1589 dsl_pool_t *dp = dmu_tx_pool(tx);
1590 dsl_dir_t *dd;
1591 int error;
1592
1593 error = dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL);
1594 if (error != 0)
1595 return (error);
1596
1597 dsl_dir_rele(dd, FTAG);
1598
1599 return (error);
1600}
1601
cf8738d8 1602static int
1603zvol_set_volmode_sync_cb(dsl_pool_t *dp, dsl_dataset_t *ds, void *arg)
1604{
ef70eff1 1605 (void) arg;
cf8738d8 1606 char dsname[MAXNAMELEN];
1607 zvol_task_t *task;
1608 uint64_t volmode;
1609
1610 dsl_dataset_name(ds, dsname);
1611 if (dsl_prop_get_int_ds(ds, "volmode", &volmode) != 0)
1612 return (0);
1613 task = zvol_task_alloc(ZVOL_ASYNC_SET_VOLMODE, dsname, NULL, volmode);
1614 if (task == NULL)
1615 return (0);
1616
1617 (void) taskq_dispatch(dp->dp_spa->spa_zvol_taskq, zvol_task_cb,
1618 task, TQ_SLEEP);
1619 return (0);
1620}
1621
1622/*
1623 * Traverse all child datasets and apply volmode appropriately.
1624 * We call dsl_prop_set_sync_impl() here to set the value only on the toplevel
1625 * dataset and read the effective "volmode" on every child in the callback
1626 * function: this is because the value is not guaranteed to be the same in the
1627 * whole dataset hierarchy.
1628 */
1629static void
1630zvol_set_volmode_sync(void *arg, dmu_tx_t *tx)
1631{
1632 zvol_set_prop_int_arg_t *zsda = arg;
1633 dsl_pool_t *dp = dmu_tx_pool(tx);
1634 dsl_dir_t *dd;
1635 dsl_dataset_t *ds;
1636 int error;
1637
1638 VERIFY0(dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL));
1639 zsda->zsda_tx = tx;
1640
1641 error = dsl_dataset_hold(dp, zsda->zsda_name, FTAG, &ds);
1642 if (error == 0) {
1643 dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_VOLMODE),
1644 zsda->zsda_source, sizeof (zsda->zsda_value), 1,
1645 &zsda->zsda_value, zsda->zsda_tx);
1646 dsl_dataset_rele(ds, FTAG);
1647 }
1648
1649 dmu_objset_find_dp(dp, dd->dd_object, zvol_set_volmode_sync_cb,
1650 zsda, DS_FIND_CHILDREN);
1651
1652 dsl_dir_rele(dd, FTAG);
1653}
1654
1655int
1656zvol_set_volmode(const char *ddname, zprop_source_t source, uint64_t volmode)
1657{
1658 zvol_set_prop_int_arg_t zsda;
1659
1660 zsda.zsda_name = ddname;
1661 zsda.zsda_source = source;
1662 zsda.zsda_value = volmode;
1663
1664 return (dsl_sync_task(ddname, zvol_set_volmode_check,
1665 zvol_set_volmode_sync, &zsda, 0, ZFS_SPACE_CHECK_NONE));
1666}
1667
a0bd735a
BP
1668void
1669zvol_remove_minors(spa_t *spa, const char *name, boolean_t async)
1670{
1671 zvol_task_t *task;
1672 taskqid_t id;
1673
1674 task = zvol_task_alloc(ZVOL_ASYNC_REMOVE_MINORS, name, NULL, ~0ULL);
1675 if (task == NULL)
1676 return;
5428dc51 1677
a0bd735a 1678 id = taskq_dispatch(spa->spa_zvol_taskq, zvol_task_cb, task, TQ_SLEEP);
48d3eb40 1679 if ((async == B_FALSE) && (id != TASKQID_INVALID))
a0bd735a
BP
1680 taskq_wait_id(spa->spa_zvol_taskq, id);
1681}
1682
1683void
1684zvol_rename_minors(spa_t *spa, const char *name1, const char *name2,
1685 boolean_t async)
1686{
1687 zvol_task_t *task;
1688 taskqid_t id;
1689
1690 task = zvol_task_alloc(ZVOL_ASYNC_RENAME_MINORS, name1, name2, ~0ULL);
1691 if (task == NULL)
1692 return;
1693
1694 id = taskq_dispatch(spa->spa_zvol_taskq, zvol_task_cb, task, TQ_SLEEP);
48d3eb40 1695 if ((async == B_FALSE) && (id != TASKQID_INVALID))
a0bd735a 1696 taskq_wait_id(spa->spa_zvol_taskq, id);
0b4d1b58
ED
1697}
1698
5df7e9d8
MM
1699boolean_t
1700zvol_is_zvol(const char *name)
1701{
1702
1dccfd7a 1703 return (zvol_os_is_zvol(name));
5df7e9d8
MM
1704}
1705
60101509 1706int
5df7e9d8 1707zvol_init_impl(void)
60101509 1708{
5df7e9d8 1709 int i;
60101509 1710
2a3871d4 1711 list_create(&zvol_state_list, sizeof (zvol_state_t),
ce37ebd2 1712 offsetof(zvol_state_t, zv_next));
7b98f0d9 1713 rw_init(&zvol_state_lock, NULL, RW_DEFAULT, NULL);
692e55b8 1714
d45e010d
CC
1715 zvol_htable = kmem_alloc(ZVOL_HT_SIZE * sizeof (struct hlist_head),
1716 KM_SLEEP);
d45e010d
CC
1717 for (i = 0; i < ZVOL_HT_SIZE; i++)
1718 INIT_HLIST_HEAD(&zvol_htable[i]);
1719
60101509
BB
1720 return (0);
1721}
1722
1723void
5df7e9d8 1724zvol_fini_impl(void)
60101509 1725{
c392c5ae
MM
1726 zvol_remove_minors_impl(NULL);
1727
1728 /*
1729 * The call to "zvol_remove_minors_impl" may dispatch entries to
dd4bc569 1730 * the system_taskq, but it doesn't wait for those entries to
c392c5ae
MM
1731 * complete before it returns. Thus, we must wait for all of the
1732 * removals to finish, before we can continue.
1733 */
1734 taskq_wait_outstanding(system_taskq, 0);
1735
d45e010d 1736 kmem_free(zvol_htable, ZVOL_HT_SIZE * sizeof (struct hlist_head));
60101509 1737 list_destroy(&zvol_state_list);
7b98f0d9 1738 rw_destroy(&zvol_state_lock);
60101509 1739}