summaryrefslogtreecommitdiff
path: root/usr/src/cmd/mdb/common/modules/zfs/zfs.c
diff options
context:
space:
mode:
authorKeith M Wesolowski <wesolows@foobazco.org>2013-08-26 23:02:51 +0000
committerKeith M Wesolowski <wesolows@foobazco.org>2013-08-26 23:03:09 +0000
commitd907c5084d3f67c85c5551ee093457940f8aec17 (patch)
tree2af3e26e19e6cd0eb5d9cc739dd27233be6b4f2d /usr/src/cmd/mdb/common/modules/zfs/zfs.c
parent6344b441ffaa746030673ed598c637141b24f080 (diff)
parent69962b5647e4a8b9b14998733b765925381b727e (diff)
downloadillumos-joyent-d907c5084d3f67c85c5551ee093457940f8aec17.tar.gz
[illumos-gate merge]
commit 69962b5647e4a8b9b14998733b765925381b727e 4045 zfs write throttle & i/o scheduler performance work commit 7e0e2549bfaa531aff576083ab0c07f84fa8fb27 3845 beadm doesn't work in non-global zones commit dc986d9f4cb40f3ff88fe0d9c9fb3a51ad50f0d9 4054 dis sometimes decides random symbols are functions commit edd4ab01432cfb07428329ad6e8071e8923d0b20 3194 dis crashes disassembling aes Conflicts: usr/src/uts/common/fs/zfs/vdev_queue.c usr/src/uts/common/fs/zfs/sys/zio.h usr/src/uts/common/fs/zfs/sys/vdev_impl.h usr/src/uts/common/fs/zfs/sys/dsl_dir.h usr/src/uts/common/fs/zfs/dsl_pool.c usr/src/uts/common/fs/zfs/arc.c usr/src/lib/libbe/common/be_list.c
Diffstat (limited to 'usr/src/cmd/mdb/common/modules/zfs/zfs.c')
-rw-r--r--usr/src/cmd/mdb/common/modules/zfs/zfs.c32
1 files changed, 21 insertions, 11 deletions
diff --git a/usr/src/cmd/mdb/common/modules/zfs/zfs.c b/usr/src/cmd/mdb/common/modules/zfs/zfs.c
index b3cf1d5f0b..9dd3dd1a1c 100644
--- a/usr/src/cmd/mdb/common/modules/zfs/zfs.c
+++ b/usr/src/cmd/mdb/common/modules/zfs/zfs.c
@@ -274,6 +274,26 @@ zfs_params(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv)
*/
static const char *params[] = {
"arc_reduce_dnlc_percent",
+ "arc_lotsfree_percent",
+ "zfs_dirty_data_max",
+ "zfs_dirty_data_sync",
+ "zfs_delay_max_ns",
+ "zfs_delay_min_dirty_percent",
+ "zfs_delay_scale",
+ "zfs_vdev_max_active",
+ "zfs_vdev_sync_read_min_active",
+ "zfs_vdev_sync_read_max_active",
+ "zfs_vdev_sync_write_min_active",
+ "zfs_vdev_sync_write_max_active",
+ "zfs_vdev_async_read_min_active",
+ "zfs_vdev_async_read_max_active",
+ "zfs_vdev_async_write_min_active",
+ "zfs_vdev_async_write_max_active",
+ "zfs_vdev_scrub_min_active",
+ "zfs_vdev_scrub_max_active",
+ "zfs_vdev_async_write_active_min_dirty_percent",
+ "zfs_vdev_async_write_active_max_dirty_percent",
+ "spa_asize_inflation",
"zfs_arc_max",
"zfs_arc_min",
"arc_shrink_shift",
@@ -291,24 +311,14 @@ zfs_params(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv)
"spa_max_replication_override",
"spa_mode_global",
"zfs_flags",
- "zfs_txg_synctime_ms",
"zfs_txg_timeout",
- "zfs_write_limit_min",
- "zfs_write_limit_max",
- "zfs_write_limit_shift",
- "zfs_write_limit_override",
- "zfs_no_write_throttle",
"zfs_vdev_cache_max",
"zfs_vdev_cache_size",
"zfs_vdev_cache_bshift",
"vdev_mirror_shift",
- "zfs_vdev_max_pending",
- "zfs_vdev_min_pending",
"zfs_scrub_limit",
"zfs_no_scrub_io",
"zfs_no_scrub_prefetch",
- "zfs_vdev_time_shift",
- "zfs_vdev_ramp_rate",
"zfs_vdev_aggregation_limit",
"fzap_default_block_shift",
"zfs_immediate_write_sz",
@@ -1836,7 +1846,7 @@ zio_child_cb(uintptr_t addr, const void *unknown, void *arg)
else
ziop = (uintptr_t)zl.zl_child;
- return (zio_print_cb(ziop, arg));
+ return (zio_print_cb(ziop, zpa));
}
/* ARGSUSED */