From: Alex Ainscow Date: Tue, 3 Mar 2026 10:41:11 +0000 (+0000) Subject: osd: Remove unused osd_perf_counter "scrbcnt_write_blocked" X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b26f4dd05afaaed50e9f7cdfb91d09ea0c91ba99;p=ceph.git osd: Remove unused osd_perf_counter "scrbcnt_write_blocked" This counter is no longer needed in umbrella. Signed-off-by: Alex Ainscow --- diff --git a/src/osd/osd_perf_counters.cc b/src/osd/osd_perf_counters.cc index cbd7bb88b9c7..203990b08739 100644 --- a/src/osd/osd_perf_counters.cc +++ b/src/osd/osd_perf_counters.cc @@ -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(); diff --git a/src/osd/osd_perf_counters.h b/src/osd/osd_perf_counters.h index dc23919a34fa..8ae219b768d5 100644 --- a/src/osd/osd_perf_counters.h +++ b/src/osd/osd_perf_counters.h @@ -277,8 +277,6 @@ enum { scrbcnt_chunks_busy, /// # waiting on object events scrbcnt_blocked, - /// # write blocked by the scrub - scrbcnt_write_blocked, scrbcnt_last, };