X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Flibrbd%2Fio%2FAsyncOperation.h;fp=src%2Fceph%2Fsrc%2Flibrbd%2Fio%2FAsyncOperation.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=5839a6964ba3de920c77d6656afec315b220b555;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/librbd/io/AsyncOperation.h b/src/ceph/src/librbd/io/AsyncOperation.h deleted file mode 100644 index 5839a69..0000000 --- a/src/ceph/src/librbd/io/AsyncOperation.h +++ /dev/null @@ -1,52 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab - -#ifndef LIBRBD_IO_ASYNC_OPERATION_H -#define LIBRBD_IO_ASYNC_OPERATION_H - -#include "include/assert.h" -#include "include/xlist.h" -#include - -class Context; - -namespace librbd { - -class ImageCtx; - -namespace io { - -class AsyncOperation { -public: - - AsyncOperation() - : m_image_ctx(NULL), m_xlist_item(this) - { - } - - ~AsyncOperation() - { - assert(!m_xlist_item.is_on_list()); - } - - inline bool started() const { - return m_xlist_item.is_on_list(); - } - - void start_op(ImageCtx &image_ctx); - void finish_op(); - - void add_flush_context(Context *on_finish); - -private: - - ImageCtx *m_image_ctx; - xlist::item m_xlist_item; - std::list m_flush_contexts; - -}; - -} // namespace io -} // namespace librbd - -#endif // LIBRBD_IO_ASYNC_OPERATION_H