]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/osd: reorder includes
authorKefu Chai <kchai@redhat.com>
Sat, 7 Mar 2020 10:55:22 +0000 (18:55 +0800)
committerKefu Chai <kchai@redhat.com>
Mon, 9 Mar 2020 03:49:57 +0000 (11:49 +0800)
to follow
https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/crimson/osd/osd.cc

index a7ac211529e5c8e05c44a8c1fbfa7b11708e5715..f0c1724f30ed9592ce18fa6f061c0f8b2fbbe9b9 100644 (file)
@@ -3,13 +3,16 @@
 
 #include "osd.h"
 
+#include <sys/utsname.h>
+
 #include <boost/iterator/counting_iterator.hpp>
 #include <boost/range/join.hpp>
 #include <boost/smart_ptr/make_local_shared.hpp>
 #include <fmt/format.h>
 #include <fmt/ostream.h>
-#include <sys/utsname.h>
+
 #include "common/pick_address.h"
+#include "include/util.h"
 
 #include "messages/MOSDAlive.h"
 #include "messages/MOSDBeacon.h"
@@ -41,7 +44,6 @@
 #include "crimson/osd/osd_operations/peering_event.h"
 #include "crimson/osd/osd_operations/pg_advance_map.h"
 #include "crimson/osd/osd_operations/replicated_request.h"
-#include "include/util.h"
 
 namespace {
   seastar::logger& logger() {