Remove set but not used variable in ddt.c (#16522)
module/zfs/ddt.c:2612:6: error: variable 'total' set but not used Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de> Reviewed-by: Alexander Motin <mav@FreeBSD.org> Reviewed-by: Tony Hutter <hutter2@llnl.gov>
This commit is contained in:
parent
308f7c2f14
commit
1713aa7b4d
|
@ -2609,7 +2609,7 @@ ddt_prune_walk(spa_t *spa, uint64_t cutoff, ddt_age_histo_t *histogram)
|
||||||
};
|
};
|
||||||
ddt_lightweight_entry_t ddlwe = {0};
|
ddt_lightweight_entry_t ddlwe = {0};
|
||||||
int error;
|
int error;
|
||||||
int total = 0, valid = 0;
|
int valid = 0;
|
||||||
int candidates = 0;
|
int candidates = 0;
|
||||||
uint64_t now = gethrestime_sec();
|
uint64_t now = gethrestime_sec();
|
||||||
ddt_prune_info_t dpi;
|
ddt_prune_info_t dpi;
|
||||||
|
@ -2633,7 +2633,6 @@ ddt_prune_walk(spa_t *spa, uint64_t cutoff, ddt_age_histo_t *histogram)
|
||||||
|
|
||||||
if (spa_shutting_down(spa) || issig())
|
if (spa_shutting_down(spa) || issig())
|
||||||
break;
|
break;
|
||||||
total++;
|
|
||||||
|
|
||||||
ASSERT(ddt->ddt_flags & DDT_FLAG_FLAT);
|
ASSERT(ddt->ddt_flags & DDT_FLAG_FLAT);
|
||||||
ASSERT3U(ddlwe.ddlwe_phys.ddp_flat.ddp_refcnt, <=, 1);
|
ASSERT3U(ddlwe.ddlwe_phys.ddp_flat.ddp_refcnt, <=, 1);
|
||||||
|
|
Loading…
Reference in New Issue