]> git.proxmox.com Git - ceph.git/blame - ceph/src/librbd/io/AioCompletion.cc
bump version to 12.1.1-pve1 while rebasing patches
[ceph.git] / ceph / src / librbd / io / AioCompletion.cc
CommitLineData
7c673cae
FG
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3
4#include "librbd/io/AioCompletion.h"
5#include <errno.h>
6
7#include "common/ceph_context.h"
8#include "common/dout.h"
9#include "common/errno.h"
10#include "common/perf_counters.h"
11#include "common/WorkQueue.h"
12
13#include "librbd/ImageCtx.h"
14#include "librbd/internal.h"
15
16#include "librbd/Journal.h"
17
18#ifdef WITH_LTTNG
19#include "tracing/librbd.h"
20#else
21#define tracepoint(...)
22#endif
23
24#define dout_subsys ceph_subsys_rbd
25#undef dout_prefix
26#define dout_prefix *_dout << "librbd::io::AioCompletion: " << this \
27 << " " << __func__ << ": "
28
29namespace librbd {
30namespace io {
31
32int AioCompletion::wait_for_complete() {
33 tracepoint(librbd, aio_wait_for_complete_enter, this);
34 lock.Lock();
35 while (state != AIO_STATE_COMPLETE)
36 cond.Wait(lock);
37 lock.Unlock();
38 tracepoint(librbd, aio_wait_for_complete_exit, 0);
39 return 0;
40}
41
42void AioCompletion::finalize(ssize_t rval)
43{
44 assert(lock.is_locked());
45 assert(ictx != nullptr);
46 CephContext *cct = ictx->cct;
47
48 ldout(cct, 20) << "r=" << rval << dendl;
49 if (rval >= 0 && aio_type == AIO_TYPE_READ) {
50 read_result.assemble_result(cct);
51 }
52}
53
54void AioCompletion::complete() {
55 assert(lock.is_locked());
56 assert(ictx != nullptr);
57 CephContext *cct = ictx->cct;
58
59 tracepoint(librbd, aio_complete_enter, this, rval);
60 utime_t elapsed;
61 elapsed = ceph_clock_now() - start_time;
62 switch (aio_type) {
63 case AIO_TYPE_GENERIC:
64 case AIO_TYPE_OPEN:
65 case AIO_TYPE_CLOSE:
66 break;
67 case AIO_TYPE_READ:
68 ictx->perfcounter->tinc(l_librbd_rd_latency, elapsed); break;
69 case AIO_TYPE_WRITE:
70 ictx->perfcounter->tinc(l_librbd_wr_latency, elapsed); break;
71 case AIO_TYPE_DISCARD:
72 ictx->perfcounter->tinc(l_librbd_discard_latency, elapsed); break;
73 case AIO_TYPE_FLUSH:
74 ictx->perfcounter->tinc(l_librbd_aio_flush_latency, elapsed); break;
75 case AIO_TYPE_WRITESAME:
76 ictx->perfcounter->tinc(l_librbd_ws_latency, elapsed); break;
77 default:
78 lderr(cct) << "completed invalid aio_type: " << aio_type << dendl;
79 break;
80 }
81
82 // inform the journal that the op has successfully committed
83 if (journal_tid != 0) {
84 assert(ictx->journal != NULL);
85 ictx->journal->commit_io_event(journal_tid, rval);
86 }
87
88 state = AIO_STATE_CALLBACK;
89 if (complete_cb) {
90 lock.Unlock();
91 complete_cb(rbd_comp, complete_arg);
92 lock.Lock();
93 }
94
95 if (ictx && event_notify && ictx->event_socket.is_valid()) {
96 ictx->completed_reqs_lock.Lock();
97 ictx->completed_reqs.push_back(&m_xlist_item);
98 ictx->completed_reqs_lock.Unlock();
99 ictx->event_socket.notify();
100 }
101
102 state = AIO_STATE_COMPLETE;
103 cond.Signal();
104
105 // note: possible for image to be closed after op marked finished
106 if (async_op.started()) {
107 async_op.finish_op();
108 }
109 tracepoint(librbd, aio_complete_exit);
110}
111
112void AioCompletion::init_time(ImageCtx *i, aio_type_t t) {
113 Mutex::Locker locker(lock);
114 if (ictx == nullptr) {
115 ictx = i;
116 aio_type = t;
117 start_time = ceph_clock_now();
118 }
119}
120
121void AioCompletion::start_op(bool ignore_type) {
122 Mutex::Locker locker(lock);
123 assert(ictx != nullptr);
124 assert(!async_op.started());
125 if (state == AIO_STATE_PENDING &&
126 (ignore_type || aio_type != AIO_TYPE_FLUSH)) {
127 async_op.start_op(*ictx);
128 }
129}
130
131void AioCompletion::fail(int r)
132{
133 lock.Lock();
134 assert(ictx != nullptr);
135 CephContext *cct = ictx->cct;
136
137 lderr(cct) << cpp_strerror(r) << dendl;
138 assert(pending_count == 0);
139 rval = r;
140 complete();
141 put_unlock();
142}
143
144void AioCompletion::set_request_count(uint32_t count) {
145 lock.Lock();
146 assert(ictx != nullptr);
147 CephContext *cct = ictx->cct;
148
149 ldout(cct, 20) << "pending=" << count << dendl;
150 assert(pending_count == 0);
151 pending_count = count;
152 lock.Unlock();
153
154 // if no pending requests, completion will fire now
155 unblock();
156}
157
158void AioCompletion::complete_request(ssize_t r)
159{
160 lock.Lock();
161 assert(ictx != nullptr);
162 CephContext *cct = ictx->cct;
163
164 if (rval >= 0) {
165 if (r < 0 && r != -EEXIST)
166 rval = r;
167 else if (r > 0)
168 rval += r;
169 }
170 assert(pending_count);
171 int count = --pending_count;
172
173 ldout(cct, 20) << "cb=" << complete_cb << ", "
174 << "pending=" << pending_count << dendl;
175 if (!count && blockers == 0) {
176 finalize(rval);
177 complete();
178 }
179 put_unlock();
180}
181
182void AioCompletion::associate_journal_event(uint64_t tid) {
183 Mutex::Locker l(lock);
184 assert(state == AIO_STATE_PENDING);
185 journal_tid = tid;
186}
187
188bool AioCompletion::is_complete() {
189 tracepoint(librbd, aio_is_complete_enter, this);
190 bool done;
191 {
192 Mutex::Locker l(lock);
193 done = this->state == AIO_STATE_COMPLETE;
194 }
195 tracepoint(librbd, aio_is_complete_exit, done);
196 return done;
197}
198
199ssize_t AioCompletion::get_return_value() {
200 tracepoint(librbd, aio_get_return_value_enter, this);
201 lock.Lock();
202 ssize_t r = rval;
203 lock.Unlock();
204 tracepoint(librbd, aio_get_return_value_exit, r);
205 return r;
206}
207
208} // namespace io
209} // namespace librbd