From: root Date: Mon, 22 Jun 2026 09:40:34 +0000 (+0000) Subject: os/bluestore: Rename allocator score output label X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bdc16ed02f0256bd11ba89658d1789c99cd0b644;p=ceph.git os/bluestore: Rename allocator score output label This commit changes the output label of the bluestore allocator score command from fragmentation_rating to fragmentation_score Fixes: https://tracker.ceph.com/issues/77331 Signed-off-by: Prachi Lasurkar --- diff --git a/src/os/bluestore/AllocatorBase.cc b/src/os/bluestore/AllocatorBase.cc index 62d78974e27..6cbff53900d 100644 --- a/src/os/bluestore/AllocatorBase.cc +++ b/src/os/bluestore/AllocatorBase.cc @@ -102,7 +102,7 @@ public: f->close_section(); } else if (command == "bluestore allocator score " + name) { f->open_object_section("fragmentation_score"); - f->dump_float("fragmentation_rating", alloc->get_fragmentation_score()); + f->dump_float("fragmentation_score", alloc->get_fragmentation_score()); f->close_section(); } else if (command == "bluestore allocator fragmentation " + name) { f->open_object_section("fragmentation");