From 744b525528a9a386c0357451751d39a7e2de5d62 Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Mon, 1 Sep 2014 20:01:27 -0400 Subject: [PATCH] ck_hs: Account for deletions in apply accounting. --- src/ck_hs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ck_hs.c b/src/ck_hs.c index ea77b9a..5808876 100644 --- a/src/ck_hs.c +++ b/src/ck_hs.c @@ -686,6 +686,8 @@ restart: /* Otherwise, mark slot as deleted. */ ck_pr_store_ptr(slot, CK_HS_TOMBSTONE); + map->n_entries--; + map->tombstones++; return true; }