Skip to content

Commit 5ca8173

Browse files
committed
common/TrackedOp: add missing includes
Signed-off-by: Max Kellermann <[email protected]>
1 parent b24aaba commit 5ca8173

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/common/TrackedOp.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,15 @@
1616

1717
#include <atomic>
1818
#include "common/StackStringStream.h"
19+
#include "common/ceph_context.h"
1920
#include "common/ceph_mutex.h"
21+
#include "common/debug.h"
22+
#include "common/Formatter.h"
2023
#include "common/histogram.h"
2124
#include "common/perf_counters.h" // for class PerfCountersBuilder
2225
#include "common/Thread.h"
2326
#include "common/Clock.h"
27+
#include "common/zipkin_trace.h"
2428
#include "include/spinlock.h"
2529
#include "msg/Message.h"
2630

@@ -30,6 +34,14 @@
3034
#include "common/perf_counters_collection.h"
3135
#endif
3236

37+
#include <boost/intrusive/list.hpp>
38+
#include <boost/intrusive_ptr.hpp>
39+
40+
#include <atomic>
41+
#include <list>
42+
#include <set>
43+
#include <vector>
44+
3345
#define OPTRACKER_PREALLOC_EVENTS 20
3446

3547
class TrackedOp;

0 commit comments

Comments
 (0)