From: Matan Breizman Date: Wed, 1 Feb 2023 09:46:57 +0000 (+0000) Subject: crimson/osd/osd.cc: Add cluster_osdmap_trim_lower_bound to print X-Git-Tag: v17.2.7~393^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ac4b0d9aeabb21b25c852598214d4c2b56c9b538;p=ceph.git crimson/osd/osd.cc: Add cluster_osdmap_trim_lower_bound to print Note: this commit was manually fixed (crimson only) Signed-off-by: Matan Breizman (cherry picked from commit 27584ffcd6bb5aaa7606f80646808687bdc54f38) --- diff --git a/src/crimson/osd/osd.cc b/src/crimson/osd/osd.cc index 8f5a7f9d473e..a1acaa0dcc6f 100644 --- a/src/crimson/osd/osd.cc +++ b/src/crimson/osd/osd.cc @@ -616,7 +616,9 @@ void OSD::print(std::ostream& out) const { out << "{osd." << superblock.whoami << " " << superblock.osd_fsid << " [" << superblock.oldest_map - << "," << superblock.newest_map << "] " << pg_map.get_pgs().size() + << "," << superblock.newest_map << "] " + << "tlb:" << superblock.cluster_osdmap_trim_lower_bound + << " " << pg_map.get_pgs().size() << " pgs}"; }