]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/memstore: add missing includes 61888/head
authorMax Kellermann <max.kellermann@ionos.com>
Thu, 10 Oct 2024 06:50:37 +0000 (08:50 +0200)
committerMax Kellermann <max.kellermann@ionos.com>
Thu, 20 Feb 2025 15:29:19 +0000 (16:29 +0100)
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
src/os/kstore/KStore.cc
src/os/memstore/MemStore.cc
src/os/memstore/MemStore.h

index 93c268884da2a2c20697c8aac010b93f35cccbf0..80e4609f6d16df0d84915ca789ab5c07dcac0cfb 100644 (file)
@@ -28,6 +28,7 @@
 #include "os/kv.h"
 #include "include/compat.h"
 #include "include/stringify.h"
+#include "common/debug.h"
 #include "common/errno.h"
 #include "common/safe_io.h"
 #include "common/Formatter.h"
index 01ca4c3fa513ac328f3512e31db1f73ef662b040..9b88b4eddfc4d6fe79b82879aa26d40dbeae217e 100644 (file)
@@ -23,6 +23,7 @@
 
 #include "include/types.h"
 #include "include/stringify.h"
+#include "common/debug.h"
 #include "common/errno.h"
 #include "MemStore.h"
 #include "include/compat.h"
index d9f04501b29523f82ada51b7edd1427cc5342d29..fc0bc96db7beea3e16d052aabdfa6776b7957b65 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <atomic>
 #include <mutex>
+#include <shared_mutex> // for std::shared_lock
 #include <unordered_map>
 
 #include <boost/intrusive_ptr.hpp>