Searched refs:zfs_dirty_data_max (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Ddmu_tx.c682 * and hit zfs_dirty_data_max.
735 * 0% <- zfs_dirty_data_max -> 100%
769 * 0% <- zfs_dirty_data_max -> 100%
783 zfs_dirty_data_max * zfs_delay_min_dirty_percent / 100;
795 ASSERT3U(dirty, <, zfs_dirty_data_max);
799 (dirty - delay_min_bytes) / (zfs_dirty_data_max - dirty);
1082 if (dp->dp_dirty_total >= zfs_dirty_data_max)
1084 while (dp->dp_dirty_total >= zfs_dirty_data_max)
H A Ddsl_pool.c82 * zfs_dirty_data_max determines the dirty space limit. Once that value is
98 * zfs_dirty_data_max will be set to zfs_dirty_data_max_percent% of all memory,
102 unsigned long zfs_dirty_data_max = 0; variable
109 * zfs_dirty_data_max), push out a txg. This should be less than
131 * Note: zfs_delay_scale * zfs_dirty_data_max must be < 2^64, due to the
591 if (dp->dp_dirty_total < zfs_dirty_data_max)
900 zfs_dirty_data_max * zfs_delay_min_dirty_percent / 100;
902 zfs_dirty_data_max * zfs_dirty_data_sync_percent / 100;
1387 "zfs_dirty_data_max upper bound as % of RAM");
1397 "zfs_dirty_data_max uppe
[all...]
H A Dvdev_queue.c101 * 0% | | 100% of zfs_dirty_data_max
322 uint64_t min_bytes = zfs_dirty_data_max *
324 uint64_t max_bytes = zfs_dirty_data_max *
H A Dtxg.c543 zfs_dirty_data_max * zfs_dirty_data_sync_percent / 100;
H A Ddmu.c844 zfs_per_txg_dirty_frees_percent * zfs_dirty_data_max / 100;
846 dirty_frees_threshold = zfs_dirty_data_max / 20;
912 * blocks taking up a large percentage of zfs_dirty_data_max.
H A Ddsl_scan.c1332 int dirty_pct = scn->scn_dp->dp_dirty_total * 100 / zfs_dirty_data_max;
2805 int dirty_pct = scn->scn_dp->dp_dirty_total * 100 / zfs_dirty_data_max;
H A Darc.c7699 if (zfs_dirty_data_max == 0) {
7700 zfs_dirty_data_max = allmem *
7702 zfs_dirty_data_max = MIN(zfs_dirty_data_max,
/freebsd-13-stable/sys/contrib/openzfs/include/sys/
H A Ddsl_pool.h59 extern unsigned long zfs_dirty_data_max;

Completed in 115 milliseconds