From 33037eccf07ded85ba9127bde333184a4de8f060 Mon Sep 17 00:00:00 2001 From: Igor Fedotov Date: Mon, 14 Mar 2022 21:12:01 +0300 Subject: [PATCH] tool/ceph-bluestore-tool: fix wrong keyword for 'free-fragmentation' command. Signed-off-by: Igor Fedotov --- src/os/bluestore/bluestore_tool.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/bluestore/bluestore_tool.cc b/src/os/bluestore/bluestore_tool.cc index 2f1a7847ae69..5cc8f04c7f05 100644 --- a/src/os/bluestore/bluestore_tool.cc +++ b/src/os/bluestore/bluestore_tool.cc @@ -1028,7 +1028,7 @@ int main(int argc, char **argv) } return r; } - } else if (action == "free-dump" || action == "free-score" || action == "fragmentation") { + } else if (action == "free-dump" || action == "free-score" || action == "free-fragmentation") { AdminSocket *admin_socket = g_ceph_context->get_admin_socket(); ceph_assert(admin_socket); std::string action_name = action == "free-dump" ? "dump" : -- 2.47.3