From b26f4dd05afaaed50e9f7cdfb91d09ea0c91ba99 Mon Sep 17 00:00:00 2001 From: Alex Ainscow Date: Tue, 3 Mar 2026 10:41:11 +0000 Subject: [PATCH] osd: Remove unused osd_perf_counter "scrbcnt_write_blocked" This counter is no longer needed in umbrella. Signed-off-by: Alex Ainscow --- src/osd/osd_perf_counters.cc | 1 - src/osd/osd_perf_counters.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/osd/osd_perf_counters.cc b/src/osd/osd_perf_counters.cc index cbd7bb88b9c..203990b0873 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 dc23919a34f..8ae219b768d 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, }; -- 2.47.3