summaryrefslogtreecommitdiffstats
path: root/include/sys
diff options
context:
space:
mode:
authorNed Bass <[email protected]>2014-02-27 16:11:11 -0800
committerBrian Behlendorf <[email protected]>2014-03-04 12:22:24 -0800
commit3d920a1567d550273413a741c5fbece42cea6f00 (patch)
tree5fa36a5666628ad0790421557971b837cb47d07b /include/sys
parentcecb7487fc8eea3508c3b67810ba5f0e2a265ba1 (diff)
dmu_tx kstat cleanup
A few counters in the dmu_tx kstats are obsolete or no longer bumped properly. - The sync task restructuring commit 13fe019870c8779bf2f5b3ff731b512cf89133ef removed the code that bumpted dmu_tx_quota. The counter is now bumped in two cases, instead of just the one case as before (after the result of dsl_dataset_check_quota call). The second case is where we check the requested reservation against the actual pool size, as this is an implicit quota of sorts. - The write throttle restructuring commit e8b96c6007bf97cdf34869c1ffbd0ce753873a3d makes dmu_tx_how and dmu_tx_inflight obsolete, so they are removed. Signed-off-by: Kohsuke Kawaguchi <[email protected]> Signed-off-by: Ned Bass <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Closes #1914
Diffstat (limited to 'include/sys')
-rw-r--r--include/sys/dmu_tx.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/sys/dmu_tx.h b/include/sys/dmu_tx.h
index 59a147402..c70c97da0 100644
--- a/include/sys/dmu_tx.h
+++ b/include/sys/dmu_tx.h
@@ -130,10 +130,8 @@ typedef struct dmu_tx_stats {
kstat_named_t dmu_tx_error;
kstat_named_t dmu_tx_suspended;
kstat_named_t dmu_tx_group;
- kstat_named_t dmu_tx_how;
kstat_named_t dmu_tx_memory_reserve;
kstat_named_t dmu_tx_memory_reclaim;
- kstat_named_t dmu_tx_memory_inflight;
kstat_named_t dmu_tx_dirty_throttle;
kstat_named_t dmu_tx_dirty_delay;
kstat_named_t dmu_tx_dirty_over_max;