From: Kefu Chai Date: Tue, 29 Jun 2021 06:58:24 +0000 (+0800) Subject: osd/PrimaryLogPG: reorder #includes X-Git-Tag: v17.1.0~1517^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=34642418c8376a535e77625ef90431e8650df57e;p=ceph.git osd/PrimaryLogPG: reorder #includes so the oder of includes complies to https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes Signed-off-by: Kefu Chai --- diff --git a/src/osd/PrimaryLogPG.cc b/src/osd/PrimaryLogPG.cc index 75e070115e1..463d3e1655e 100644 --- a/src/osd/PrimaryLogPG.cc +++ b/src/osd/PrimaryLogPG.cc @@ -15,10 +15,15 @@ * */ +#include + #include +#include +#include + +#include +#include -#include "boost/tuple/tuple.hpp" -#include "boost/intrusive_ptr.hpp" #include "PG.h" #include "pg_scrubber.h" #include "PrimaryLogPG.h" @@ -32,9 +37,12 @@ #include "cls/cas/cls_cas_ops.h" #include "common/ceph_crypto.h" +#include "common/config.h" #include "common/errno.h" #include "common/scrub_types.h" #include "common/perf_counters.h" +#include "common/CDC.h" +#include "common/EventTrace.h" #include "messages/MOSDOp.h" #include "messages/MOSDBackoff.h" @@ -48,9 +56,7 @@ #include "messages/MOSDPGUpdateLogMissingReply.h" #include "messages/MCommandReply.h" #include "messages/MOSDScrubReserve.h" -#include "common/EventTrace.h" -#include "common/config.h" #include "include/compat.h" #include "mon/MonClient.h" #include "osdc/Objecter.h" @@ -71,16 +77,10 @@ #undef dout_prefix #define dout_prefix _prefix(_dout, this) -#include -#include - -#include #ifdef HAVE_JAEGER #include "common/tracer.h" #endif -#include - MEMPOOL_DEFINE_OBJECT_FACTORY(PrimaryLogPG, replicatedpg, osd); using std::list;