From: Max Kellermann Date: Mon, 28 Oct 2024 21:22:53 +0000 (+0100) Subject: mon/Monitor: add missing includes X-Git-Tag: v20.0.0~154^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a0b4583d3d7f986197a300fab08eaec9851bc6a5;p=ceph.git mon/Monitor: add missing includes Signed-off-by: Max Kellermann --- diff --git a/src/mon/Monitor.cc b/src/mon/Monitor.cc index d64ef16e4bd1..7226d0f26d19 100644 --- a/src/mon/Monitor.cc +++ b/src/mon/Monitor.cc @@ -12,7 +12,9 @@ * */ +#include "Monitor.h" +#include // for std::setw() #include #include #include @@ -26,11 +28,11 @@ #include "json_spirit/json_spirit_reader.h" #include "json_spirit/json_spirit_writer.h" -#include "Monitor.h" #include "common/version.h" #include "common/blkdev.h" #include "common/cmdparse.h" #include "common/signal.h" +#include "crush/CrushWrapper.h" #include "osd/OSDMap.h" @@ -94,6 +96,12 @@ #include "auth/none/AuthNoneClientHandler.h" +#if defined(WITH_SEASTAR) && !defined(WITH_ALIEN) +#include "crimson/common/perf_counters_collection.h" +#else +#include "common/perf_counters_collection.h" +#endif + #define dout_subsys ceph_subsys_mon #undef dout_prefix #define dout_prefix _prefix(_dout, this)