From bf180f5292e6f23f581e27a841cc04497b3c34cb Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sun, 29 Jun 2025 20:17:13 +0300 Subject: [PATCH] Two more unordered_maps --- src/blockstore/blockstore_heap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blockstore/blockstore_heap.h b/src/blockstore/blockstore_heap.h index eae32c20..168afadc 100644 --- a/src/blockstore/blockstore_heap.h +++ b/src/blockstore/blockstore_heap.h @@ -142,8 +142,8 @@ class blockstore_heap_t uint64_t meta_used_space = 0; multilist_alloc_t *buffer_alloc = NULL; std::map object_mvcc; - std::map mvcc_data_refs; - std::map mvcc_buffer_refs; + std::unordered_map mvcc_data_refs; + std::unordered_map mvcc_buffer_refs; std::map inode_space_stats; uint64_t buffer_area_used_space = 0; uint64_t data_used_space = 0;