From: Max Kellermann Date: Sun, 27 Oct 2024 12:57:52 +0000 (+0100) Subject: osd/scheduler: add missing includes X-Git-Tag: testing/wip-vshankar-testing-20250407.170244-debug~45^2~15 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ac4d239a7b4a949063c5b0e5699d80d6e453dc0d;p=ceph-ci.git osd/scheduler: add missing includes Signed-off-by: Max Kellermann --- diff --git a/src/osd/scheduler/mClockScheduler.cc b/src/osd/scheduler/mClockScheduler.cc index 8d887282ebe..33f2d6b7906 100644 --- a/src/osd/scheduler/mClockScheduler.cc +++ b/src/osd/scheduler/mClockScheduler.cc @@ -17,7 +17,13 @@ #include #include "osd/scheduler/mClockScheduler.h" -#include "common/dout.h" +#include "common/debug.h" + +#ifdef WITH_SEASTAR +#include "crimson/common/perf_counters_collection.h" +#else +#include "common/perf_counters_collection.h" +#endif namespace dmc = crimson::dmclock; using namespace std::placeholders;