From 19fcec84d8d7d21e796c7624e521b60d28ee21ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:45:59 +0200 Subject: Adding upstream version 16.2.11+ds. Signed-off-by: Daniel Baumann --- src/journal/ReplayEntry.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/journal/ReplayEntry.h (limited to 'src/journal/ReplayEntry.h') diff --git a/src/journal/ReplayEntry.h b/src/journal/ReplayEntry.h new file mode 100644 index 000000000..4dd3ba475 --- /dev/null +++ b/src/journal/ReplayEntry.h @@ -0,0 +1,34 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef CEPH_JOURNAL_REPLAY_ENTRY_H +#define CEPH_JOURNAL_REPLAY_ENTRY_H + +#include "include/int_types.h" +#include "include/buffer.h" + +namespace journal { + +class ReplayEntry { +public: + ReplayEntry() : m_commit_tid(0) { + } + ReplayEntry(const bufferlist &data, uint64_t commit_tid) + : m_data(data), m_commit_tid(commit_tid) { + } + + inline const bufferlist &get_data() const { + return m_data; + } + inline uint64_t get_commit_tid() const { + return m_commit_tid; + } + +private: + bufferlist m_data; + uint64_t m_commit_tid; +}; + +} // namespace journal + +#endif // CEPH_JOURNAL_REPLAY_ENTRY_H -- cgit v1.2.3