From: Max Kellermann Date: Sat, 9 Nov 2024 08:07:04 +0000 (+0100) Subject: ceph_fuse: add missing includes X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d9a720e751d467396dd0fdb3c718f12250afef83;p=ceph.git ceph_fuse: add missing includes Signed-off-by: Max Kellermann --- diff --git a/src/ceph_fuse.cc b/src/ceph_fuse.cc index 68fe30760a77..7e5c43d72cb2 100644 --- a/src/ceph_fuse.cc +++ b/src/ceph_fuse.cc @@ -21,6 +21,7 @@ #include "common/async/context_pool.h" #include "common/config.h" #include "common/errno.h" +#include "log/Log.h" // for g_ceph_context->_log #include "client/Client.h" #include "client/fuse_ll.h" @@ -31,6 +32,7 @@ #include "common/Timer.h" #include "common/ceph_argparse.h" +#include "common/debug.h" #if defined(__linux__) #include "common/linux_version.h" #endif diff --git a/src/client/fuse_ll.cc b/src/client/fuse_ll.cc index b8398bb09b24..47a450792a02 100644 --- a/src/client/fuse_ll.cc +++ b/src/client/fuse_ll.cc @@ -32,6 +32,7 @@ #endif // ceph +#include "common/debug.h" #include "common/errno.h" #include "common/safe_io.h" #include "include/types.h"