From: Igor Fedotov Date: Tue, 20 Oct 2020 10:59:18 +0000 (+0300) Subject: os/bluestore-tool: no bluefs-slow allocator anymore X-Git-Tag: v17.1.0~2023^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1fe3afae04f9767caf81c729ce8273a96085b8fd;p=ceph.git os/bluestore-tool: no bluefs-slow allocator anymore It was eliminated by https://github.com/ceph/ceph/pull/30838 Signed-off-by: Igor Fedotov --- diff --git a/src/os/bluestore/bluestore_tool.cc b/src/os/bluestore/bluestore_tool.cc index 9497232dc1a..588c5a4e6f3 100644 --- a/src/os/bluestore/bluestore_tool.cc +++ b/src/os/bluestore/bluestore_tool.cc @@ -251,7 +251,7 @@ int main(int argc, char **argv) ("deep", po::value(&fsck_deep), "deep fsck (read all data)") ("key,k", po::value(&key), "label metadata key name") ("value,v", po::value(&value), "label metadata value") - ("allocator", po::value>(&allocs_name), "allocator to inspect: 'block'/'bluefs-wal'/'bluefs-db'/'bluefs-slow'") + ("allocator", po::value>(&allocs_name), "allocator to inspect: 'block'/'bluefs-wal'/'bluefs-db'") ("sharding", po::value(&new_sharding), "new sharding to apply") ("resharding-ctrl", po::value(&resharding_ctrl), "gives control over resharding procedure details") ; @@ -399,14 +399,13 @@ int main(int argc, char **argv) if (!name.empty() && name != "block" && name != "bluefs-db" && - name != "bluefs-wal" && - name != "bluefs-slow") { + name != "bluefs-wal") { cerr << "unknown allocator '" << name << "'" << std::endl; exit(EXIT_FAILURE); } } if (allocs_name.empty()) - allocs_name = vector{"block", "bluefs-db", "bluefs-wal", "bluefs-slow"}; + allocs_name = vector{"block", "bluefs-db", "bluefs-wal"}; } if (action == "reshard") { if (path.empty()) {