diff options
Diffstat (limited to 'src/librbd/librbd.cc')
-rw-r--r-- | src/librbd/librbd.cc | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/src/librbd/librbd.cc b/src/librbd/librbd.cc index 683dda3bbf0..a025a12c7f7 100644 --- a/src/librbd/librbd.cc +++ b/src/librbd/librbd.cc @@ -11,28 +11,26 @@ * Foundation. See file COPYING. * */ - -#include <errno.h> #include <inttypes.h> +#include <errno.h> +#include <algorithm> +#include <string> +#include <vector> +#include "include/Context.h" +#include "include/rbd/librbd.hpp" #include "common/Cond.h" #include "common/debug.h" #include "common/errno.h" #include "common/snap_types.h" #include "common/perf_counters.h" -#include "include/Context.h" -#include "include/rbd/librbd.hpp" #include "osdc/ObjectCacher.h" - -#include "librbd/AioCompletion.h" #include "cls/rbd/cls_rbd_client.h" -#include "librbd/ImageCtx.h" -#include "librbd/internal.h" -#include "librbd/LibrbdWriteback.h" -#include <algorithm> -#include <string> -#include <vector> +#include "AioCompletion.h" +#include "ImageCtx.h" +#include "internal.h" +#include "LibrbdWriteback.h" #define dout_subsys ceph_subsys_rbd #undef dout_prefix |