]> git.proxmox.com Git - ceph.git/blame - ceph/src/crimson/os/seastore/collection_manager.cc
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / crimson / os / seastore / collection_manager.cc
CommitLineData
20effc67
TL
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3//
4#include "crimson/os/seastore/collection_manager.h"
5#include "crimson/os/seastore/transaction_manager.h"
6#include "crimson/os/seastore/collection_manager/flat_collection_manager.h"
7
8namespace crimson::os::seastore::collection_manager {
9
10CollectionManagerRef create_coll_manager(TransactionManager &trans_manager) {
11 return CollectionManagerRef(new FlatCollectionManager(trans_manager));
12}
13
14}