]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson: add missing includes 68790/head
authorMax Kellermann <max.kellermann@ionos.com>
Wed, 15 Apr 2026 06:09:26 +0000 (08:09 +0200)
committerMax Kellermann <max.kellermann@ionos.com>
Thu, 7 May 2026 09:34:43 +0000 (11:34 +0200)
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
src/crimson/admin/admin_socket.cc
src/crimson/admin/pg_commands.cc
src/crimson/mgr/client.cc
src/crimson/net/FrameAssemblerV2.h
src/crimson/net/Socket.cc
src/crimson/net/SocketMessenger.cc
src/crimson/osd/pg_backend.cc
src/crimson/osd/scheduler/mclock_scheduler.cc
src/test/crimson/seastore/test_seastore.cc
src/test/crimson/test_alien_echo.cc

index 56dee2def0bb62c02128fc5f4529b19743f1cd73..16012045324f889e0597c0eac5dd4ba10f2310b2 100644 (file)
 #include <seastar/core/thread.hh>
 #include <seastar/util/std-compat.hh>
 
+#include "common/errno.h" // for cpp_strerror()
 #include "common/options.h"
 #include "common/version.h"
 #include "messages/MCommand.h"
 #include "messages/MCommandReply.h"
+#include "crimson/common/config_proxy.h" // for local_conf()
 #include "crimson/common/log.h"
 #include "crimson/net/Socket.h"
 #include "crimson/net/Connection.h"
index 38f357029224e12f27f6757bb34299ebb66a33aa..f8cc4c6a1554fe231dc747f878b2b318dbe3fbc2 100644 (file)
@@ -9,6 +9,7 @@
 #include <utility>
 
 #include <fmt/format.h>
+#include <json_spirit/json_spirit.h>
 #include <seastar/core/future.hh>
 
 #include "crimson/admin/admin_socket.h"
index 9e6102ae75c13d24bf2d8d14347a18998a576d3d..3980df47f9e2b7dcfe1e17e1d0b5053d2ccb3957 100644 (file)
@@ -6,6 +6,7 @@
 #include <seastar/core/sleep.hh>
 #include <seastar/util/defer.hh>
 
+#include "crimson/common/config_proxy.h" // for local_conf()
 #include "crimson/common/log.h"
 #include "crimson/net/Connection.h"
 #include "crimson/net/Messenger.h"
index e4dd27c22f30e73d798d232b6d0661c9d057718f..2cb948c867bb727110ce53d3a09af5435cb22b05 100644 (file)
@@ -7,6 +7,7 @@
 #include "msg/async/crypto_onwire.h"
 #include "msg/async/compression_onwire.h"
 
+#include "crimson/common/config_proxy.h" // for local_conf()
 #include "crimson/common/gated.h"
 #include "crimson/net/Socket.h"
 
index 51e77751e40eb927fa3190a882ca5f17d5eefd76..97f25dcc42716f277808e63e013d816ff95babd2 100644 (file)
@@ -7,6 +7,7 @@
 #include <seastar/core/when_all.hh>
 #include <seastar/net/packet.hh>
 
+#include "crimson/common/config_proxy.h" // for local_conf()
 #include "crimson/common/log.h"
 #include "include/random.h" // for ceph::util::generate_random_number()
 #include "Errors.h"
index 49e8c8ca350a6e2243ac7e680fe12984ffed01d5..73cb2bfb3988dd3f3b78fe82db39b5f642d2cd27 100644 (file)
@@ -23,6 +23,7 @@
 #include <fmt/std.h>
 
 #include "auth/Auth.h"
+#include "crimson/common/config_proxy.h" // for local_conf()
 #include "Errors.h"
 #include "Socket.h"
 
index 6f7a670fced74bb9be9cb220c6dacd4addb2289f..d0c9ff412d5f9d5aa516189131a607eded11a5c5 100644 (file)
@@ -10,6 +10,7 @@
 #include <boost/range/algorithm/copy.hpp>
 #include <fmt/format.h>
 #include <fmt/ostream.h>
+#include "include/err.h" // for MAX_ERRNO
 #include "include/utime_fmt.h"
 #include <seastar/core/print.hh>
 
index 185f75ffb801ac8b68c23a2c9032348809889f0e..fc1465ec501d53b81a936bb26f82e0a879922f42 100644 (file)
@@ -18,6 +18,7 @@
 #include <functional>
 
 #include "crimson/osd/scheduler/mclock_scheduler.h"
+#include "common/debug.h"
 #include "common/dout.h"
 
 #define dout_context cct
index 166ad7b3de3e8abddbe62cbe29eab69f99d9ea2f..c689b45f7f82d21fa8dd15300bb40a5f417d9a6e 100644 (file)
@@ -13,6 +13,8 @@
 #include "crimson/os/seastore/seastore.h"
 #include "crimson/os/seastore/onode.h"
 
+#include "common/strtol.h" // for ritoa()
+
 using namespace crimson;
 using namespace crimson::os;
 using namespace crimson::os::seastore;
index b48f3a748869cc0050d0d47b23a2a8502f0be69d..7cbc2f669a4e0417255ab4bf5f680700d82fd1c1 100644 (file)
@@ -4,6 +4,7 @@
 #include "messages/MPing.h"
 #include "common/ceph_argparse.h"
 #include "crimson/auth/DummyAuth.h"
+#include "crimson/common/config_proxy.h" // for local_conf()
 #include "crimson/common/throttle.h"
 #include "crimson/net/Connection.h"
 #include "crimson/net/Dispatcher.h"