]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
Revert "crimson/os: disable alienized bluestore if using seastar allocator"
authorRadoslaw Zarzynski <rzarzyns@redhat.com>
Wed, 17 Jun 2020 16:35:47 +0000 (18:35 +0200)
committerRadoslaw Zarzynski <rzarzyns@redhat.com>
Tue, 23 Jun 2020 08:16:31 +0000 (10:16 +0200)
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 <rzarzyns@redhat.com>
src/crimson/os/futurized_store.cc

index e4c2670730eeb0abc568f38bac1b0965ae1e1960..bb73c34787f126e7cd36c36dd79f195c5545a525 100644 (file)
@@ -12,11 +12,7 @@ FuturizedStore::create(const std::string& type,
   if (type == "memstore") {
     return std::make_unique<crimson::os::CyanStore>(data);
   } else if (type == "bluestore") {
-#ifdef SEASTAR_DEFAULT_ALLOCATOR
     return std::make_unique<crimson::os::AlienStore>(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 {};