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: v16.2.14~69^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=16fe4cced9841f2150d2f507de45e5d7c6d5da85;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 521cb9ba3bb..71e44d7846d 100644 --- a/src/crimson/osd/osd.cc +++ b/src/crimson/osd/osd.cc @@ -518,7 +518,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}"; }