diff options
author | Kefu Chai <kchai@redhat.com> | 2019-10-23 10:08:38 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2019-10-24 06:37:30 +0200 |
commit | 4589fff6bff8dadd7347fccfc62ed4a49e2b101d (patch) | |
tree | 3643bcc9d3e29c60378980897cda62f58c3b2884 /src/crimson/osd/osd_operations/compound_peering_request.h | |
parent | crimson/osd/osd_operation.h: s/ceph_assert/assert/ (diff) | |
download | ceph-4589fff6bff8dadd7347fccfc62ed4a49e2b101d.tar.xz ceph-4589fff6bff8dadd7347fccfc62ed4a49e2b101d.zip |
crimson: s/ceph/crimson/ in namespace names
to help differentiate the symbols shared by classic and crimson osd,
after this change, all crimson code will live in "crimson::" namespaces.
and in a follow-up change, all classic code used by crimson will live in
"ceph::" namespaces.
Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to 'src/crimson/osd/osd_operations/compound_peering_request.h')
-rw-r--r-- | src/crimson/osd/osd_operations/compound_peering_request.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crimson/osd/osd_operations/compound_peering_request.h b/src/crimson/osd/osd_operations/compound_peering_request.h index ac901f83530..495306d75d3 100644 --- a/src/crimson/osd/osd_operations/compound_peering_request.h +++ b/src/crimson/osd/osd_operations/compound_peering_request.h @@ -11,7 +11,7 @@ #include "crimson/net/Connection.h" #include "crimson/osd/osd_operation.h" -namespace ceph::osd { +namespace crimson::osd { class OSD; class PG; @@ -25,12 +25,12 @@ public: private: OSD &osd; - ceph::net::ConnectionRef conn; + crimson::net::ConnectionRef conn; Ref<Message> m; public: CompoundPeeringRequest( - OSD &osd, ceph::net::ConnectionRef conn, Ref<Message> m); + OSD &osd, crimson::net::ConnectionRef conn, Ref<Message> m); void print(std::ostream &) const final; void dump_detail(Formatter *f) const final; |