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/ec_backend.cc | |
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/ec_backend.cc')
-rw-r--r-- | src/crimson/osd/ec_backend.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crimson/osd/ec_backend.cc b/src/crimson/osd/ec_backend.cc index cc136528278..5b4db3c1d9c 100644 --- a/src/crimson/osd/ec_backend.cc +++ b/src/crimson/osd/ec_backend.cc @@ -4,7 +4,7 @@ ECBackend::ECBackend(shard_id_t shard, ECBackend::CollectionRef coll, - ceph::osd::ShardServices& shard_services, + crimson::osd::ShardServices& shard_services, const ec_profile_t&, uint64_t) : PGBackend{shard, coll, &shard_services.get_store()} @@ -21,7 +21,7 @@ seastar::future<bufferlist> ECBackend::_read(const hobject_t& hoid, return seastar::make_ready_future<bufferlist>(); } -seastar::future<ceph::osd::acked_peers_t> +seastar::future<crimson::osd::acked_peers_t> ECBackend::_submit_transaction(std::set<pg_shard_t>&& pg_shards, const hobject_t& hoid, ceph::os::Transaction&& txn, @@ -30,5 +30,5 @@ ECBackend::_submit_transaction(std::set<pg_shard_t>&& pg_shards, eversion_t ver) { // todo - return seastar::make_ready_future<ceph::osd::acked_peers_t>(); + return seastar::make_ready_future<crimson::osd::acked_peers_t>(); } |