X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fjournal%2FUtils.cc;fp=src%2Fceph%2Fsrc%2Fjournal%2FUtils.cc;h=2a8d945a3dcd7fafd72a463c5112b9a7d98cf8c9;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/journal/Utils.cc b/src/ceph/src/journal/Utils.cc new file mode 100644 index 0000000..2a8d945 --- /dev/null +++ b/src/ceph/src/journal/Utils.cc @@ -0,0 +1,25 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#include "journal/Utils.h" +#include "include/Context.h" +#include "include/stringify.h" + +namespace journal { +namespace utils { + +std::string get_object_name(const std::string &prefix, uint64_t number) { + return prefix + stringify(number); +} + +std::string unique_lock_name(const std::string &name, void *address) { + return name + " (" + stringify(address) + ")"; +} + +void rados_ctx_callback(rados_completion_t c, void *arg) { + Context *comp = reinterpret_cast(arg); + comp->complete(rados_aio_get_return_value(c)); +} + +} // namespace utils +} // namespace journal