]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/osd/osd.cc: Add cluster_osdmap_trim_lower_bound to print
authorMatan Breizman <mbreizma@redhat.com>
Wed, 1 Feb 2023 09:46:57 +0000 (09:46 +0000)
committerMatan Breizman <mbreizma@redhat.com>
Tue, 16 May 2023 10:36:52 +0000 (10:36 +0000)
Note: this commit was manually fixed (crimson only)

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
(cherry picked from commit 27584ffcd6bb5aaa7606f80646808687bdc54f38)

src/crimson/osd/osd.cc

index 8f5a7f9d473e320cd5c4fe712b28d342481f9709..a1acaa0dcc6f89714408926f580b26b25081b88f 100644 (file)
@@ -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}";
 }