From 665cc5f80ae690d07972e3962cb4cff157a73e06 Mon Sep 17 00:00:00 2001 From: Igor Fedotov Date: Wed, 21 May 2025 11:30:15 +0300 Subject: [PATCH] os/bluestore: rename row names in RocksDBBlueFSVolumeSelector. Signed-off-by: Igor Fedotov (cherry picked from commit a9f591f4e1cb1e364879165250c55cb0f841d64f) --- src/os/bluestore/BlueFS.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/os/bluestore/BlueFS.cc b/src/os/bluestore/BlueFS.cc index 73c3ace4118f..97d9caeb8440 100644 --- a/src/os/bluestore/BlueFS.cc +++ b/src/os/bluestore/BlueFS.cc @@ -5485,13 +5485,13 @@ void RocksDBBlueFSVolumeSelector::dump(ostream& sout) { sout.width(width); switch (l + LEVEL_FIRST) { case LEVEL_LOG: - sout << "LOG"; break; + sout << "log"; break; case LEVEL_WAL: - sout << "WAL"; break; + sout << "db.wal"; break; case LEVEL_DB: - sout << "DB"; break; + sout << "db"; break; case LEVEL_SLOW: - sout << "SLOW"; break; + sout << "db.slow"; break; case LEVEL_MAX: sout << "TOTAL"; break; } @@ -5512,13 +5512,13 @@ void RocksDBBlueFSVolumeSelector::dump(ostream& sout) { sout.width(width); switch (l + LEVEL_FIRST) { case LEVEL_LOG: - sout << "LOG"; break; + sout << "log"; break; case LEVEL_WAL: - sout << "WAL"; break; + sout << "db.wal"; break; case LEVEL_DB: - sout << "DB"; break; + sout << "db"; break; case LEVEL_SLOW: - sout << "SLOW"; break; + sout << "db.slow"; break; case LEVEL_MAX: sout << "TOTAL"; break; } -- 2.47.3