From 90484deb9f0798bdc953643a564100735ce4b19f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 28 Oct 2024 21:56:58 +0100 Subject: [PATCH] common/PriorityCache: add missing include Signed-off-by: Max Kellermann --- src/common/PriorityCache.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/common/PriorityCache.cc b/src/common/PriorityCache.cc index 0fe781b3e1e..fa845991d7f 100644 --- a/src/common/PriorityCache.cc +++ b/src/common/PriorityCache.cc @@ -15,6 +15,13 @@ #include "PriorityCache.h" #include "common/dout.h" #include "perfglue/heap_profiler.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_context cct #define dout_subsys ceph_subsys_prioritycache #undef dout_prefix -- 2.47.3