From 4005b88865255cf3b8902487e91c2c8038af19ff Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sat, 4 Apr 2026 17:37:47 +0300 Subject: [PATCH] Do not use node_type --- src/blockstore/v1/impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockstore/v1/impl.cpp b/src/blockstore/v1/impl.cpp index 8cb04697..71c1b987 100644 --- a/src/blockstore/v1/impl.cpp +++ b/src/blockstore/v1/impl.cpp @@ -877,7 +877,7 @@ uint64_t blockstore_impl_t::get_garbage_entries() uint64_t blockstore_impl_t::get_garbage_memory() { - return sizeof(blockstore_dirty_db_t::node_type) * dirty_db.size(); + return (sizeof(obj_ver_id) + sizeof(dirty_entry) + 32) * dirty_db.size(); } } // namespace v1