]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: Remove unused osd_perf_counter "scrbcnt_write_blocked"
authorAlex Ainscow <aainscow@uk.ibm.com>
Tue, 3 Mar 2026 10:41:11 +0000 (10:41 +0000)
committerAlex Ainscow <aainscow@uk.ibm.com>
Wed, 25 Mar 2026 16:53:04 +0000 (16:53 +0000)
This counter is no longer needed in umbrella.

Signed-off-by: Alex Ainscow <aainscow@uk.ibm.com>
src/osd/osd_perf_counters.cc
src/osd/osd_perf_counters.h

index cbd7bb88b9c7fca2d9b7f581a4cfad91169f79d0..203990b08739af1128eec85cfbb2d1ee48e2f30c 100644 (file)
@@ -554,7 +554,6 @@ PerfCounters *build_scrub_labeled_perf(CephContext *cct, std::string label)
   scrub_perf.add_u64_counter(scrbcnt_chunks_selected, "chunk_selected", "chunk selection during scrubs");
   scrub_perf.add_u64_counter(scrbcnt_chunks_busy, "chunk_busy", "chunk busy during scrubs");
   scrub_perf.add_u64_counter(scrbcnt_blocked, "locked_object", "waiting on locked object events");
-  scrub_perf.add_u64_counter(scrbcnt_write_blocked, "write_blocked_by_scrub", "write blocked by scrub");
 
 
   return scrub_perf.create_perf_counters();
index dc23919a34fa5c11a565109c0a143cfb0bf2e905..8ae219b768d56cc59964df08684400c229b67077 100644 (file)
@@ -277,8 +277,6 @@ enum {
   scrbcnt_chunks_busy,
   /// # waiting on object events
   scrbcnt_blocked,
-  /// # write blocked by the scrub
-  scrbcnt_write_blocked,
 
   scrbcnt_last,
 };