From: Max Kellermann Date: Mon, 17 Feb 2025 07:58:43 +0000 (+0100) Subject: common/TrackedOp: add missing includes X-Git-Tag: v20.3.0~375^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5ca8173af56b8635124d54a69edd2383427f5148;p=ceph.git common/TrackedOp: add missing includes Signed-off-by: Max Kellermann --- diff --git a/src/common/TrackedOp.h b/src/common/TrackedOp.h index 2cfe470488ff..131ce9a369f0 100644 --- a/src/common/TrackedOp.h +++ b/src/common/TrackedOp.h @@ -16,11 +16,15 @@ #include #include "common/StackStringStream.h" +#include "common/ceph_context.h" #include "common/ceph_mutex.h" +#include "common/debug.h" +#include "common/Formatter.h" #include "common/histogram.h" #include "common/perf_counters.h" // for class PerfCountersBuilder #include "common/Thread.h" #include "common/Clock.h" +#include "common/zipkin_trace.h" #include "include/spinlock.h" #include "msg/Message.h" @@ -30,6 +34,14 @@ #include "common/perf_counters_collection.h" #endif +#include +#include + +#include +#include +#include +#include + #define OPTRACKER_PREALLOC_EVENTS 20 class TrackedOp;