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>
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 {};