diff options
author | Gvozden Neskovic <[email protected]> | 2016-12-03 00:59:35 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-12-02 16:59:35 -0700 |
commit | e8a2014436147d07442e52f854e197082748fca6 (patch) | |
tree | 45eabe29ed4c7848ffe15f81e09d1e948096828b /module/zfs | |
parent | baf67d15a59025fb53fc60bf439ef291397366e8 (diff) |
Cache ddt_get_dedup_dspace() value if there was no ddt changes
Save and reuse ddt dspace calculation when there have been no ddt changes.
This avoids unnecessary traversal of 168KiB of ddt histograms.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Gvozden Neskovic <[email protected]>
Closes #5425
Diffstat (limited to 'module/zfs')
-rw-r--r-- | module/zfs/ddt.c | 13 | ||||
-rw-r--r-- | module/zfs/spa_misc.c | 3 |
2 files changed, 14 insertions, 2 deletions
diff --git a/module/zfs/ddt.c b/module/zfs/ddt.c index cbec70057..75ab7f5b2 100644 --- a/module/zfs/ddt.c +++ b/module/zfs/ddt.c @@ -529,10 +529,17 @@ ddt_get_dedup_stats(spa_t *spa, ddt_stat_t *dds_total) uint64_t ddt_get_dedup_dspace(spa_t *spa) { - ddt_stat_t dds_total = { 0 }; + ddt_stat_t dds_total; + + if (spa->spa_dedup_dspace != ~0ULL) + return (spa->spa_dedup_dspace); + + bzero(&dds_total, sizeof (ddt_stat_t)); + /* Calculate and cache the stats */ ddt_get_dedup_stats(spa, &dds_total); - return (dds_total.dds_ref_dsize - dds_total.dds_dsize); + spa->spa_dedup_dspace = dds_total.dds_ref_dsize - dds_total.dds_dsize; + return (spa->spa_dedup_dspace); } uint64_t @@ -915,6 +922,7 @@ ddt_load(spa_t *spa) */ bcopy(ddt->ddt_histogram, &ddt->ddt_histogram_cache, sizeof (ddt->ddt_histogram)); + spa->spa_dedup_dspace = ~0ULL; } return (0); @@ -1182,6 +1190,7 @@ ddt_sync_table(ddt_t *ddt, dmu_tx_t *tx, uint64_t txg) bcopy(ddt->ddt_histogram, &ddt->ddt_histogram_cache, sizeof (ddt->ddt_histogram)); + spa->spa_dedup_dspace = ~0ULL; } void diff --git a/module/zfs/spa_misc.c b/module/zfs/spa_misc.c index 6ec05214e..909002cf5 100644 --- a/module/zfs/spa_misc.c +++ b/module/zfs/spa_misc.c @@ -635,6 +635,9 @@ spa_add(const char *name, nvlist_t *config, const char *altroot) spa->spa_min_ashift = INT_MAX; spa->spa_max_ashift = 0; + /* Reset cached value */ + spa->spa_dedup_dspace = ~0ULL; + /* * As a pool is being created, treat all features as disabled by * setting SPA_FEATURE_DISABLED for all entries in the feature |