-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImageWriteback.cc
88 lines (73 loc) · 3.24 KB
/
ImageWriteback.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "ImageWriteback.h"
#include "include/buffer.h"
#include "common/dout.h"
#include "librbd/AioCompletion.h"
#include "librbd/AioImageRequest.h"
#include "librbd/ImageCtx.h"
#define dout_subsys ceph_subsys_rbd
#undef dout_prefix
#define dout_prefix *_dout << "librbd::ImageWriteback: " << __func__ << ": "
namespace librbd {
namespace cache {
template <typename I>
ImageWriteback<I>::ImageWriteback(I &image_ctx) : m_image_ctx(image_ctx) {
}
template <typename I>
void ImageWriteback<I>::aio_read(Extents &&image_extents, bufferlist *bl,
int fadvise_flags, Context *on_finish) {
CephContext *cct = m_image_ctx.cct;
ldout(cct, 20) << "image_extents=" << image_extents << ", "
<< "on_finish=" << on_finish << dendl;
AioCompletion *aio_comp = AioCompletion::create_and_start(on_finish,
&m_image_ctx,
AIO_TYPE_READ);
AioImageRead<I> req(m_image_ctx, aio_comp, std::move(image_extents), nullptr,
bl, fadvise_flags);
req.set_bypass_image_cache();
req.send();
}
template <typename I>
void ImageWriteback<I>::aio_write(Extents &&image_extents,
ceph::bufferlist&& bl,
int fadvise_flags, Context *on_finish) {
CephContext *cct = m_image_ctx.cct;
ldout(cct, 20) << "image_extents=" << image_extents << ", "
<< "on_finish=" << on_finish << dendl;
AioCompletion *aio_comp = AioCompletion::create_and_start(on_finish,
&m_image_ctx,
AIO_TYPE_WRITE);
AioImageWrite<I> req(m_image_ctx, aio_comp, std::move(image_extents),
std::move(bl), fadvise_flags);
req.set_bypass_image_cache();
req.send();
}
template <typename I>
void ImageWriteback<I>::aio_discard(uint64_t offset, uint64_t length,
Context *on_finish) {
CephContext *cct = m_image_ctx.cct;
ldout(cct, 20) << "offset=" << offset << ", "
<< "length=" << length << ", "
<< "on_finish=" << on_finish << dendl;
AioCompletion *aio_comp = AioCompletion::create_and_start(on_finish,
&m_image_ctx,
AIO_TYPE_DISCARD);
AioImageDiscard<I> req(m_image_ctx, aio_comp, offset, length);
req.set_bypass_image_cache();
req.send();
}
template <typename I>
void ImageWriteback<I>::aio_flush(Context *on_finish) {
CephContext *cct = m_image_ctx.cct;
ldout(cct, 20) << "on_finish=" << on_finish << dendl;
AioCompletion *aio_comp = AioCompletion::create_and_start(on_finish,
&m_image_ctx,
AIO_TYPE_FLUSH);
AioImageFlush<I> req(m_image_ctx, aio_comp);
req.set_bypass_image_cache();
req.send();
}
} // namespace cache
} // namespace librbd
template class librbd::cache::ImageWriteback<librbd::ImageCtx>;