From f1259ebbfefb453b4d8e2e4dca49bb41be767d32 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/BlueStore.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index e78f6fbd9ce1..acaccb945b34 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -19360,13 +19360,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; } @@ -19387,13 +19387,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