From ee664d463189d6302877461967afe21ce9d861a0 Mon Sep 17 00:00:00 2001 From: Ying Zhu Date: Tue, 30 Apr 2013 11:15:12 +0800 Subject: [PATCH] Fix incorrect assertions in ddt_phys_decref and ddt_sync_entry The assertions in ddt_phys_decref and ddt_sync_entry cast ddp->ddp_refcnt from uint64_t to int64_t, with a reference count bigger than 2^63, e.g. the reference count of zero blocks commonly available in spare files, we may mistakenly hit these assertations, so drop the type conversions here. Signed-off-by: Ying Zhu Signed-off-by: Brian Behlendorf Closes #1436 --- module/zfs/ddt.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/module/zfs/ddt.c b/module/zfs/ddt.c index 2d8763a54..286f3bb60 100644 --- a/module/zfs/ddt.c +++ b/module/zfs/ddt.c @@ -324,7 +324,7 @@ void ddt_phys_decref(ddt_phys_t *ddp) { if (ddp) { - ASSERT((int64_t)ddp->ddp_refcnt > 0); + ASSERT(ddp->ddp_refcnt > 0); ddp->ddp_refcnt--; } } @@ -1058,7 +1058,6 @@ ddt_sync_entry(ddt_t *ddt, ddt_entry_t *dde, dmu_tx_t *tx, uint64_t txg) for (p = 0; p < DDT_PHYS_TYPES; p++, ddp++) { ASSERT(dde->dde_lead_zio[p] == NULL); - ASSERT((int64_t)ddp->ddp_refcnt >= 0); if (ddp->ddp_phys_birth == 0) { ASSERT(ddp->ddp_refcnt == 0); continue; -- 2.40.0