summaryrefslogtreecommitdiffstats
path: root/src/os
diff options
context:
space:
mode:
authorMax Kellermann <max.kellermann@ionos.com>2024-10-27 17:58:52 +0100
committerMax Kellermann <max.kellermann@ionos.com>2024-12-10 11:55:47 +0100
commitc07d370c6684ee7c8e2c84105085564ca6cb9d16 (patch)
treeea54cdcc4b4c87250bf68768fb46ff639136be8c /src/os
parentMerge pull request #60997 from MaxKellermann/sstring__char8_t (diff)
downloadceph-c07d370c6684ee7c8e2c84105085564ca6cb9d16.tar.xz
ceph-c07d370c6684ee7c8e2c84105085564ca6cb9d16.zip
crimson: add missing includes
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
Diffstat (limited to 'src/os')
-rw-r--r--src/os/bluestore/BlueFS.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/os/bluestore/BlueFS.cc b/src/os/bluestore/BlueFS.cc
index 5f4f1a4d48a..e123a0a200a 100644
--- a/src/os/bluestore/BlueFS.cc
+++ b/src/os/bluestore/BlueFS.cc
@@ -5,6 +5,7 @@
#include "bluestore_common.h"
#include "BlueFS.h"
+#include "common/Clock.h" // for ceph_clock_now()
#include "common/debug.h"
#include "common/errno.h"
#include "common/perf_counters.h"
@@ -12,6 +13,12 @@
#include "include/ceph_assert.h"
#include "common/admin_socket.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_bluefs
#undef dout_prefix