summaryrefslogtreecommitdiffstats
path: root/src/crimson/osd/ec_backend.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crimson/osd/ec_backend.h')
-rw-r--r--src/crimson/osd/ec_backend.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crimson/osd/ec_backend.h b/src/crimson/osd/ec_backend.h
index 107c048217b..31c39e93f77 100644
--- a/src/crimson/osd/ec_backend.h
+++ b/src/crimson/osd/ec_backend.h
@@ -14,7 +14,7 @@ class ECBackend : public PGBackend
public:
ECBackend(shard_id_t shard,
CollectionRef coll,
- ceph::osd::ShardServices& shard_services,
+ crimson::osd::ShardServices& shard_services,
const ec_profile_t& ec_profile,
uint64_t stripe_width);
private:
@@ -22,7 +22,7 @@ private:
uint64_t off,
uint64_t len,
uint32_t flags) override;
- seastar::future<ceph::osd::acked_peers_t>
+ seastar::future<crimson::osd::acked_peers_t>
_submit_transaction(std::set<pg_shard_t>&& pg_shards,
const hobject_t& hoid,
ceph::os::Transaction&& txn,
@@ -30,5 +30,5 @@ private:
epoch_t min_epoch, epoch_t max_epoch,
eversion_t ver) final;
CollectionRef coll;
- ceph::os::FuturizedStore* store;
+ crimson::os::FuturizedStore* store;
};