]> granicus.if.org Git - zfs/blob - module/zfs/dsl_pool.c
OpenZFS 8026 - retire zfs_throttle_delay and zfs_throttle_resolution
[zfs] / module / zfs / dsl_pool.c
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
9  * or http://www.opensolaris.org/os/licensing.
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) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright (c) 2011, 2017 by Delphix. All rights reserved.
24  * Copyright (c) 2013 Steven Hartland. All rights reserved.
25  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
26  * Copyright 2016 Nexenta Systems, Inc.  All rights reserved.
27  */
28
29 #include <sys/dsl_pool.h>
30 #include <sys/dsl_dataset.h>
31 #include <sys/dsl_prop.h>
32 #include <sys/dsl_dir.h>
33 #include <sys/dsl_synctask.h>
34 #include <sys/dsl_scan.h>
35 #include <sys/dnode.h>
36 #include <sys/dmu_tx.h>
37 #include <sys/dmu_objset.h>
38 #include <sys/arc.h>
39 #include <sys/zap.h>
40 #include <sys/zio.h>
41 #include <sys/zfs_context.h>
42 #include <sys/fs/zfs.h>
43 #include <sys/zfs_znode.h>
44 #include <sys/spa_impl.h>
45 #include <sys/dsl_deadlist.h>
46 #include <sys/bptree.h>
47 #include <sys/zfeature.h>
48 #include <sys/zil_impl.h>
49 #include <sys/dsl_userhold.h>
50 #include <sys/trace_txg.h>
51
52 /*
53  * ZFS Write Throttle
54  * ------------------
55  *
56  * ZFS must limit the rate of incoming writes to the rate at which it is able
57  * to sync data modifications to the backend storage. Throttling by too much
58  * creates an artificial limit; throttling by too little can only be sustained
59  * for short periods and would lead to highly lumpy performance. On a per-pool
60  * basis, ZFS tracks the amount of modified (dirty) data. As operations change
61  * data, the amount of dirty data increases; as ZFS syncs out data, the amount
62  * of dirty data decreases. When the amount of dirty data exceeds a
63  * predetermined threshold further modifications are blocked until the amount
64  * of dirty data decreases (as data is synced out).
65  *
66  * The limit on dirty data is tunable, and should be adjusted according to
67  * both the IO capacity and available memory of the system. The larger the
68  * window, the more ZFS is able to aggregate and amortize metadata (and data)
69  * changes. However, memory is a limited resource, and allowing for more dirty
70  * data comes at the cost of keeping other useful data in memory (for example
71  * ZFS data cached by the ARC).
72  *
73  * Implementation
74  *
75  * As buffers are modified dsl_pool_willuse_space() increments both the per-
76  * txg (dp_dirty_pertxg[]) and poolwide (dp_dirty_total) accounting of
77  * dirty space used; dsl_pool_dirty_space() decrements those values as data
78  * is synced out from dsl_pool_sync(). While only the poolwide value is
79  * relevant, the per-txg value is useful for debugging. The tunable
80  * zfs_dirty_data_max determines the dirty space limit. Once that value is
81  * exceeded, new writes are halted until space frees up.
82  *
83  * The zfs_dirty_data_sync tunable dictates the threshold at which we
84  * ensure that there is a txg syncing (see the comment in txg.c for a full
85  * description of transaction group stages).
86  *
87  * The IO scheduler uses both the dirty space limit and current amount of
88  * dirty data as inputs. Those values affect the number of concurrent IOs ZFS
89  * issues. See the comment in vdev_queue.c for details of the IO scheduler.
90  *
91  * The delay is also calculated based on the amount of dirty data.  See the
92  * comment above dmu_tx_delay() for details.
93  */
94
95 /*
96  * zfs_dirty_data_max will be set to zfs_dirty_data_max_percent% of all memory,
97  * capped at zfs_dirty_data_max_max.  It can also be overridden with a module
98  * parameter.
99  */
100 unsigned long zfs_dirty_data_max = 0;
101 unsigned long zfs_dirty_data_max_max = 0;
102 int zfs_dirty_data_max_percent = 10;
103 int zfs_dirty_data_max_max_percent = 25;
104
105 /*
106  * If there is at least this much dirty data, push out a txg.
107  */
108 unsigned long zfs_dirty_data_sync = 64 * 1024 * 1024;
109
110 /*
111  * Once there is this amount of dirty data, the dmu_tx_delay() will kick in
112  * and delay each transaction.
113  * This value should be >= zfs_vdev_async_write_active_max_dirty_percent.
114  */
115 int zfs_delay_min_dirty_percent = 60;
116
117 /*
118  * This controls how quickly the delay approaches infinity.
119  * Larger values cause it to delay more for a given amount of dirty data.
120  * Therefore larger values will cause there to be less dirty data for a
121  * given throughput.
122  *
123  * For the smoothest delay, this value should be about 1 billion divided
124  * by the maximum number of operations per second.  This will smoothly
125  * handle between 10x and 1/10th this number.
126  *
127  * Note: zfs_delay_scale * zfs_dirty_data_max must be < 2^64, due to the
128  * multiply in dmu_tx_delay().
129  */
130 unsigned long zfs_delay_scale = 1000 * 1000 * 1000 / 2000;
131
132 /*
133  * This determines the number of threads used by the dp_sync_taskq.
134  */
135 int zfs_sync_taskq_batch_pct = 75;
136
137 int
138 dsl_pool_open_special_dir(dsl_pool_t *dp, const char *name, dsl_dir_t **ddp)
139 {
140         uint64_t obj;
141         int err;
142
143         err = zap_lookup(dp->dp_meta_objset,
144             dsl_dir_phys(dp->dp_root_dir)->dd_child_dir_zapobj,
145             name, sizeof (obj), 1, &obj);
146         if (err)
147                 return (err);
148
149         return (dsl_dir_hold_obj(dp, obj, name, dp, ddp));
150 }
151
152 static dsl_pool_t *
153 dsl_pool_open_impl(spa_t *spa, uint64_t txg)
154 {
155         dsl_pool_t *dp;
156         blkptr_t *bp = spa_get_rootblkptr(spa);
157
158         dp = kmem_zalloc(sizeof (dsl_pool_t), KM_SLEEP);
159         dp->dp_spa = spa;
160         dp->dp_meta_rootbp = *bp;
161         rrw_init(&dp->dp_config_rwlock, B_TRUE);
162         txg_init(dp, txg);
163
164         txg_list_create(&dp->dp_dirty_datasets,
165             offsetof(dsl_dataset_t, ds_dirty_link));
166         txg_list_create(&dp->dp_dirty_zilogs,
167             offsetof(zilog_t, zl_dirty_link));
168         txg_list_create(&dp->dp_dirty_dirs,
169             offsetof(dsl_dir_t, dd_dirty_link));
170         txg_list_create(&dp->dp_sync_tasks,
171             offsetof(dsl_sync_task_t, dst_node));
172
173         dp->dp_sync_taskq = taskq_create("dp_sync_taskq",
174             zfs_sync_taskq_batch_pct, minclsyspri, 1, INT_MAX,
175             TASKQ_THREADS_CPU_PCT);
176
177         mutex_init(&dp->dp_lock, NULL, MUTEX_DEFAULT, NULL);
178         cv_init(&dp->dp_spaceavail_cv, NULL, CV_DEFAULT, NULL);
179
180         dp->dp_iput_taskq = taskq_create("z_iput", max_ncpus, defclsyspri,
181             max_ncpus * 8, INT_MAX, TASKQ_PREPOPULATE | TASKQ_DYNAMIC);
182
183         return (dp);
184 }
185
186 int
187 dsl_pool_init(spa_t *spa, uint64_t txg, dsl_pool_t **dpp)
188 {
189         int err;
190         dsl_pool_t *dp = dsl_pool_open_impl(spa, txg);
191
192         /*
193          * Initialize the caller's dsl_pool_t structure before we actually open
194          * the meta objset.  This is done because a self-healing write zio may
195          * be issued as part of dmu_objset_open_impl() and the spa needs its
196          * dsl_pool_t initialized in order to handle the write.
197          */
198         *dpp = dp;
199
200         err = dmu_objset_open_impl(spa, NULL, &dp->dp_meta_rootbp,
201             &dp->dp_meta_objset);
202         if (err != 0) {
203                 dsl_pool_close(dp);
204                 *dpp = NULL;
205         }
206
207         return (err);
208 }
209
210 int
211 dsl_pool_open(dsl_pool_t *dp)
212 {
213         int err;
214         dsl_dir_t *dd;
215         dsl_dataset_t *ds;
216         uint64_t obj;
217
218         rrw_enter(&dp->dp_config_rwlock, RW_WRITER, FTAG);
219         err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
220             DMU_POOL_ROOT_DATASET, sizeof (uint64_t), 1,
221             &dp->dp_root_dir_obj);
222         if (err)
223                 goto out;
224
225         err = dsl_dir_hold_obj(dp, dp->dp_root_dir_obj,
226             NULL, dp, &dp->dp_root_dir);
227         if (err)
228                 goto out;
229
230         err = dsl_pool_open_special_dir(dp, MOS_DIR_NAME, &dp->dp_mos_dir);
231         if (err)
232                 goto out;
233
234         if (spa_version(dp->dp_spa) >= SPA_VERSION_ORIGIN) {
235                 err = dsl_pool_open_special_dir(dp, ORIGIN_DIR_NAME, &dd);
236                 if (err)
237                         goto out;
238                 err = dsl_dataset_hold_obj(dp,
239                     dsl_dir_phys(dd)->dd_head_dataset_obj, FTAG, &ds);
240                 if (err == 0) {
241                         err = dsl_dataset_hold_obj(dp,
242                             dsl_dataset_phys(ds)->ds_prev_snap_obj, dp,
243                             &dp->dp_origin_snap);
244                         dsl_dataset_rele(ds, FTAG);
245                 }
246                 dsl_dir_rele(dd, dp);
247                 if (err)
248                         goto out;
249         }
250
251         if (spa_version(dp->dp_spa) >= SPA_VERSION_DEADLISTS) {
252                 err = dsl_pool_open_special_dir(dp, FREE_DIR_NAME,
253                     &dp->dp_free_dir);
254                 if (err)
255                         goto out;
256
257                 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
258                     DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj);
259                 if (err)
260                         goto out;
261                 VERIFY0(bpobj_open(&dp->dp_free_bpobj,
262                     dp->dp_meta_objset, obj));
263         }
264
265         /*
266          * Note: errors ignored, because the leak dir will not exist if we
267          * have not encountered a leak yet.
268          */
269         (void) dsl_pool_open_special_dir(dp, LEAK_DIR_NAME,
270             &dp->dp_leak_dir);
271
272         if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_ASYNC_DESTROY)) {
273                 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
274                     DMU_POOL_BPTREE_OBJ, sizeof (uint64_t), 1,
275                     &dp->dp_bptree_obj);
276                 if (err != 0)
277                         goto out;
278         }
279
280         if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_EMPTY_BPOBJ)) {
281                 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
282                     DMU_POOL_EMPTY_BPOBJ, sizeof (uint64_t), 1,
283                     &dp->dp_empty_bpobj);
284                 if (err != 0)
285                         goto out;
286         }
287
288         err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
289             DMU_POOL_TMP_USERREFS, sizeof (uint64_t), 1,
290             &dp->dp_tmp_userrefs_obj);
291         if (err == ENOENT)
292                 err = 0;
293         if (err)
294                 goto out;
295
296         err = dsl_scan_init(dp, dp->dp_tx.tx_open_txg);
297
298 out:
299         rrw_exit(&dp->dp_config_rwlock, FTAG);
300         return (err);
301 }
302
303 void
304 dsl_pool_close(dsl_pool_t *dp)
305 {
306         /*
307          * Drop our references from dsl_pool_open().
308          *
309          * Since we held the origin_snap from "syncing" context (which
310          * includes pool-opening context), it actually only got a "ref"
311          * and not a hold, so just drop that here.
312          */
313         if (dp->dp_origin_snap)
314                 dsl_dataset_rele(dp->dp_origin_snap, dp);
315         if (dp->dp_mos_dir)
316                 dsl_dir_rele(dp->dp_mos_dir, dp);
317         if (dp->dp_free_dir)
318                 dsl_dir_rele(dp->dp_free_dir, dp);
319         if (dp->dp_leak_dir)
320                 dsl_dir_rele(dp->dp_leak_dir, dp);
321         if (dp->dp_root_dir)
322                 dsl_dir_rele(dp->dp_root_dir, dp);
323
324         bpobj_close(&dp->dp_free_bpobj);
325
326         /* undo the dmu_objset_open_impl(mos) from dsl_pool_open() */
327         if (dp->dp_meta_objset)
328                 dmu_objset_evict(dp->dp_meta_objset);
329
330         txg_list_destroy(&dp->dp_dirty_datasets);
331         txg_list_destroy(&dp->dp_dirty_zilogs);
332         txg_list_destroy(&dp->dp_sync_tasks);
333         txg_list_destroy(&dp->dp_dirty_dirs);
334
335         taskq_destroy(dp->dp_sync_taskq);
336
337         /*
338          * We can't set retry to TRUE since we're explicitly specifying
339          * a spa to flush. This is good enough; any missed buffers for
340          * this spa won't cause trouble, and they'll eventually fall
341          * out of the ARC just like any other unused buffer.
342          */
343         arc_flush(dp->dp_spa, FALSE);
344
345         txg_fini(dp);
346         dsl_scan_fini(dp);
347         dmu_buf_user_evict_wait();
348
349         rrw_destroy(&dp->dp_config_rwlock);
350         mutex_destroy(&dp->dp_lock);
351         taskq_destroy(dp->dp_iput_taskq);
352         if (dp->dp_blkstats)
353                 vmem_free(dp->dp_blkstats, sizeof (zfs_all_blkstats_t));
354         kmem_free(dp, sizeof (dsl_pool_t));
355 }
356
357 dsl_pool_t *
358 dsl_pool_create(spa_t *spa, nvlist_t *zplprops, uint64_t txg)
359 {
360         int err;
361         dsl_pool_t *dp = dsl_pool_open_impl(spa, txg);
362         dmu_tx_t *tx = dmu_tx_create_assigned(dp, txg);
363         objset_t *os;
364         dsl_dataset_t *ds;
365         uint64_t obj;
366
367         rrw_enter(&dp->dp_config_rwlock, RW_WRITER, FTAG);
368
369         /* create and open the MOS (meta-objset) */
370         dp->dp_meta_objset = dmu_objset_create_impl(spa,
371             NULL, &dp->dp_meta_rootbp, DMU_OST_META, tx);
372
373         /* create the pool directory */
374         err = zap_create_claim(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
375             DMU_OT_OBJECT_DIRECTORY, DMU_OT_NONE, 0, tx);
376         ASSERT0(err);
377
378         /* Initialize scan structures */
379         VERIFY0(dsl_scan_init(dp, txg));
380
381         /* create and open the root dir */
382         dp->dp_root_dir_obj = dsl_dir_create_sync(dp, NULL, NULL, tx);
383         VERIFY0(dsl_dir_hold_obj(dp, dp->dp_root_dir_obj,
384             NULL, dp, &dp->dp_root_dir));
385
386         /* create and open the meta-objset dir */
387         (void) dsl_dir_create_sync(dp, dp->dp_root_dir, MOS_DIR_NAME, tx);
388         VERIFY0(dsl_pool_open_special_dir(dp,
389             MOS_DIR_NAME, &dp->dp_mos_dir));
390
391         if (spa_version(spa) >= SPA_VERSION_DEADLISTS) {
392                 /* create and open the free dir */
393                 (void) dsl_dir_create_sync(dp, dp->dp_root_dir,
394                     FREE_DIR_NAME, tx);
395                 VERIFY0(dsl_pool_open_special_dir(dp,
396                     FREE_DIR_NAME, &dp->dp_free_dir));
397
398                 /* create and open the free_bplist */
399                 obj = bpobj_alloc(dp->dp_meta_objset, SPA_OLD_MAXBLOCKSIZE, tx);
400                 VERIFY(zap_add(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
401                     DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj, tx) == 0);
402                 VERIFY0(bpobj_open(&dp->dp_free_bpobj,
403                     dp->dp_meta_objset, obj));
404         }
405
406         if (spa_version(spa) >= SPA_VERSION_DSL_SCRUB)
407                 dsl_pool_create_origin(dp, tx);
408
409         /* create the root dataset */
410         obj = dsl_dataset_create_sync_dd(dp->dp_root_dir, NULL, 0, tx);
411
412         /* create the root objset */
413         VERIFY0(dsl_dataset_hold_obj(dp, obj, FTAG, &ds));
414         rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
415         VERIFY(NULL != (os = dmu_objset_create_impl(dp->dp_spa, ds,
416             dsl_dataset_get_blkptr(ds), DMU_OST_ZFS, tx)));
417         rrw_exit(&ds->ds_bp_rwlock, FTAG);
418 #ifdef _KERNEL
419         zfs_create_fs(os, kcred, zplprops, tx);
420 #endif
421         dsl_dataset_rele(ds, FTAG);
422
423         dmu_tx_commit(tx);
424
425         rrw_exit(&dp->dp_config_rwlock, FTAG);
426
427         return (dp);
428 }
429
430 /*
431  * Account for the meta-objset space in its placeholder dsl_dir.
432  */
433 void
434 dsl_pool_mos_diduse_space(dsl_pool_t *dp,
435     int64_t used, int64_t comp, int64_t uncomp)
436 {
437         ASSERT3U(comp, ==, uncomp); /* it's all metadata */
438         mutex_enter(&dp->dp_lock);
439         dp->dp_mos_used_delta += used;
440         dp->dp_mos_compressed_delta += comp;
441         dp->dp_mos_uncompressed_delta += uncomp;
442         mutex_exit(&dp->dp_lock);
443 }
444
445 static void
446 dsl_pool_sync_mos(dsl_pool_t *dp, dmu_tx_t *tx)
447 {
448         zio_t *zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
449         dmu_objset_sync(dp->dp_meta_objset, zio, tx);
450         VERIFY0(zio_wait(zio));
451         dprintf_bp(&dp->dp_meta_rootbp, "meta objset rootbp is %s", "");
452         spa_set_rootblkptr(dp->dp_spa, &dp->dp_meta_rootbp);
453 }
454
455 static void
456 dsl_pool_dirty_delta(dsl_pool_t *dp, int64_t delta)
457 {
458         ASSERT(MUTEX_HELD(&dp->dp_lock));
459
460         if (delta < 0)
461                 ASSERT3U(-delta, <=, dp->dp_dirty_total);
462
463         dp->dp_dirty_total += delta;
464
465         /*
466          * Note: we signal even when increasing dp_dirty_total.
467          * This ensures forward progress -- each thread wakes the next waiter.
468          */
469         if (dp->dp_dirty_total < zfs_dirty_data_max)
470                 cv_signal(&dp->dp_spaceavail_cv);
471 }
472
473 void
474 dsl_pool_sync(dsl_pool_t *dp, uint64_t txg)
475 {
476         zio_t *zio;
477         dmu_tx_t *tx;
478         dsl_dir_t *dd;
479         dsl_dataset_t *ds;
480         objset_t *mos = dp->dp_meta_objset;
481         list_t synced_datasets;
482
483         list_create(&synced_datasets, sizeof (dsl_dataset_t),
484             offsetof(dsl_dataset_t, ds_synced_link));
485
486         tx = dmu_tx_create_assigned(dp, txg);
487
488         /*
489          * Write out all dirty blocks of dirty datasets.
490          */
491         zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
492         while ((ds = txg_list_remove(&dp->dp_dirty_datasets, txg)) != NULL) {
493                 /*
494                  * We must not sync any non-MOS datasets twice, because
495                  * we may have taken a snapshot of them.  However, we
496                  * may sync newly-created datasets on pass 2.
497                  */
498                 ASSERT(!list_link_active(&ds->ds_synced_link));
499                 list_insert_tail(&synced_datasets, ds);
500                 dsl_dataset_sync(ds, zio, tx);
501         }
502         VERIFY0(zio_wait(zio));
503
504         /*
505          * We have written all of the accounted dirty data, so our
506          * dp_space_towrite should now be zero.  However, some seldom-used
507          * code paths do not adhere to this (e.g. dbuf_undirty(), also
508          * rounding error in dbuf_write_physdone).
509          * Shore up the accounting of any dirtied space now.
510          */
511         dsl_pool_undirty_space(dp, dp->dp_dirty_pertxg[txg & TXG_MASK], txg);
512
513         /*
514          * Update the long range free counter after
515          * we're done syncing user data
516          */
517         mutex_enter(&dp->dp_lock);
518         ASSERT(spa_sync_pass(dp->dp_spa) == 1 ||
519             dp->dp_long_free_dirty_pertxg[txg & TXG_MASK] == 0);
520         dp->dp_long_free_dirty_pertxg[txg & TXG_MASK] = 0;
521         mutex_exit(&dp->dp_lock);
522
523         /*
524          * After the data blocks have been written (ensured by the zio_wait()
525          * above), update the user/group space accounting.  This happens
526          * in tasks dispatched to dp_sync_taskq, so wait for them before
527          * continuing.
528          */
529         for (ds = list_head(&synced_datasets); ds != NULL;
530             ds = list_next(&synced_datasets, ds)) {
531                 dmu_objset_do_userquota_updates(ds->ds_objset, tx);
532         }
533         taskq_wait(dp->dp_sync_taskq);
534
535         /*
536          * Sync the datasets again to push out the changes due to
537          * userspace updates.  This must be done before we process the
538          * sync tasks, so that any snapshots will have the correct
539          * user accounting information (and we won't get confused
540          * about which blocks are part of the snapshot).
541          */
542         zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
543         while ((ds = txg_list_remove(&dp->dp_dirty_datasets, txg)) != NULL) {
544                 ASSERT(list_link_active(&ds->ds_synced_link));
545                 dmu_buf_rele(ds->ds_dbuf, ds);
546                 dsl_dataset_sync(ds, zio, tx);
547         }
548         VERIFY0(zio_wait(zio));
549
550         /*
551          * Now that the datasets have been completely synced, we can
552          * clean up our in-memory structures accumulated while syncing:
553          *
554          *  - move dead blocks from the pending deadlist to the on-disk deadlist
555          *  - release hold from dsl_dataset_dirty()
556          */
557         while ((ds = list_remove_head(&synced_datasets)) != NULL) {
558                 dsl_dataset_sync_done(ds, tx);
559         }
560
561         while ((dd = txg_list_remove(&dp->dp_dirty_dirs, txg)) != NULL) {
562                 dsl_dir_sync(dd, tx);
563         }
564
565         /*
566          * The MOS's space is accounted for in the pool/$MOS
567          * (dp_mos_dir).  We can't modify the mos while we're syncing
568          * it, so we remember the deltas and apply them here.
569          */
570         if (dp->dp_mos_used_delta != 0 || dp->dp_mos_compressed_delta != 0 ||
571             dp->dp_mos_uncompressed_delta != 0) {
572                 dsl_dir_diduse_space(dp->dp_mos_dir, DD_USED_HEAD,
573                     dp->dp_mos_used_delta,
574                     dp->dp_mos_compressed_delta,
575                     dp->dp_mos_uncompressed_delta, tx);
576                 dp->dp_mos_used_delta = 0;
577                 dp->dp_mos_compressed_delta = 0;
578                 dp->dp_mos_uncompressed_delta = 0;
579         }
580
581         if (!multilist_is_empty(mos->os_dirty_dnodes[txg & TXG_MASK])) {
582                 dsl_pool_sync_mos(dp, tx);
583         }
584
585         /*
586          * If we modify a dataset in the same txg that we want to destroy it,
587          * its dsl_dir's dd_dbuf will be dirty, and thus have a hold on it.
588          * dsl_dir_destroy_check() will fail if there are unexpected holds.
589          * Therefore, we want to sync the MOS (thus syncing the dd_dbuf
590          * and clearing the hold on it) before we process the sync_tasks.
591          * The MOS data dirtied by the sync_tasks will be synced on the next
592          * pass.
593          */
594         if (!txg_list_empty(&dp->dp_sync_tasks, txg)) {
595                 dsl_sync_task_t *dst;
596                 /*
597                  * No more sync tasks should have been added while we
598                  * were syncing.
599                  */
600                 ASSERT3U(spa_sync_pass(dp->dp_spa), ==, 1);
601                 while ((dst = txg_list_remove(&dp->dp_sync_tasks, txg)) != NULL)
602                         dsl_sync_task_sync(dst, tx);
603         }
604
605         dmu_tx_commit(tx);
606
607         DTRACE_PROBE2(dsl_pool_sync__done, dsl_pool_t *dp, dp, uint64_t, txg);
608 }
609
610 void
611 dsl_pool_sync_done(dsl_pool_t *dp, uint64_t txg)
612 {
613         zilog_t *zilog;
614
615         while ((zilog = txg_list_head(&dp->dp_dirty_zilogs, txg))) {
616                 dsl_dataset_t *ds = dmu_objset_ds(zilog->zl_os);
617                 /*
618                  * We don't remove the zilog from the dp_dirty_zilogs
619                  * list until after we've cleaned it. This ensures that
620                  * callers of zilog_is_dirty() receive an accurate
621                  * answer when they are racing with the spa sync thread.
622                  */
623                 zil_clean(zilog, txg);
624                 (void) txg_list_remove_this(&dp->dp_dirty_zilogs, zilog, txg);
625                 ASSERT(!dmu_objset_is_dirty(zilog->zl_os, txg));
626                 dmu_buf_rele(ds->ds_dbuf, zilog);
627         }
628         ASSERT(!dmu_objset_is_dirty(dp->dp_meta_objset, txg));
629 }
630
631 /*
632  * TRUE if the current thread is the tx_sync_thread or if we
633  * are being called from SPA context during pool initialization.
634  */
635 int
636 dsl_pool_sync_context(dsl_pool_t *dp)
637 {
638         return (curthread == dp->dp_tx.tx_sync_thread ||
639             spa_is_initializing(dp->dp_spa) ||
640             taskq_member(dp->dp_sync_taskq, curthread));
641 }
642
643 uint64_t
644 dsl_pool_adjustedsize(dsl_pool_t *dp, boolean_t netfree)
645 {
646         uint64_t space, resv;
647
648         /*
649          * If we're trying to assess whether it's OK to do a free,
650          * cut the reservation in half to allow forward progress
651          * (e.g. make it possible to rm(1) files from a full pool).
652          */
653         space = spa_get_dspace(dp->dp_spa);
654         resv = spa_get_slop_space(dp->dp_spa);
655         if (netfree)
656                 resv >>= 1;
657
658         return (space - resv);
659 }
660
661 boolean_t
662 dsl_pool_need_dirty_delay(dsl_pool_t *dp)
663 {
664         uint64_t delay_min_bytes =
665             zfs_dirty_data_max * zfs_delay_min_dirty_percent / 100;
666         boolean_t rv;
667
668         mutex_enter(&dp->dp_lock);
669         if (dp->dp_dirty_total > zfs_dirty_data_sync)
670                 txg_kick(dp);
671         rv = (dp->dp_dirty_total > delay_min_bytes);
672         mutex_exit(&dp->dp_lock);
673         return (rv);
674 }
675
676 void
677 dsl_pool_dirty_space(dsl_pool_t *dp, int64_t space, dmu_tx_t *tx)
678 {
679         if (space > 0) {
680                 mutex_enter(&dp->dp_lock);
681                 dp->dp_dirty_pertxg[tx->tx_txg & TXG_MASK] += space;
682                 dsl_pool_dirty_delta(dp, space);
683                 mutex_exit(&dp->dp_lock);
684         }
685 }
686
687 void
688 dsl_pool_undirty_space(dsl_pool_t *dp, int64_t space, uint64_t txg)
689 {
690         ASSERT3S(space, >=, 0);
691         if (space == 0)
692                 return;
693
694         mutex_enter(&dp->dp_lock);
695         if (dp->dp_dirty_pertxg[txg & TXG_MASK] < space) {
696                 /* XXX writing something we didn't dirty? */
697                 space = dp->dp_dirty_pertxg[txg & TXG_MASK];
698         }
699         ASSERT3U(dp->dp_dirty_pertxg[txg & TXG_MASK], >=, space);
700         dp->dp_dirty_pertxg[txg & TXG_MASK] -= space;
701         ASSERT3U(dp->dp_dirty_total, >=, space);
702         dsl_pool_dirty_delta(dp, -space);
703         mutex_exit(&dp->dp_lock);
704 }
705
706 /* ARGSUSED */
707 static int
708 upgrade_clones_cb(dsl_pool_t *dp, dsl_dataset_t *hds, void *arg)
709 {
710         dmu_tx_t *tx = arg;
711         dsl_dataset_t *ds, *prev = NULL;
712         int err;
713
714         err = dsl_dataset_hold_obj(dp, hds->ds_object, FTAG, &ds);
715         if (err)
716                 return (err);
717
718         while (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
719                 err = dsl_dataset_hold_obj(dp,
720                     dsl_dataset_phys(ds)->ds_prev_snap_obj, FTAG, &prev);
721                 if (err) {
722                         dsl_dataset_rele(ds, FTAG);
723                         return (err);
724                 }
725
726                 if (dsl_dataset_phys(prev)->ds_next_snap_obj != ds->ds_object)
727                         break;
728                 dsl_dataset_rele(ds, FTAG);
729                 ds = prev;
730                 prev = NULL;
731         }
732
733         if (prev == NULL) {
734                 prev = dp->dp_origin_snap;
735
736                 /*
737                  * The $ORIGIN can't have any data, or the accounting
738                  * will be wrong.
739                  */
740                 rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
741                 ASSERT0(dsl_dataset_phys(prev)->ds_bp.blk_birth);
742                 rrw_exit(&ds->ds_bp_rwlock, FTAG);
743
744                 /* The origin doesn't get attached to itself */
745                 if (ds->ds_object == prev->ds_object) {
746                         dsl_dataset_rele(ds, FTAG);
747                         return (0);
748                 }
749
750                 dmu_buf_will_dirty(ds->ds_dbuf, tx);
751                 dsl_dataset_phys(ds)->ds_prev_snap_obj = prev->ds_object;
752                 dsl_dataset_phys(ds)->ds_prev_snap_txg =
753                     dsl_dataset_phys(prev)->ds_creation_txg;
754
755                 dmu_buf_will_dirty(ds->ds_dir->dd_dbuf, tx);
756                 dsl_dir_phys(ds->ds_dir)->dd_origin_obj = prev->ds_object;
757
758                 dmu_buf_will_dirty(prev->ds_dbuf, tx);
759                 dsl_dataset_phys(prev)->ds_num_children++;
760
761                 if (dsl_dataset_phys(ds)->ds_next_snap_obj == 0) {
762                         ASSERT(ds->ds_prev == NULL);
763                         VERIFY0(dsl_dataset_hold_obj(dp,
764                             dsl_dataset_phys(ds)->ds_prev_snap_obj,
765                             ds, &ds->ds_prev));
766                 }
767         }
768
769         ASSERT3U(dsl_dir_phys(ds->ds_dir)->dd_origin_obj, ==, prev->ds_object);
770         ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_obj, ==, prev->ds_object);
771
772         if (dsl_dataset_phys(prev)->ds_next_clones_obj == 0) {
773                 dmu_buf_will_dirty(prev->ds_dbuf, tx);
774                 dsl_dataset_phys(prev)->ds_next_clones_obj =
775                     zap_create(dp->dp_meta_objset,
776                     DMU_OT_NEXT_CLONES, DMU_OT_NONE, 0, tx);
777         }
778         VERIFY0(zap_add_int(dp->dp_meta_objset,
779             dsl_dataset_phys(prev)->ds_next_clones_obj, ds->ds_object, tx));
780
781         dsl_dataset_rele(ds, FTAG);
782         if (prev != dp->dp_origin_snap)
783                 dsl_dataset_rele(prev, FTAG);
784         return (0);
785 }
786
787 void
788 dsl_pool_upgrade_clones(dsl_pool_t *dp, dmu_tx_t *tx)
789 {
790         ASSERT(dmu_tx_is_syncing(tx));
791         ASSERT(dp->dp_origin_snap != NULL);
792
793         VERIFY0(dmu_objset_find_dp(dp, dp->dp_root_dir_obj, upgrade_clones_cb,
794             tx, DS_FIND_CHILDREN | DS_FIND_SERIALIZE));
795 }
796
797 /* ARGSUSED */
798 static int
799 upgrade_dir_clones_cb(dsl_pool_t *dp, dsl_dataset_t *ds, void *arg)
800 {
801         dmu_tx_t *tx = arg;
802         objset_t *mos = dp->dp_meta_objset;
803
804         if (dsl_dir_phys(ds->ds_dir)->dd_origin_obj != 0) {
805                 dsl_dataset_t *origin;
806
807                 VERIFY0(dsl_dataset_hold_obj(dp,
808                     dsl_dir_phys(ds->ds_dir)->dd_origin_obj, FTAG, &origin));
809
810                 if (dsl_dir_phys(origin->ds_dir)->dd_clones == 0) {
811                         dmu_buf_will_dirty(origin->ds_dir->dd_dbuf, tx);
812                         dsl_dir_phys(origin->ds_dir)->dd_clones =
813                             zap_create(mos, DMU_OT_DSL_CLONES, DMU_OT_NONE,
814                             0, tx);
815                 }
816
817                 VERIFY0(zap_add_int(dp->dp_meta_objset,
818                     dsl_dir_phys(origin->ds_dir)->dd_clones,
819                     ds->ds_object, tx));
820
821                 dsl_dataset_rele(origin, FTAG);
822         }
823         return (0);
824 }
825
826 void
827 dsl_pool_upgrade_dir_clones(dsl_pool_t *dp, dmu_tx_t *tx)
828 {
829         uint64_t obj;
830
831         ASSERT(dmu_tx_is_syncing(tx));
832
833         (void) dsl_dir_create_sync(dp, dp->dp_root_dir, FREE_DIR_NAME, tx);
834         VERIFY0(dsl_pool_open_special_dir(dp,
835             FREE_DIR_NAME, &dp->dp_free_dir));
836
837         /*
838          * We can't use bpobj_alloc(), because spa_version() still
839          * returns the old version, and we need a new-version bpobj with
840          * subobj support.  So call dmu_object_alloc() directly.
841          */
842         obj = dmu_object_alloc(dp->dp_meta_objset, DMU_OT_BPOBJ,
843             SPA_OLD_MAXBLOCKSIZE, DMU_OT_BPOBJ_HDR, sizeof (bpobj_phys_t), tx);
844         VERIFY0(zap_add(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
845             DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj, tx));
846         VERIFY0(bpobj_open(&dp->dp_free_bpobj, dp->dp_meta_objset, obj));
847
848         VERIFY0(dmu_objset_find_dp(dp, dp->dp_root_dir_obj,
849             upgrade_dir_clones_cb, tx, DS_FIND_CHILDREN | DS_FIND_SERIALIZE));
850 }
851
852 void
853 dsl_pool_create_origin(dsl_pool_t *dp, dmu_tx_t *tx)
854 {
855         uint64_t dsobj;
856         dsl_dataset_t *ds;
857
858         ASSERT(dmu_tx_is_syncing(tx));
859         ASSERT(dp->dp_origin_snap == NULL);
860         ASSERT(rrw_held(&dp->dp_config_rwlock, RW_WRITER));
861
862         /* create the origin dir, ds, & snap-ds */
863         dsobj = dsl_dataset_create_sync(dp->dp_root_dir, ORIGIN_DIR_NAME,
864             NULL, 0, kcred, tx);
865         VERIFY0(dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
866         dsl_dataset_snapshot_sync_impl(ds, ORIGIN_DIR_NAME, tx);
867         VERIFY0(dsl_dataset_hold_obj(dp, dsl_dataset_phys(ds)->ds_prev_snap_obj,
868             dp, &dp->dp_origin_snap));
869         dsl_dataset_rele(ds, FTAG);
870 }
871
872 taskq_t *
873 dsl_pool_iput_taskq(dsl_pool_t *dp)
874 {
875         return (dp->dp_iput_taskq);
876 }
877
878 /*
879  * Walk through the pool-wide zap object of temporary snapshot user holds
880  * and release them.
881  */
882 void
883 dsl_pool_clean_tmp_userrefs(dsl_pool_t *dp)
884 {
885         zap_attribute_t za;
886         zap_cursor_t zc;
887         objset_t *mos = dp->dp_meta_objset;
888         uint64_t zapobj = dp->dp_tmp_userrefs_obj;
889         nvlist_t *holds;
890
891         if (zapobj == 0)
892                 return;
893         ASSERT(spa_version(dp->dp_spa) >= SPA_VERSION_USERREFS);
894
895         holds = fnvlist_alloc();
896
897         for (zap_cursor_init(&zc, mos, zapobj);
898             zap_cursor_retrieve(&zc, &za) == 0;
899             zap_cursor_advance(&zc)) {
900                 char *htag;
901                 nvlist_t *tags;
902
903                 htag = strchr(za.za_name, '-');
904                 *htag = '\0';
905                 ++htag;
906                 if (nvlist_lookup_nvlist(holds, za.za_name, &tags) != 0) {
907                         tags = fnvlist_alloc();
908                         fnvlist_add_boolean(tags, htag);
909                         fnvlist_add_nvlist(holds, za.za_name, tags);
910                         fnvlist_free(tags);
911                 } else {
912                         fnvlist_add_boolean(tags, htag);
913                 }
914         }
915         dsl_dataset_user_release_tmp(dp, holds);
916         fnvlist_free(holds);
917         zap_cursor_fini(&zc);
918 }
919
920 /*
921  * Create the pool-wide zap object for storing temporary snapshot holds.
922  */
923 void
924 dsl_pool_user_hold_create_obj(dsl_pool_t *dp, dmu_tx_t *tx)
925 {
926         objset_t *mos = dp->dp_meta_objset;
927
928         ASSERT(dp->dp_tmp_userrefs_obj == 0);
929         ASSERT(dmu_tx_is_syncing(tx));
930
931         dp->dp_tmp_userrefs_obj = zap_create_link(mos, DMU_OT_USERREFS,
932             DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_TMP_USERREFS, tx);
933 }
934
935 static int
936 dsl_pool_user_hold_rele_impl(dsl_pool_t *dp, uint64_t dsobj,
937     const char *tag, uint64_t now, dmu_tx_t *tx, boolean_t holding)
938 {
939         objset_t *mos = dp->dp_meta_objset;
940         uint64_t zapobj = dp->dp_tmp_userrefs_obj;
941         char *name;
942         int error;
943
944         ASSERT(spa_version(dp->dp_spa) >= SPA_VERSION_USERREFS);
945         ASSERT(dmu_tx_is_syncing(tx));
946
947         /*
948          * If the pool was created prior to SPA_VERSION_USERREFS, the
949          * zap object for temporary holds might not exist yet.
950          */
951         if (zapobj == 0) {
952                 if (holding) {
953                         dsl_pool_user_hold_create_obj(dp, tx);
954                         zapobj = dp->dp_tmp_userrefs_obj;
955                 } else {
956                         return (SET_ERROR(ENOENT));
957                 }
958         }
959
960         name = kmem_asprintf("%llx-%s", (u_longlong_t)dsobj, tag);
961         if (holding)
962                 error = zap_add(mos, zapobj, name, 8, 1, &now, tx);
963         else
964                 error = zap_remove(mos, zapobj, name, tx);
965         strfree(name);
966
967         return (error);
968 }
969
970 /*
971  * Add a temporary hold for the given dataset object and tag.
972  */
973 int
974 dsl_pool_user_hold(dsl_pool_t *dp, uint64_t dsobj, const char *tag,
975     uint64_t now, dmu_tx_t *tx)
976 {
977         return (dsl_pool_user_hold_rele_impl(dp, dsobj, tag, now, tx, B_TRUE));
978 }
979
980 /*
981  * Release a temporary hold for the given dataset object and tag.
982  */
983 int
984 dsl_pool_user_release(dsl_pool_t *dp, uint64_t dsobj, const char *tag,
985     dmu_tx_t *tx)
986 {
987         return (dsl_pool_user_hold_rele_impl(dp, dsobj, tag, 0,
988             tx, B_FALSE));
989 }
990
991 /*
992  * DSL Pool Configuration Lock
993  *
994  * The dp_config_rwlock protects against changes to DSL state (e.g. dataset
995  * creation / destruction / rename / property setting).  It must be held for
996  * read to hold a dataset or dsl_dir.  I.e. you must call
997  * dsl_pool_config_enter() or dsl_pool_hold() before calling
998  * dsl_{dataset,dir}_hold{_obj}.  In most circumstances, the dp_config_rwlock
999  * must be held continuously until all datasets and dsl_dirs are released.
1000  *
1001  * The only exception to this rule is that if a "long hold" is placed on
1002  * a dataset, then the dp_config_rwlock may be dropped while the dataset
1003  * is still held.  The long hold will prevent the dataset from being
1004  * destroyed -- the destroy will fail with EBUSY.  A long hold can be
1005  * obtained by calling dsl_dataset_long_hold(), or by "owning" a dataset
1006  * (by calling dsl_{dataset,objset}_{try}own{_obj}).
1007  *
1008  * Legitimate long-holders (including owners) should be long-running, cancelable
1009  * tasks that should cause "zfs destroy" to fail.  This includes DMU
1010  * consumers (i.e. a ZPL filesystem being mounted or ZVOL being open),
1011  * "zfs send", and "zfs diff".  There are several other long-holders whose
1012  * uses are suboptimal (e.g. "zfs promote", and zil_suspend()).
1013  *
1014  * The usual formula for long-holding would be:
1015  * dsl_pool_hold()
1016  * dsl_dataset_hold()
1017  * ... perform checks ...
1018  * dsl_dataset_long_hold()
1019  * dsl_pool_rele()
1020  * ... perform long-running task ...
1021  * dsl_dataset_long_rele()
1022  * dsl_dataset_rele()
1023  *
1024  * Note that when the long hold is released, the dataset is still held but
1025  * the pool is not held.  The dataset may change arbitrarily during this time
1026  * (e.g. it could be destroyed).  Therefore you shouldn't do anything to the
1027  * dataset except release it.
1028  *
1029  * User-initiated operations (e.g. ioctls, zfs_ioc_*()) are either read-only
1030  * or modifying operations.
1031  *
1032  * Modifying operations should generally use dsl_sync_task().  The synctask
1033  * infrastructure enforces proper locking strategy with respect to the
1034  * dp_config_rwlock.  See the comment above dsl_sync_task() for details.
1035  *
1036  * Read-only operations will manually hold the pool, then the dataset, obtain
1037  * information from the dataset, then release the pool and dataset.
1038  * dmu_objset_{hold,rele}() are convenience routines that also do the pool
1039  * hold/rele.
1040  */
1041
1042 int
1043 dsl_pool_hold(const char *name, void *tag, dsl_pool_t **dp)
1044 {
1045         spa_t *spa;
1046         int error;
1047
1048         error = spa_open(name, &spa, tag);
1049         if (error == 0) {
1050                 *dp = spa_get_dsl(spa);
1051                 dsl_pool_config_enter(*dp, tag);
1052         }
1053         return (error);
1054 }
1055
1056 void
1057 dsl_pool_rele(dsl_pool_t *dp, void *tag)
1058 {
1059         dsl_pool_config_exit(dp, tag);
1060         spa_close(dp->dp_spa, tag);
1061 }
1062
1063 void
1064 dsl_pool_config_enter(dsl_pool_t *dp, void *tag)
1065 {
1066         /*
1067          * We use a "reentrant" reader-writer lock, but not reentrantly.
1068          *
1069          * The rrwlock can (with the track_all flag) track all reading threads,
1070          * which is very useful for debugging which code path failed to release
1071          * the lock, and for verifying that the *current* thread does hold
1072          * the lock.
1073          *
1074          * (Unlike a rwlock, which knows that N threads hold it for
1075          * read, but not *which* threads, so rw_held(RW_READER) returns TRUE
1076          * if any thread holds it for read, even if this thread doesn't).
1077          */
1078         ASSERT(!rrw_held(&dp->dp_config_rwlock, RW_READER));
1079         rrw_enter(&dp->dp_config_rwlock, RW_READER, tag);
1080 }
1081
1082 void
1083 dsl_pool_config_enter_prio(dsl_pool_t *dp, void *tag)
1084 {
1085         ASSERT(!rrw_held(&dp->dp_config_rwlock, RW_READER));
1086         rrw_enter_read_prio(&dp->dp_config_rwlock, tag);
1087 }
1088
1089 void
1090 dsl_pool_config_exit(dsl_pool_t *dp, void *tag)
1091 {
1092         rrw_exit(&dp->dp_config_rwlock, tag);
1093 }
1094
1095 boolean_t
1096 dsl_pool_config_held(dsl_pool_t *dp)
1097 {
1098         return (RRW_LOCK_HELD(&dp->dp_config_rwlock));
1099 }
1100
1101 boolean_t
1102 dsl_pool_config_held_writer(dsl_pool_t *dp)
1103 {
1104         return (RRW_WRITE_HELD(&dp->dp_config_rwlock));
1105 }
1106
1107 #if defined(_KERNEL) && defined(HAVE_SPL)
1108 EXPORT_SYMBOL(dsl_pool_config_enter);
1109 EXPORT_SYMBOL(dsl_pool_config_exit);
1110
1111 /* BEGIN CSTYLED */
1112 /* zfs_dirty_data_max_percent only applied at module load in arc_init(). */
1113 module_param(zfs_dirty_data_max_percent, int, 0444);
1114 MODULE_PARM_DESC(zfs_dirty_data_max_percent, "percent of ram can be dirty");
1115
1116 /* zfs_dirty_data_max_max_percent only applied at module load in arc_init(). */
1117 module_param(zfs_dirty_data_max_max_percent, int, 0444);
1118 MODULE_PARM_DESC(zfs_dirty_data_max_max_percent,
1119         "zfs_dirty_data_max upper bound as % of RAM");
1120
1121 module_param(zfs_delay_min_dirty_percent, int, 0644);
1122 MODULE_PARM_DESC(zfs_delay_min_dirty_percent, "transaction delay threshold");
1123
1124 module_param(zfs_dirty_data_max, ulong, 0644);
1125 MODULE_PARM_DESC(zfs_dirty_data_max, "determines the dirty space limit");
1126
1127 /* zfs_dirty_data_max_max only applied at module load in arc_init(). */
1128 module_param(zfs_dirty_data_max_max, ulong, 0444);
1129 MODULE_PARM_DESC(zfs_dirty_data_max_max,
1130         "zfs_dirty_data_max upper bound in bytes");
1131
1132 module_param(zfs_dirty_data_sync, ulong, 0644);
1133 MODULE_PARM_DESC(zfs_dirty_data_sync, "sync txg when this much dirty data");
1134
1135 module_param(zfs_delay_scale, ulong, 0644);
1136 MODULE_PARM_DESC(zfs_delay_scale, "how quickly delay approaches infinity");
1137
1138 module_param(zfs_sync_taskq_batch_pct, int, 0644);
1139 MODULE_PARM_DESC(zfs_sync_taskq_batch_pct,
1140         "max percent of CPUs that are used to sync dirty data");
1141 /* END CSTYLED */
1142 #endif