X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Flibrbd%2Fmanaged_lock%2FGetLockerRequest.h;fp=src%2Fceph%2Fsrc%2Flibrbd%2Fmanaged_lock%2FGetLockerRequest.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=9a245d8820597826fd2c03d278ca36e34a03c3af;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/librbd/managed_lock/GetLockerRequest.h b/src/ceph/src/librbd/managed_lock/GetLockerRequest.h deleted file mode 100644 index 9a245d8..0000000 --- a/src/ceph/src/librbd/managed_lock/GetLockerRequest.h +++ /dev/null @@ -1,58 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab - -#ifndef CEPH_LIBRBD_MANAGED_LOCK_GET_LOCKER_REQUEST_H -#define CEPH_LIBRBD_MANAGED_LOCK_GET_LOCKER_REQUEST_H - -#include "include/int_types.h" -#include "include/buffer.h" - -class Context; - -namespace librados { class IoCtx; } - -namespace librbd { - -struct ImageCtx; - -namespace managed_lock { - -struct Locker; - -template -class GetLockerRequest { -public: - static GetLockerRequest* create(librados::IoCtx& ioctx, - const std::string& oid, bool exclusive, - Locker *locker, Context *on_finish) { - return new GetLockerRequest(ioctx, oid, exclusive, locker, on_finish); - } - - void send(); - -private: - librados::IoCtx &m_ioctx; - CephContext *m_cct; - std::string m_oid; - bool m_exclusive; - Locker *m_locker; - Context *m_on_finish; - - bufferlist m_out_bl; - - GetLockerRequest(librados::IoCtx& ioctx, const std::string& oid, - bool exclusive, Locker *locker, Context *on_finish); - - void send_get_lockers(); - void handle_get_lockers(int r); - - void finish(int r); - -}; - -} // namespace managed_lock -} // namespace librbd - -extern template class librbd::managed_lock::GetLockerRequest; - -#endif // CEPH_LIBRBD_MANAGED_LOCK_GET_LOCKER_REQUEST_H