From 0ad46affde748d8b92bbdf43a0bde51cde6178be Mon Sep 17 00:00:00 2001 From: Radoslaw Zarzynski Date: Wed, 17 Jun 2020 18:35:47 +0200 Subject: [PATCH] Revert "crimson/os: disable alienized bluestore if using seastar allocator" This reverts commit db84151ed728f6951f891690e3bb704139e2ed9a. It's not necessary as further commits will bring experimental (and restricted) support for running AlienStore on top of the default Seastar's allocator. Signed-off-by: Radoslaw Zarzynski --- src/crimson/os/futurized_store.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/crimson/os/futurized_store.cc b/src/crimson/os/futurized_store.cc index e4c2670730e..bb73c34787f 100644 --- a/src/crimson/os/futurized_store.cc +++ b/src/crimson/os/futurized_store.cc @@ -12,11 +12,7 @@ FuturizedStore::create(const std::string& type, if (type == "memstore") { return std::make_unique(data); } else if (type == "bluestore") { -#ifdef SEASTAR_DEFAULT_ALLOCATOR return std::make_unique(data, values); -#else - #warning please define SEASTAR_DEFAULT_ALLOCATOR for using alien store -#endif } else { ceph_abort_msgf("unsupported objectstore type: %s", type.c_str()); return {}; -- 2.39.5