From 27fcfb3175b2bc6a0998f75bd96a190cc4ea7923 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 7 Jul 2020 18:03:58 -0700 Subject: [PATCH] ircd::db: Align column cache allocations to block size. --- ircd/db.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/db.cc b/ircd/db.cc index 6983d6d5c..b354116ed 100644 --- a/ircd/db.cc +++ b/ircd/db.cc @@ -2006,7 +2006,7 @@ ircd::db::database::column::column(database &d, ,allocator { #ifdef IRCD_DB_HAS_ALLOCATOR - std::make_shared(this->d, this, database::allocator::cache_arena) + std::make_shared(this->d, this, database::allocator::cache_arena, descriptor.block_size) #endif } ,handle