blob: 34f2f0ba409bf1aafd4b0137a57b7a308aaa60e1 [file] [log] [blame]
Philipp Reisnerb411b362009-09-25 16:07:19 -07001/*
2 drbd_req.c
3
4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5
6 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
7 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
8 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
9
10 drbd is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 drbd is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with drbd; see the file COPYING. If not, write to
22 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 */
25
Philipp Reisnerb411b362009-09-25 16:07:19 -070026#include <linux/module.h>
27
28#include <linux/slab.h>
29#include <linux/drbd.h>
30#include "drbd_int.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070031#include "drbd_req.h"
32
33
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020034static bool drbd_may_do_local_read(struct drbd_device *device, sector_t sector, int size);
Philipp Reisner57bcb6c2011-12-03 11:18:56 +010035
Philipp Reisnerb411b362009-09-25 16:07:19 -070036/* Update disk stats at start of I/O request */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020037static void _drbd_start_io_acct(struct drbd_device *device, struct drbd_request *req)
Philipp Reisnerb411b362009-09-25 16:07:19 -070038{
Gu Zheng24480852014-11-24 11:05:25 +080039 generic_start_io_acct(bio_data_dir(req->master_bio), req->i.size >> 9,
40 &device->vdisk->part0);
Philipp Reisnerb411b362009-09-25 16:07:19 -070041}
42
43/* Update disk stats when completing request upwards */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020044static void _drbd_end_io_acct(struct drbd_device *device, struct drbd_request *req)
Philipp Reisnerb411b362009-09-25 16:07:19 -070045{
Gu Zheng24480852014-11-24 11:05:25 +080046 generic_end_io_acct(bio_data_dir(req->master_bio),
47 &device->vdisk->part0, req->start_jif);
Philipp Reisnerb411b362009-09-25 16:07:19 -070048}
49
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020050static struct drbd_request *drbd_req_new(struct drbd_device *device,
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010051 struct bio *bio_src)
Philipp Reisnerb411b362009-09-25 16:07:19 -070052{
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010053 struct drbd_request *req;
54
Lars Ellenberge5f891b2013-11-22 12:32:01 +010055 req = mempool_alloc(drbd_request_mempool, GFP_NOIO | __GFP_ZERO);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010056 if (!req)
57 return NULL;
58
59 drbd_req_make_private_bio(req, bio_src);
60 req->rq_state = bio_data_dir(bio_src) == WRITE ? RQ_WRITE : 0;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +020061 req->device = device;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010062 req->master_bio = bio_src;
63 req->epoch = 0;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010064
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010065 drbd_clear_interval(&req->i);
Kent Overstreet4f024f32013-10-11 15:44:27 -070066 req->i.sector = bio_src->bi_iter.bi_sector;
67 req->i.size = bio_src->bi_iter.bi_size;
Andreas Gruenbacher5e472262011-01-27 14:42:51 +010068 req->i.local = true;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010069 req->i.waiting = false;
70
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010071 INIT_LIST_HEAD(&req->tl_requests);
72 INIT_LIST_HEAD(&req->w.list);
Lars Ellenberg844a6ae2013-11-22 12:52:03 +010073 INIT_LIST_HEAD(&req->req_pending_master_completion);
74 INIT_LIST_HEAD(&req->req_pending_local);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010075
Lars Ellenberga0d856d2012-01-24 17:19:42 +010076 /* one reference to be put by __drbd_make_request */
Lars Ellenbergb4067772012-01-24 16:58:11 +010077 atomic_set(&req->completion_ref, 1);
Lars Ellenberga0d856d2012-01-24 17:19:42 +010078 /* one kref as long as completion_ref > 0 */
Lars Ellenbergb4067772012-01-24 16:58:11 +010079 kref_init(&req->kref);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010080 return req;
81}
82
Lars Ellenberg08d0dab2014-03-20 11:19:22 +010083static void drbd_remove_request_interval(struct rb_root *root,
84 struct drbd_request *req)
85{
86 struct drbd_device *device = req->device;
87 struct drbd_interval *i = &req->i;
88
89 drbd_remove_interval(root, i);
90
91 /* Wake up any processes waiting for this request to complete. */
92 if (i->waiting)
93 wake_up(&device->misc_wait);
94}
95
Lars Ellenberg9a278a72012-07-24 10:12:36 +020096void drbd_req_destroy(struct kref *kref)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010097{
Lars Ellenbergb4067772012-01-24 16:58:11 +010098 struct drbd_request *req = container_of(kref, struct drbd_request, kref);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +020099 struct drbd_device *device = req->device;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100100 const unsigned s = req->rq_state;
101
102 if ((req->master_bio && !(s & RQ_POSTPONED)) ||
103 atomic_read(&req->completion_ref) ||
104 (s & RQ_LOCAL_PENDING) ||
105 ((s & RQ_NET_MASK) && !(s & RQ_NET_DONE))) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200106 drbd_err(device, "drbd_req_destroy: Logic BUG rq_state = 0x%x, completion_ref = %d\n",
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100107 s, atomic_read(&req->completion_ref));
108 return;
109 }
Philipp Reisner288f4222010-05-27 15:07:43 +0200110
Lars Ellenberg844a6ae2013-11-22 12:52:03 +0100111 /* If called from mod_rq_state (expected normal case) or
112 * drbd_send_and_submit (the less likely normal path), this holds the
113 * req_lock, and req->tl_requests will typicaly be on ->transfer_log,
114 * though it may be still empty (never added to the transfer log).
115 *
116 * If called from do_retry(), we do NOT hold the req_lock, but we are
117 * still allowed to unconditionally list_del(&req->tl_requests),
118 * because it will be on a local on-stack list only. */
Lars Ellenberg2312f0b32011-11-24 10:36:25 +0100119 list_del_init(&req->tl_requests);
Philipp Reisner288f4222010-05-27 15:07:43 +0200120
Lars Ellenberg08d0dab2014-03-20 11:19:22 +0100121 /* finally remove the request from the conflict detection
122 * respective block_id verification interval tree. */
123 if (!drbd_interval_empty(&req->i)) {
124 struct rb_root *root;
125
126 if (s & RQ_WRITE)
127 root = &device->write_requests;
128 else
129 root = &device->read_requests;
130 drbd_remove_request_interval(root, req);
131 } else if (s & (RQ_NET_MASK & ~RQ_NET_DONE) && req->i.size != 0)
132 drbd_err(device, "drbd_req_destroy: Logic BUG: interval empty, but: rq_state=0x%x, sect=%llu, size=%u\n",
133 s, (unsigned long long)req->i.sector, req->i.size);
134
Philipp Reisnerb411b362009-09-25 16:07:19 -0700135 /* if it was a write, we may have to set the corresponding
136 * bit(s) out-of-sync first. If it had a local part, we need to
137 * release the reference to the activity log. */
Lars Ellenbergb4067772012-01-24 16:58:11 +0100138 if (s & RQ_WRITE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700139 /* Set out-of-sync unless both OK flags are set
140 * (local only or remote failed).
141 * Other places where we set out-of-sync:
142 * READ with local io-error */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700143
Lars Ellenberg70f17b62012-09-03 14:08:35 +0200144 /* There is a special case:
145 * we may notice late that IO was suspended,
146 * and postpone, or schedule for retry, a write,
147 * before it even was submitted or sent.
148 * In that case we do not want to touch the bitmap at all.
149 */
150 if ((s & (RQ_POSTPONED|RQ_LOCAL_MASK|RQ_NET_MASK)) != RQ_POSTPONED) {
Philipp Reisnerd7644012012-08-28 14:39:44 +0200151 if (!(s & RQ_NET_OK) || !(s & RQ_LOCAL_OK))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200152 drbd_set_out_of_sync(device, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700153
Philipp Reisnerd7644012012-08-28 14:39:44 +0200154 if ((s & RQ_NET_OK) && (s & RQ_LOCAL_OK) && (s & RQ_NET_SIS))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200155 drbd_set_in_sync(device, req->i.sector, req->i.size);
Philipp Reisnerd7644012012-08-28 14:39:44 +0200156 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700157
158 /* one might be tempted to move the drbd_al_complete_io
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +0100159 * to the local io completion callback drbd_request_endio.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700160 * but, if this was a mirror write, we may only
161 * drbd_al_complete_io after this is RQ_NET_DONE,
162 * otherwise the extent could be dropped from the al
163 * before it has actually been written on the peer.
164 * if we crash before our peer knows about the request,
165 * but after the extent has been dropped from the al,
166 * we would forget to resync the corresponding extent.
167 */
Philipp Reisner76590cd2012-08-29 15:23:14 +0200168 if (s & RQ_IN_ACT_LOG) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200169 if (get_ldev_if_state(device, D_FAILED)) {
170 drbd_al_complete_io(device, &req->i);
171 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700172 } else if (__ratelimit(&drbd_ratelimit_state)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200173 drbd_warn(device, "Should have called drbd_al_complete_io(, %llu, %u), "
Lars Ellenberg181286a2011-03-31 15:18:56 +0200174 "but my Disk seems to have failed :(\n",
175 (unsigned long long) req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700176 }
177 }
178 }
179
Lars Ellenberg9a278a72012-07-24 10:12:36 +0200180 mempool_free(req, drbd_request_mempool);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700181}
182
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200183static void wake_all_senders(struct drbd_connection *connection)
184{
185 wake_up(&connection->sender_work.q_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700186}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700187
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100188/* must hold resource->req_lock */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200189void start_new_tl_epoch(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700190{
Lars Ellenberg99b4d8f2012-08-07 06:42:09 +0200191 /* no point closing an epoch, if it is empty, anyways. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200192 if (connection->current_tle_writes == 0)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700193 return;
194
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200195 connection->current_tle_writes = 0;
196 atomic_inc(&connection->current_tle_nr);
197 wake_all_senders(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700198}
199
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200200void complete_master_bio(struct drbd_device *device,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700201 struct bio_and_error *m)
202{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700203 bio_endio(m->bio, m->error);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200204 dec_ap_bio(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700205}
206
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100207
Philipp Reisnerb411b362009-09-25 16:07:19 -0700208/* Helper for __req_mod().
209 * Set m->bio to the master bio, if it is fit to be completed,
210 * or leave it alone (it is initialized to NULL in __req_mod),
211 * if it has already been completed, or cannot be completed yet.
212 * If m->bio is set, the error status to be returned is placed in m->error.
213 */
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200214static
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100215void drbd_req_complete(struct drbd_request *req, struct bio_and_error *m)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700216{
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100217 const unsigned s = req->rq_state;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200218 struct drbd_device *device = req->device;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100219 int rw;
220 int error, ok;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700221
Philipp Reisnerb411b362009-09-25 16:07:19 -0700222 /* we must not complete the master bio, while it is
223 * still being processed by _drbd_send_zc_bio (drbd_send_dblock)
224 * not yet acknowledged by the peer
225 * not yet completed by the local io subsystem
226 * these flags may get cleared in any order by
227 * the worker,
228 * the receiver,
229 * the bio_endio completion callbacks.
230 */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100231 if ((s & RQ_LOCAL_PENDING && !(s & RQ_LOCAL_ABORTED)) ||
232 (s & RQ_NET_QUEUED) || (s & RQ_NET_PENDING) ||
233 (s & RQ_COMPLETION_SUSP)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200234 drbd_err(device, "drbd_req_complete: Logic BUG rq_state = 0x%x\n", s);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700235 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700236 }
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100237
238 if (!req->master_bio) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200239 drbd_err(device, "drbd_req_complete: Logic BUG, master_bio == NULL!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700240 return;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100241 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700242
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100243 rw = bio_rw(req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700244
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100245 /*
246 * figure out whether to report success or failure.
247 *
248 * report success when at least one of the operations succeeded.
249 * or, to put the other way,
250 * only report failure, when both operations failed.
251 *
252 * what to do about the failures is handled elsewhere.
253 * what we need to do here is just: complete the master_bio.
254 *
255 * local completion error, if any, has been stored as ERR_PTR
256 * in private_bio within drbd_request_endio.
257 */
258 ok = (s & RQ_LOCAL_OK) || (s & RQ_NET_OK);
259 error = PTR_ERR(req->private_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700260
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100261 /* Before we can signal completion to the upper layers,
262 * we may need to close the current transfer log epoch.
263 * We are within the request lock, so we can simply compare
264 * the request epoch number with the current transfer log
265 * epoch number. If they match, increase the current_tle_nr,
266 * and reset the transfer log epoch write_cnt.
267 */
268 if (rw == WRITE &&
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200269 req->epoch == atomic_read(&first_peer_device(device)->connection->current_tle_nr))
270 start_new_tl_epoch(first_peer_device(device)->connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700271
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100272 /* Update disk stats */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200273 _drbd_end_io_acct(device, req);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100274
275 /* If READ failed,
276 * have it be pushed back to the retry work queue,
277 * so it will re-enter __drbd_make_request(),
278 * and be re-assigned to a suitable local or remote path,
279 * or failed if we do not have access to good data anymore.
280 *
281 * Unless it was failed early by __drbd_make_request(),
282 * because no path was available, in which case
283 * it was not even added to the transfer_log.
284 *
285 * READA may fail, and will not be retried.
286 *
287 * WRITE should have used all available paths already.
288 */
289 if (!ok && rw == READ && !list_empty(&req->tl_requests))
290 req->rq_state |= RQ_POSTPONED;
291
292 if (!(req->rq_state & RQ_POSTPONED)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700293 m->error = ok ? 0 : (error ?: -EIO);
294 m->bio = req->master_bio;
295 req->master_bio = NULL;
Lars Ellenberg08d0dab2014-03-20 11:19:22 +0100296 /* We leave it in the tree, to be able to verify later
297 * write-acks in protocol != C during resync.
298 * But we mark it as "complete", so it won't be counted as
299 * conflict in a multi-primary setup. */
300 req->i.completed = true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700301 }
Lars Ellenberg08d0dab2014-03-20 11:19:22 +0100302
303 if (req->i.waiting)
304 wake_up(&device->misc_wait);
Lars Ellenberg844a6ae2013-11-22 12:52:03 +0100305
306 /* Either we are about to complete to upper layers,
307 * or we will restart this request.
308 * In either case, the request object will be destroyed soon,
309 * so better remove it from all lists. */
310 list_del_init(&req->req_pending_master_completion);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700311}
312
Lars Ellenberg844a6ae2013-11-22 12:52:03 +0100313/* still holds resource->req_lock */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100314static int drbd_req_put_completion_ref(struct drbd_request *req, struct bio_and_error *m, int put)
Philipp Reisnercfa03412010-06-23 17:18:51 +0200315{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200316 struct drbd_device *device = req->device;
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200317 D_ASSERT(device, m || (req->rq_state & RQ_POSTPONED));
Philipp Reisnercfa03412010-06-23 17:18:51 +0200318
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100319 if (!atomic_sub_and_test(put, &req->completion_ref))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700320 return 0;
321
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100322 drbd_req_complete(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700323
Lars Ellenberg9a278a72012-07-24 10:12:36 +0200324 if (req->rq_state & RQ_POSTPONED) {
325 /* don't destroy the req object just yet,
326 * but queue it for retry */
327 drbd_restart_request(req);
328 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700329 }
330
Philipp Reisnerb411b362009-09-25 16:07:19 -0700331 return 1;
332}
333
Lars Ellenberg7753a4c12013-11-22 13:00:12 +0100334static void set_if_null_req_next(struct drbd_peer_device *peer_device, struct drbd_request *req)
335{
336 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
337 if (!connection)
338 return;
339 if (connection->req_next == NULL)
340 connection->req_next = req;
341}
342
343static void advance_conn_req_next(struct drbd_peer_device *peer_device, struct drbd_request *req)
344{
345 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
346 if (!connection)
347 return;
348 if (connection->req_next != req)
349 return;
350 list_for_each_entry_continue(req, &connection->transfer_log, tl_requests) {
351 const unsigned s = req->rq_state;
352 if (s & RQ_NET_QUEUED)
353 break;
354 }
355 if (&req->tl_requests == &connection->transfer_log)
356 req = NULL;
357 connection->req_next = req;
358}
359
360static void set_if_null_req_ack_pending(struct drbd_peer_device *peer_device, struct drbd_request *req)
361{
362 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
363 if (!connection)
364 return;
365 if (connection->req_ack_pending == NULL)
366 connection->req_ack_pending = req;
367}
368
369static void advance_conn_req_ack_pending(struct drbd_peer_device *peer_device, struct drbd_request *req)
370{
371 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
372 if (!connection)
373 return;
374 if (connection->req_ack_pending != req)
375 return;
376 list_for_each_entry_continue(req, &connection->transfer_log, tl_requests) {
377 const unsigned s = req->rq_state;
378 if ((s & RQ_NET_SENT) && (s & RQ_NET_PENDING))
379 break;
380 }
381 if (&req->tl_requests == &connection->transfer_log)
382 req = NULL;
383 connection->req_ack_pending = req;
384}
385
386static void set_if_null_req_not_net_done(struct drbd_peer_device *peer_device, struct drbd_request *req)
387{
388 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
389 if (!connection)
390 return;
391 if (connection->req_not_net_done == NULL)
392 connection->req_not_net_done = req;
393}
394
395static void advance_conn_req_not_net_done(struct drbd_peer_device *peer_device, struct drbd_request *req)
396{
397 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
398 if (!connection)
399 return;
400 if (connection->req_not_net_done != req)
401 return;
402 list_for_each_entry_continue(req, &connection->transfer_log, tl_requests) {
403 const unsigned s = req->rq_state;
404 if ((s & RQ_NET_SENT) && !(s & RQ_NET_DONE))
405 break;
406 }
407 if (&req->tl_requests == &connection->transfer_log)
408 req = NULL;
409 connection->req_not_net_done = req;
410}
411
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100412/* I'd like this to be the only place that manipulates
413 * req->completion_ref and req->kref. */
414static void mod_rq_state(struct drbd_request *req, struct bio_and_error *m,
415 int clear, int set)
416{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200417 struct drbd_device *device = req->device;
Lars Ellenberg7753a4c12013-11-22 13:00:12 +0100418 struct drbd_peer_device *peer_device = first_peer_device(device);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100419 unsigned s = req->rq_state;
420 int c_put = 0;
421 int k_put = 0;
422
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200423 if (drbd_suspended(device) && !((s | clear) & RQ_COMPLETION_SUSP))
Philipp Reisner5af2e8c2012-08-14 11:28:52 +0200424 set |= RQ_COMPLETION_SUSP;
425
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100426 /* apply */
427
428 req->rq_state &= ~clear;
429 req->rq_state |= set;
430
431 /* no change? */
432 if (req->rq_state == s)
433 return;
434
435 /* intent: get references */
436
437 if (!(s & RQ_LOCAL_PENDING) && (set & RQ_LOCAL_PENDING))
438 atomic_inc(&req->completion_ref);
439
440 if (!(s & RQ_NET_PENDING) && (set & RQ_NET_PENDING)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200441 inc_ap_pending(device);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100442 atomic_inc(&req->completion_ref);
443 }
444
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100445 if (!(s & RQ_NET_QUEUED) && (set & RQ_NET_QUEUED)) {
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100446 atomic_inc(&req->completion_ref);
Lars Ellenberg7753a4c12013-11-22 13:00:12 +0100447 set_if_null_req_next(peer_device, req);
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100448 }
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100449
450 if (!(s & RQ_EXP_BARR_ACK) && (set & RQ_EXP_BARR_ACK))
451 kref_get(&req->kref); /* wait for the DONE */
452
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100453 if (!(s & RQ_NET_SENT) && (set & RQ_NET_SENT)) {
454 /* potentially already completed in the asender thread */
Lars Ellenberg7753a4c12013-11-22 13:00:12 +0100455 if (!(s & RQ_NET_DONE)) {
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100456 atomic_add(req->i.size >> 9, &device->ap_in_flight);
Lars Ellenberg7753a4c12013-11-22 13:00:12 +0100457 set_if_null_req_not_net_done(peer_device, req);
458 }
459 if (s & RQ_NET_PENDING)
460 set_if_null_req_ack_pending(peer_device, req);
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100461 }
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100462
Philipp Reisner5af2e8c2012-08-14 11:28:52 +0200463 if (!(s & RQ_COMPLETION_SUSP) && (set & RQ_COMPLETION_SUSP))
464 atomic_inc(&req->completion_ref);
465
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100466 /* progress: put references */
467
468 if ((s & RQ_COMPLETION_SUSP) && (clear & RQ_COMPLETION_SUSP))
469 ++c_put;
470
471 if (!(s & RQ_LOCAL_ABORTED) && (set & RQ_LOCAL_ABORTED)) {
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200472 D_ASSERT(device, req->rq_state & RQ_LOCAL_PENDING);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100473 /* local completion may still come in later,
474 * we need to keep the req object around. */
475 kref_get(&req->kref);
476 ++c_put;
477 }
478
479 if ((s & RQ_LOCAL_PENDING) && (clear & RQ_LOCAL_PENDING)) {
480 if (req->rq_state & RQ_LOCAL_ABORTED)
481 ++k_put;
482 else
483 ++c_put;
Lars Ellenberg844a6ae2013-11-22 12:52:03 +0100484 list_del_init(&req->req_pending_local);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100485 }
486
487 if ((s & RQ_NET_PENDING) && (clear & RQ_NET_PENDING)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200488 dec_ap_pending(device);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100489 ++c_put;
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100490 req->acked_jif = jiffies;
Lars Ellenberg7753a4c12013-11-22 13:00:12 +0100491 advance_conn_req_ack_pending(peer_device, req);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100492 }
493
Lars Ellenberg7753a4c12013-11-22 13:00:12 +0100494 if ((s & RQ_NET_QUEUED) && (clear & RQ_NET_QUEUED)) {
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100495 ++c_put;
Lars Ellenberg7753a4c12013-11-22 13:00:12 +0100496 advance_conn_req_next(peer_device, req);
497 }
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100498
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100499 if (!(s & RQ_NET_DONE) && (set & RQ_NET_DONE)) {
500 if (s & RQ_NET_SENT)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200501 atomic_sub(req->i.size >> 9, &device->ap_in_flight);
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100502 if (s & RQ_EXP_BARR_ACK)
503 ++k_put;
504 req->net_done_jif = jiffies;
Lars Ellenberg7753a4c12013-11-22 13:00:12 +0100505
506 /* in ahead/behind mode, or just in case,
507 * before we finally destroy this request,
508 * the caching pointers must not reference it anymore */
509 advance_conn_req_next(peer_device, req);
510 advance_conn_req_ack_pending(peer_device, req);
511 advance_conn_req_not_net_done(peer_device, req);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100512 }
513
514 /* potentially complete and destroy */
515
516 if (k_put || c_put) {
517 /* Completion does it's own kref_put. If we are going to
518 * kref_sub below, we need req to be still around then. */
519 int at_least = k_put + !!c_put;
520 int refcount = atomic_read(&req->kref.refcount);
521 if (refcount < at_least)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200522 drbd_err(device,
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100523 "mod_rq_state: Logic BUG: %x -> %x: refcount = %d, should be >= %d\n",
524 s, req->rq_state, refcount, at_least);
525 }
526
527 /* If we made progress, retry conflicting peer requests, if any. */
528 if (req->i.waiting)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200529 wake_up(&device->misc_wait);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100530
531 if (c_put)
532 k_put += drbd_req_put_completion_ref(req, m, c_put);
533 if (k_put)
534 kref_sub(&req->kref, k_put, drbd_req_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700535}
536
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200537static void drbd_report_io_error(struct drbd_device *device, struct drbd_request *req)
Lars Ellenbergccae7862012-09-26 14:07:04 +0200538{
539 char b[BDEVNAME_SIZE];
540
Lars Ellenberg42839f62012-09-27 15:19:38 +0200541 if (!__ratelimit(&drbd_ratelimit_state))
Lars Ellenbergccae7862012-09-26 14:07:04 +0200542 return;
543
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200544 drbd_warn(device, "local %s IO error sector %llu+%u on %s\n",
Lars Ellenbergccae7862012-09-26 14:07:04 +0200545 (req->rq_state & RQ_WRITE) ? "WRITE" : "READ",
Lars Ellenberg42839f62012-09-27 15:19:38 +0200546 (unsigned long long)req->i.sector,
547 req->i.size >> 9,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200548 bdevname(device->ldev->backing_bdev, b));
Lars Ellenbergccae7862012-09-26 14:07:04 +0200549}
550
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100551/* Helper for HANDED_OVER_TO_NETWORK.
552 * Is this a protocol A write (neither WRITE_ACK nor RECEIVE_ACK expected)?
553 * Is it also still "PENDING"?
554 * --> If so, clear PENDING and set NET_OK below.
555 * If it is a protocol A write, but not RQ_PENDING anymore, neg-ack was faster
556 * (and we must not set RQ_NET_OK) */
557static inline bool is_pending_write_protocol_A(struct drbd_request *req)
558{
559 return (req->rq_state &
560 (RQ_WRITE|RQ_NET_PENDING|RQ_EXP_WRITE_ACK|RQ_EXP_RECEIVE_ACK))
561 == (RQ_WRITE|RQ_NET_PENDING);
562}
563
Philipp Reisnerb411b362009-09-25 16:07:19 -0700564/* obviously this could be coded as many single functions
565 * instead of one huge switch,
566 * or by putting the code directly in the respective locations
567 * (as it has been before).
568 *
569 * but having it this way
570 * enforces that it is all in this one place, where it is easier to audit,
571 * it makes it obvious that whatever "event" "happens" to a request should
572 * happen "atomically" within the req_lock,
573 * and it enforces that we have to think in a very structured manner
574 * about the "events" that may happen to a request during its life time ...
575 */
Philipp Reisner2a806992010-06-09 14:07:43 +0200576int __req_mod(struct drbd_request *req, enum drbd_req_event what,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700577 struct bio_and_error *m)
578{
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100579 struct drbd_device *const device = req->device;
580 struct drbd_peer_device *const peer_device = first_peer_device(device);
581 struct drbd_connection *const connection = peer_device ? peer_device->connection : NULL;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200582 struct net_conf *nc;
Philipp Reisner303d1442011-04-13 16:24:47 -0700583 int p, rv = 0;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100584
585 if (m)
586 m->bio = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700587
Philipp Reisnerb411b362009-09-25 16:07:19 -0700588 switch (what) {
589 default:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200590 drbd_err(device, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700591 break;
592
593 /* does not happen...
594 * initialization done in drbd_req_new
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100595 case CREATED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700596 break;
597 */
598
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100599 case TO_BE_SENT: /* via network */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100600 /* reached via __drbd_make_request
Philipp Reisnerb411b362009-09-25 16:07:19 -0700601 * and from w_read_retry_remote */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200602 D_ASSERT(device, !(req->rq_state & RQ_NET_MASK));
Philipp Reisner44ed1672011-04-19 17:10:19 +0200603 rcu_read_lock();
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100604 nc = rcu_dereference(connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200605 p = nc->wire_protocol;
606 rcu_read_unlock();
Philipp Reisner303d1442011-04-13 16:24:47 -0700607 req->rq_state |=
608 p == DRBD_PROT_C ? RQ_EXP_WRITE_ACK :
609 p == DRBD_PROT_B ? RQ_EXP_RECEIVE_ACK : 0;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100610 mod_rq_state(req, m, 0, RQ_NET_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700611 break;
612
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100613 case TO_BE_SUBMITTED: /* locally */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100614 /* reached via __drbd_make_request */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200615 D_ASSERT(device, !(req->rq_state & RQ_LOCAL_MASK));
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100616 mod_rq_state(req, m, 0, RQ_LOCAL_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700617 break;
618
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100619 case COMPLETED_OK:
Philipp Reisner2b4dd362011-03-14 13:01:50 +0100620 if (req->rq_state & RQ_WRITE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200621 device->writ_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700622 else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200623 device->read_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700624
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100625 mod_rq_state(req, m, RQ_LOCAL_PENDING,
626 RQ_LOCAL_COMPLETED|RQ_LOCAL_OK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700627 break;
628
Philipp Reisnercdfda632011-07-05 15:38:59 +0200629 case ABORT_DISK_IO:
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100630 mod_rq_state(req, m, 0, RQ_LOCAL_ABORTED);
Philipp Reisner2b4dd362011-03-14 13:01:50 +0100631 break;
632
Lars Ellenbergedc9f5e2012-09-27 15:18:21 +0200633 case WRITE_COMPLETED_WITH_ERROR:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200634 drbd_report_io_error(device, req);
635 __drbd_chk_io_error(device, DRBD_WRITE_ERROR);
Lars Ellenbergedc9f5e2012-09-27 15:18:21 +0200636 mod_rq_state(req, m, RQ_LOCAL_PENDING, RQ_LOCAL_COMPLETED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700637 break;
638
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100639 case READ_COMPLETED_WITH_ERROR:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200640 drbd_set_out_of_sync(device, req->i.sector, req->i.size);
641 drbd_report_io_error(device, req);
642 __drbd_chk_io_error(device, DRBD_READ_ERROR);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100643 /* fall through. */
644 case READ_AHEAD_COMPLETED_WITH_ERROR:
645 /* it is legal to fail READA, no __drbd_chk_io_error in that case. */
646 mod_rq_state(req, m, RQ_LOCAL_PENDING, RQ_LOCAL_COMPLETED);
Lars Ellenberg4439c402012-03-26 17:29:30 +0200647 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700648
Lars Ellenberg2f632ae2014-04-28 18:43:24 +0200649 case DISCARD_COMPLETED_NOTSUPP:
650 case DISCARD_COMPLETED_WITH_ERROR:
651 /* I'd rather not detach from local disk just because it
652 * failed a REQ_DISCARD. */
653 mod_rq_state(req, m, RQ_LOCAL_PENDING, RQ_LOCAL_COMPLETED);
654 break;
655
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100656 case QUEUE_FOR_NET_READ:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700657 /* READ or READA, and
658 * no local disk,
659 * or target area marked as invalid,
660 * or just got an io-error. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100661 /* from __drbd_make_request
Philipp Reisnerb411b362009-09-25 16:07:19 -0700662 * or from bio_endio during read io-error recovery */
663
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200664 /* So we can verify the handle in the answer packet.
665 * Corresponding drbd_remove_request_interval is in
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100666 * drbd_req_complete() */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200667 D_ASSERT(device, drbd_interval_empty(&req->i));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200668 drbd_insert_interval(&device->read_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700669
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200670 set_bit(UNPLUG_REMOTE, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700671
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200672 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
673 D_ASSERT(device, (req->rq_state & RQ_LOCAL_MASK) == 0);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100674 mod_rq_state(req, m, 0, RQ_NET_QUEUED);
Lars Ellenberg4439c402012-03-26 17:29:30 +0200675 req->w.cb = w_send_read_req;
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100676 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200677 &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700678 break;
679
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100680 case QUEUE_FOR_NET_WRITE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700681 /* assert something? */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100682 /* from __drbd_make_request only */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700683
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200684 /* Corresponding drbd_remove_request_interval is in
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100685 * drbd_req_complete() */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200686 D_ASSERT(device, drbd_interval_empty(&req->i));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200687 drbd_insert_interval(&device->write_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700688
689 /* NOTE
690 * In case the req ended up on the transfer log before being
691 * queued on the worker, it could lead to this request being
692 * missed during cleanup after connection loss.
693 * So we have to do both operations here,
694 * within the same lock that protects the transfer log.
695 *
696 * _req_add_to_epoch(req); this has to be after the
697 * _maybe_start_new_epoch(req); which happened in
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100698 * __drbd_make_request, because we now may set the bit
Philipp Reisnerb411b362009-09-25 16:07:19 -0700699 * again ourselves to close the current epoch.
700 *
701 * Add req to the (now) current epoch (barrier). */
702
Lars Ellenberg83c38832009-11-03 02:22:06 +0100703 /* otherwise we may lose an unplug, which may cause some remote
704 * io-scheduler timeout to expire, increasing maximum latency,
705 * hurting performance. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200706 set_bit(UNPLUG_REMOTE, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700707
708 /* queue work item to send data */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200709 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100710 mod_rq_state(req, m, 0, RQ_NET_QUEUED|RQ_EXP_BARR_ACK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700711 req->w.cb = w_send_dblock;
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100712 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200713 &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700714
715 /* close the epoch, in case it outgrew the limit */
Philipp Reisner44ed1672011-04-19 17:10:19 +0200716 rcu_read_lock();
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100717 nc = rcu_dereference(connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200718 p = nc->max_epoch_size;
719 rcu_read_unlock();
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100720 if (connection->current_tle_writes >= p)
721 start_new_tl_epoch(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700722
723 break;
724
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100725 case QUEUE_FOR_SEND_OOS:
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100726 mod_rq_state(req, m, 0, RQ_NET_QUEUED);
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +0100727 req->w.cb = w_send_out_of_sync;
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100728 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200729 &req->w);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200730 break;
731
Lars Ellenbergea9d6722012-03-26 16:46:39 +0200732 case READ_RETRY_REMOTE_CANCELED:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100733 case SEND_CANCELED:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100734 case SEND_FAILED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700735 /* real cleanup will be done from tl_clear. just update flags
736 * so it is no longer marked as on the worker queue */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100737 mod_rq_state(req, m, RQ_NET_QUEUED, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700738 break;
739
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100740 case HANDED_OVER_TO_NETWORK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700741 /* assert something? */
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100742 if (is_pending_write_protocol_A(req))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700743 /* this is what is dangerous about protocol A:
744 * pretend it was successfully written on the peer. */
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100745 mod_rq_state(req, m, RQ_NET_QUEUED|RQ_NET_PENDING,
746 RQ_NET_SENT|RQ_NET_OK);
747 else
748 mod_rq_state(req, m, RQ_NET_QUEUED, RQ_NET_SENT);
749 /* It is still not yet RQ_NET_DONE until the
750 * corresponding epoch barrier got acked as well,
751 * so we know what to dirty on connection loss. */
Lars Ellenberg6d49e102012-01-11 09:43:25 +0100752 break;
753
Lars Ellenberg27a434f2012-03-26 16:44:59 +0200754 case OOS_HANDED_TO_NETWORK:
Lars Ellenberg6d49e102012-01-11 09:43:25 +0100755 /* Was not set PENDING, no longer QUEUED, so is now DONE
756 * as far as this connection is concerned. */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100757 mod_rq_state(req, m, RQ_NET_QUEUED, RQ_NET_DONE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700758 break;
759
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100760 case CONNECTION_LOST_WHILE_PENDING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700761 /* transfer log cleanup after connection loss */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100762 mod_rq_state(req, m,
763 RQ_NET_OK|RQ_NET_PENDING|RQ_COMPLETION_SUSP,
764 RQ_NET_DONE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700765 break;
766
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +0200767 case CONFLICT_RESOLVED:
768 /* for superseded conflicting writes of multiple primaries,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700769 * there is no need to keep anything in the tl, potential
Lars Ellenberg934722a2012-07-24 09:31:18 +0200770 * node crashes are covered by the activity log.
771 *
772 * If this request had been marked as RQ_POSTPONED before,
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +0200773 * it will actually not be completed, but "restarted",
Lars Ellenberg934722a2012-07-24 09:31:18 +0200774 * resubmitted from the retry worker context. */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200775 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
776 D_ASSERT(device, req->rq_state & RQ_EXP_WRITE_ACK);
Lars Ellenberg934722a2012-07-24 09:31:18 +0200777 mod_rq_state(req, m, RQ_NET_PENDING, RQ_NET_DONE|RQ_NET_OK);
778 break;
779
Lars Ellenberg0afd5692012-03-26 16:51:11 +0200780 case WRITE_ACKED_BY_PEER_AND_SIS:
Lars Ellenberg934722a2012-07-24 09:31:18 +0200781 req->rq_state |= RQ_NET_SIS;
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100782 case WRITE_ACKED_BY_PEER:
Lars Ellenberg08d0dab2014-03-20 11:19:22 +0100783 /* Normal operation protocol C: successfully written on peer.
784 * During resync, even in protocol != C,
785 * we requested an explicit write ack anyways.
786 * Which means we cannot even assert anything here.
Lars Ellenbergd64957c2012-03-23 14:42:19 +0100787 * Nothing more to do here.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700788 * We want to keep the tl in place for all protocols, to cater
Lars Ellenbergd64957c2012-03-23 14:42:19 +0100789 * for volatile write-back caches on lower level devices. */
Philipp Reisner303d1442011-04-13 16:24:47 -0700790 goto ack_common;
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100791 case RECV_ACKED_BY_PEER:
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200792 D_ASSERT(device, req->rq_state & RQ_EXP_RECEIVE_ACK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700793 /* protocol B; pretends to be successfully written on peer.
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100794 * see also notes above in HANDED_OVER_TO_NETWORK about
Philipp Reisnerb411b362009-09-25 16:07:19 -0700795 * protocol != C */
Philipp Reisner303d1442011-04-13 16:24:47 -0700796 ack_common:
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100797 mod_rq_state(req, m, RQ_NET_PENDING, RQ_NET_OK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700798 break;
799
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100800 case POSTPONE_WRITE:
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200801 D_ASSERT(device, req->rq_state & RQ_EXP_WRITE_ACK);
Philipp Reisner303d1442011-04-13 16:24:47 -0700802 /* If this node has already detected the write conflict, the
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100803 * worker will be waiting on misc_wait. Wake it up once this
804 * request has completed locally.
805 */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200806 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100807 req->rq_state |= RQ_POSTPONED;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100808 if (req->i.waiting)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200809 wake_up(&device->misc_wait);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100810 /* Do not clear RQ_NET_PENDING. This request will make further
811 * progress via restart_conflicting_writes() or
812 * fail_postponed_requests(). Hopefully. */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700813 break;
814
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100815 case NEG_ACKED:
Lars Ellenberg46e21bb2012-08-07 06:47:14 +0200816 mod_rq_state(req, m, RQ_NET_OK|RQ_NET_PENDING, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700817 break;
818
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100819 case FAIL_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200820 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
821 break;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100822 mod_rq_state(req, m, RQ_COMPLETION_SUSP, 0);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200823 break;
824
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100825 case RESTART_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200826 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
827 break;
828
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100829 mod_rq_state(req, m,
830 RQ_COMPLETION_SUSP|RQ_LOCAL_COMPLETED,
831 RQ_LOCAL_PENDING);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200832
833 rv = MR_READ;
834 if (bio_data_dir(req->master_bio) == WRITE)
835 rv = MR_WRITE;
836
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200837 get_ldev(device); /* always succeeds in this call path */
Philipp Reisner265be2d2010-05-31 10:14:17 +0200838 req->w.cb = w_restart_disk_io;
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100839 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200840 &req->w);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200841 break;
842
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100843 case RESEND:
Philipp Reisner509fc012012-07-31 11:22:58 +0200844 /* Simply complete (local only) READs. */
845 if (!(req->rq_state & RQ_WRITE) && !req->w.cb) {
Philipp Reisner8a0bab22012-08-07 13:28:00 +0200846 mod_rq_state(req, m, RQ_COMPLETION_SUSP, 0);
Philipp Reisner509fc012012-07-31 11:22:58 +0200847 break;
848 }
849
Philipp Reisner11b58e72010-05-12 17:08:26 +0200850 /* If RQ_NET_OK is already set, we got a P_WRITE_ACK or P_RECV_ACK
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100851 before the connection loss (B&C only); only P_BARRIER_ACK
852 (or the local completion?) was missing when we suspended.
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200853 Throwing them out of the TL here by pretending we got a BARRIER_ACK.
854 During connection handshake, we ensure that the peer was not rebooted. */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200855 if (!(req->rq_state & RQ_NET_OK)) {
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200856 /* FIXME could this possibly be a req->dw.cb == w_send_out_of_sync?
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100857 * in that case we must not set RQ_NET_PENDING. */
858
859 mod_rq_state(req, m, RQ_COMPLETION_SUSP, RQ_NET_QUEUED|RQ_NET_PENDING);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200860 if (req->w.cb) {
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100861 /* w.cb expected to be w_send_dblock, or w_send_read_req */
862 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200863 &req->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200864 rv = req->rq_state & RQ_WRITE ? MR_WRITE : MR_READ;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100865 } /* else: FIXME can this happen? */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200866 break;
867 }
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100868 /* else, fall through to BARRIER_ACKED */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200869
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100870 case BARRIER_ACKED:
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100871 /* barrier ack for READ requests does not make sense */
Philipp Reisner288f4222010-05-27 15:07:43 +0200872 if (!(req->rq_state & RQ_WRITE))
873 break;
874
Philipp Reisnerb411b362009-09-25 16:07:19 -0700875 if (req->rq_state & RQ_NET_PENDING) {
Andreas Gruenbachera209b4a2011-08-17 12:43:25 +0200876 /* barrier came in before all requests were acked.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700877 * this is bad, because if the connection is lost now,
878 * we won't be able to clean them up... */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200879 drbd_err(device, "FIXME (BARRIER_ACKED but pending)\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700880 }
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100881 /* Allowed to complete requests, even while suspended.
882 * As this is called for all requests within a matching epoch,
883 * we need to filter, and only set RQ_NET_DONE for those that
884 * have actually been on the wire. */
885 mod_rq_state(req, m, RQ_COMPLETION_SUSP,
886 (req->rq_state & RQ_NET_MASK) ? RQ_NET_DONE : 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700887 break;
888
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100889 case DATA_RECEIVED:
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200890 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100891 mod_rq_state(req, m, RQ_NET_PENDING, RQ_NET_OK|RQ_NET_DONE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700892 break;
Lars Ellenberg7074e4a2013-03-27 14:08:41 +0100893
894 case QUEUE_AS_DRBD_BARRIER:
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100895 start_new_tl_epoch(connection);
Lars Ellenberg7074e4a2013-03-27 14:08:41 +0100896 mod_rq_state(req, m, 0, RQ_NET_OK|RQ_NET_DONE);
897 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700898 };
Philipp Reisner2a806992010-06-09 14:07:43 +0200899
900 return rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700901}
902
903/* we may do a local read if:
904 * - we are consistent (of course),
905 * - or we are generally inconsistent,
906 * BUT we are still/already IN SYNC for this area.
907 * since size may be bigger than BM_BLOCK_SIZE,
908 * we may need to check several bits.
909 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200910static bool drbd_may_do_local_read(struct drbd_device *device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700911{
912 unsigned long sbnr, ebnr;
913 sector_t esector, nr_sectors;
914
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200915 if (device->state.disk == D_UP_TO_DATE)
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100916 return true;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200917 if (device->state.disk != D_INCONSISTENT)
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100918 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700919 esector = sector + (size >> 9) - 1;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200920 nr_sectors = drbd_get_capacity(device->this_bdev);
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200921 D_ASSERT(device, sector < nr_sectors);
922 D_ASSERT(device, esector < nr_sectors);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700923
924 sbnr = BM_SECT_TO_BIT(sector);
925 ebnr = BM_SECT_TO_BIT(esector);
926
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200927 return drbd_bm_count_bits(device, sbnr, ebnr) == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700928}
929
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200930static bool remote_due_to_read_balancing(struct drbd_device *device, sector_t sector,
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200931 enum drbd_read_balancing rbm)
Philipp Reisner380207d2011-11-11 12:31:20 +0100932{
Philipp Reisner380207d2011-11-11 12:31:20 +0100933 struct backing_dev_info *bdi;
Philipp Reisnerd60de032011-11-17 10:12:31 +0100934 int stripe_shift;
Philipp Reisner380207d2011-11-11 12:31:20 +0100935
Philipp Reisner380207d2011-11-11 12:31:20 +0100936 switch (rbm) {
937 case RB_CONGESTED_REMOTE:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200938 bdi = &device->ldev->backing_bdev->bd_disk->queue->backing_dev_info;
Philipp Reisner380207d2011-11-11 12:31:20 +0100939 return bdi_read_congested(bdi);
940 case RB_LEAST_PENDING:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200941 return atomic_read(&device->local_cnt) >
942 atomic_read(&device->ap_pending_cnt) + atomic_read(&device->rs_pending_cnt);
Philipp Reisnerd60de032011-11-17 10:12:31 +0100943 case RB_32K_STRIPING: /* stripe_shift = 15 */
944 case RB_64K_STRIPING:
945 case RB_128K_STRIPING:
946 case RB_256K_STRIPING:
947 case RB_512K_STRIPING:
948 case RB_1M_STRIPING: /* stripe_shift = 20 */
949 stripe_shift = (rbm - RB_32K_STRIPING + 15);
950 return (sector >> (stripe_shift - 9)) & 1;
Philipp Reisner380207d2011-11-11 12:31:20 +0100951 case RB_ROUND_ROBIN:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200952 return test_and_change_bit(READ_BALANCE_RR, &device->flags);
Philipp Reisner380207d2011-11-11 12:31:20 +0100953 case RB_PREFER_REMOTE:
954 return true;
955 case RB_PREFER_LOCAL:
956 default:
957 return false;
958 }
959}
960
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100961/*
962 * complete_conflicting_writes - wait for any conflicting write requests
963 *
964 * The write_requests tree contains all active write requests which we
965 * currently know about. Wait for any requests to complete which conflict with
966 * the new one.
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200967 *
968 * Only way out: remove the conflicting intervals from the tree.
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100969 */
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200970static void complete_conflicting_writes(struct drbd_request *req)
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100971{
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200972 DEFINE_WAIT(wait);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200973 struct drbd_device *device = req->device;
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200974 struct drbd_interval *i;
975 sector_t sector = req->i.sector;
976 int size = req->i.size;
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100977
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200978 i = drbd_find_overlap(&device->write_requests, sector, size);
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200979 if (!i)
980 return;
981
982 for (;;) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200983 prepare_to_wait(&device->misc_wait, &wait, TASK_UNINTERRUPTIBLE);
984 i = drbd_find_overlap(&device->write_requests, sector, size);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100985 if (!i)
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200986 break;
987 /* Indicate to wake up device->misc_wait on progress. */
988 i->waiting = true;
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200989 spin_unlock_irq(&device->resource->req_lock);
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200990 schedule();
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200991 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100992 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200993 finish_wait(&device->misc_wait, &wait);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100994}
995
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200996/* called within req_lock and rcu_read_lock() */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200997static void maybe_pull_ahead(struct drbd_device *device)
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200998{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200999 struct drbd_connection *connection = first_peer_device(device)->connection;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001000 struct net_conf *nc;
1001 bool congested = false;
1002 enum drbd_on_congestion on_congestion;
1003
Lars Ellenberg607f25e2013-03-27 14:08:45 +01001004 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001005 nc = rcu_dereference(connection->net_conf);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001006 on_congestion = nc ? nc->on_congestion : OC_BLOCK;
Lars Ellenberg607f25e2013-03-27 14:08:45 +01001007 rcu_read_unlock();
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001008 if (on_congestion == OC_BLOCK ||
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001009 connection->agreed_pro_version < 96)
Lars Ellenberg3b9ef852012-07-30 09:06:26 +02001010 return;
Lars Ellenberg0d5934e2012-06-08 14:17:36 +02001011
Lars Ellenberg0c066bc2014-03-20 14:04:35 +01001012 if (on_congestion == OC_PULL_AHEAD && device->state.conn == C_AHEAD)
1013 return; /* nothing to do ... */
1014
Lars Ellenberg0d5934e2012-06-08 14:17:36 +02001015 /* If I don't even have good local storage, we can not reasonably try
1016 * to pull ahead of the peer. We also need the local reference to make
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001017 * sure device->act_log is there.
Lars Ellenberg0d5934e2012-06-08 14:17:36 +02001018 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001019 if (!get_ldev_if_state(device, D_UP_TO_DATE))
Lars Ellenberg0d5934e2012-06-08 14:17:36 +02001020 return;
1021
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001022 if (nc->cong_fill &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001023 atomic_read(&device->ap_in_flight) >= nc->cong_fill) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001024 drbd_info(device, "Congestion-fill threshold reached\n");
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001025 congested = true;
Lars Ellenberg0d5934e2012-06-08 14:17:36 +02001026 }
1027
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001028 if (device->act_log->used >= nc->cong_extents) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001029 drbd_info(device, "Congestion-extents threshold reached\n");
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001030 congested = true;
Lars Ellenberg0d5934e2012-06-08 14:17:36 +02001031 }
1032
1033 if (congested) {
Lars Ellenberg99b4d8f2012-08-07 06:42:09 +02001034 /* start a new epoch for non-mirrored writes */
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001035 start_new_tl_epoch(first_peer_device(device)->connection);
Lars Ellenberg0d5934e2012-06-08 14:17:36 +02001036
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001037 if (on_congestion == OC_PULL_AHEAD)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001038 _drbd_set_state(_NS(device, conn, C_AHEAD), 0, NULL);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001039 else /*nc->on_congestion == OC_DISCONNECT */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001040 _drbd_set_state(_NS(device, conn, C_DISCONNECTING), 0, NULL);
Lars Ellenberg0d5934e2012-06-08 14:17:36 +02001041 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001042 put_ldev(device);
Lars Ellenberg0d5934e2012-06-08 14:17:36 +02001043}
1044
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001045/* If this returns false, and req->private_bio is still set,
1046 * this should be submitted locally.
1047 *
1048 * If it returns false, but req->private_bio is not set,
1049 * we do not have access to good data :(
1050 *
1051 * Otherwise, this destroys req->private_bio, if any,
1052 * and returns true.
1053 */
1054static bool do_remote_read(struct drbd_request *req)
1055{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001056 struct drbd_device *device = req->device;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001057 enum drbd_read_balancing rbm;
1058
1059 if (req->private_bio) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001060 if (!drbd_may_do_local_read(device,
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001061 req->i.sector, req->i.size)) {
1062 bio_put(req->private_bio);
1063 req->private_bio = NULL;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001064 put_ldev(device);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001065 }
1066 }
1067
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001068 if (device->state.pdsk != D_UP_TO_DATE)
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001069 return false;
1070
Lars Ellenberga0d856d2012-01-24 17:19:42 +01001071 if (req->private_bio == NULL)
1072 return true;
1073
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001074 /* TODO: improve read balancing decisions, take into account drbd
1075 * protocol, pending requests etc. */
1076
1077 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001078 rbm = rcu_dereference(device->ldev->disk_conf)->read_balancing;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001079 rcu_read_unlock();
1080
1081 if (rbm == RB_PREFER_LOCAL && req->private_bio)
1082 return false; /* submit locally */
1083
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001084 if (remote_due_to_read_balancing(device, req->i.sector, rbm)) {
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001085 if (req->private_bio) {
1086 bio_put(req->private_bio);
1087 req->private_bio = NULL;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001088 put_ldev(device);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001089 }
1090 return true;
1091 }
1092
1093 return false;
1094}
1095
1096/* returns number of connections (== 1, for drbd 8.4)
1097 * expected to actually write this data,
1098 * which does NOT include those that we are L_AHEAD for. */
1099static int drbd_process_write_request(struct drbd_request *req)
1100{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001101 struct drbd_device *device = req->device;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001102 int remote, send_oos;
1103
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001104 remote = drbd_should_do_remote(device->state);
1105 send_oos = drbd_should_send_out_of_sync(device->state);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001106
Lars Ellenberg519b6d32012-08-03 02:19:09 +02001107 /* Need to replicate writes. Unless it is an empty flush,
1108 * which is better mapped to a DRBD P_BARRIER packet,
1109 * also for drbd wire protocol compatibility reasons.
1110 * If this was a flush, just start a new epoch.
1111 * Unless the current epoch was empty anyways, or we are not currently
1112 * replicating, in which case there is no point. */
1113 if (unlikely(req->i.size == 0)) {
1114 /* The only size==0 bios we expect are empty flushes. */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001115 D_ASSERT(device, req->master_bio->bi_rw & REQ_FLUSH);
Lars Ellenberg99b4d8f2012-08-07 06:42:09 +02001116 if (remote)
Lars Ellenberg7074e4a2013-03-27 14:08:41 +01001117 _req_mod(req, QUEUE_AS_DRBD_BARRIER);
1118 return remote;
Lars Ellenberg519b6d32012-08-03 02:19:09 +02001119 }
1120
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001121 if (!remote && !send_oos)
1122 return 0;
1123
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001124 D_ASSERT(device, !(remote && send_oos));
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001125
1126 if (remote) {
1127 _req_mod(req, TO_BE_SENT);
1128 _req_mod(req, QUEUE_FOR_NET_WRITE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001129 } else if (drbd_set_out_of_sync(device, req->i.sector, req->i.size))
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001130 _req_mod(req, QUEUE_FOR_SEND_OOS);
1131
1132 return remote;
1133}
1134
1135static void
1136drbd_submit_req_private_bio(struct drbd_request *req)
1137{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001138 struct drbd_device *device = req->device;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001139 struct bio *bio = req->private_bio;
1140 const int rw = bio_rw(bio);
1141
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001142 bio->bi_bdev = device->ldev->backing_bdev;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001143
1144 /* State may have changed since we grabbed our reference on the
1145 * ->ldev member. Double check, and short-circuit to endio.
1146 * In case the last activity log transaction failed to get on
1147 * stable storage, and this is a WRITE, we may not even submit
1148 * this bio. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001149 if (get_ldev(device)) {
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001150 req->pre_submit_jif = jiffies;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001151 if (drbd_insert_fault(device,
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001152 rw == WRITE ? DRBD_FAULT_DT_WR
1153 : rw == READ ? DRBD_FAULT_DT_RD
1154 : DRBD_FAULT_DT_RA))
1155 bio_endio(bio, -EIO);
1156 else
1157 generic_make_request(bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001158 put_ldev(device);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001159 } else
1160 bio_endio(bio, -EIO);
1161}
1162
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001163static void drbd_queue_write(struct drbd_device *device, struct drbd_request *req)
Lars Ellenberg779b3fe2013-03-19 18:16:54 +01001164{
Lars Ellenberg844a6ae2013-11-22 12:52:03 +01001165 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001166 list_add_tail(&req->tl_requests, &device->submit.writes);
Lars Ellenberg844a6ae2013-11-22 12:52:03 +01001167 list_add_tail(&req->req_pending_master_completion,
1168 &device->pending_master_completion[1 /* WRITE */]);
1169 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001170 queue_work(device->submit.wq, &device->submit.worker);
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001171 /* do_submit() may sleep internally on al_wait, too */
1172 wake_up(&device->al_wait);
Lars Ellenberg779b3fe2013-03-19 18:16:54 +01001173}
1174
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001175/* returns the new drbd_request pointer, if the caller is expected to
1176 * drbd_send_and_submit() it (to save latency), or NULL if we queued the
1177 * request on the submitter thread.
1178 * Returns ERR_PTR(-ENOMEM) if we cannot allocate a drbd_request.
1179 */
Rashika Kheria01cd2632013-12-19 15:12:27 +05301180static struct drbd_request *
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001181drbd_request_prepare(struct drbd_device *device, struct bio *bio, unsigned long start_jif)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001182{
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001183 const int rw = bio_data_dir(bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001184 struct drbd_request *req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001185
1186 /* allocate outside of all locks; */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001187 req = drbd_req_new(device, bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001188 if (!req) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001189 dec_ap_bio(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001190 /* only pass the error to the upper layers.
1191 * if user cannot handle io errors, that's not our business. */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001192 drbd_err(device, "could not kmalloc() req\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001193 bio_endio(bio, -ENOMEM);
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001194 return ERR_PTR(-ENOMEM);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001195 }
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001196 req->start_jif = start_jif;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001197
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001198 if (!get_ldev(device)) {
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001199 bio_put(req->private_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001200 req->private_bio = NULL;
1201 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001202
Lars Ellenberg7e8c2882013-03-19 18:16:57 +01001203 /* Update disk stats */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001204 _drbd_start_io_acct(device, req);
Lars Ellenberg7e8c2882013-03-19 18:16:57 +01001205
Lars Ellenberg519b6d32012-08-03 02:19:09 +02001206 if (rw == WRITE && req->private_bio && req->i.size
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001207 && !test_bit(AL_SUSPENDED, &device->flags)) {
1208 if (!drbd_al_begin_io_fastpath(device, &req->i)) {
Lars Ellenbergad3fee72013-12-20 11:22:13 +01001209 atomic_inc(&device->ap_actlog_cnt);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001210 drbd_queue_write(device, req);
Lars Ellenberg779b3fe2013-03-19 18:16:54 +01001211 return NULL;
1212 }
Philipp Reisner07782862010-08-31 12:00:50 +02001213 req->rq_state |= RQ_IN_ACT_LOG;
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001214 req->in_actlog_jif = jiffies;
Philipp Reisner07782862010-08-31 12:00:50 +02001215 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001216
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001217 return req;
1218}
1219
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001220static void drbd_send_and_submit(struct drbd_device *device, struct drbd_request *req)
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001221{
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001222 struct drbd_resource *resource = device->resource;
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001223 const int rw = bio_rw(req->master_bio);
1224 struct bio_and_error m = { NULL, };
1225 bool no_remote = false;
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001226 bool submit_private_bio = false;
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001227
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001228 spin_lock_irq(&resource->req_lock);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +01001229 if (rw == WRITE) {
Lars Ellenberg648e46b2012-03-26 20:12:24 +02001230 /* This may temporarily give up the req_lock,
1231 * but will re-aquire it before it returns here.
1232 * Needs to be before the check on drbd_suspended() */
1233 complete_conflicting_writes(req);
Lars Ellenberg607f25e2013-03-27 14:08:45 +01001234 /* no more giving up req_lock from now on! */
1235
1236 /* check for congestion, and potentially stop sending
1237 * full data updates, but start sending "dirty bits" only. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001238 maybe_pull_ahead(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001239 }
1240
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001241
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001242 if (drbd_suspended(device)) {
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001243 /* push back and retry: */
1244 req->rq_state |= RQ_POSTPONED;
1245 if (req->private_bio) {
1246 bio_put(req->private_bio);
1247 req->private_bio = NULL;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001248 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001249 }
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001250 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001251 }
1252
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001253 /* We fail READ/READA early, if we can not serve it.
1254 * We must do this before req is registered on any lists.
Lars Ellenberga0d856d2012-01-24 17:19:42 +01001255 * Otherwise, drbd_req_complete() will queue failed READ for retry. */
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001256 if (rw != WRITE) {
1257 if (!do_remote_read(req) && !req->private_bio)
1258 goto nodata;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001259 }
1260
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001261 /* which transfer log epoch does this belong to? */
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001262 req->epoch = atomic_read(&first_peer_device(device)->connection->current_tle_nr);
Philipp Reisner288f4222010-05-27 15:07:43 +02001263
Lars Ellenberg227f0522012-07-31 09:31:11 +02001264 /* no point in adding empty flushes to the transfer log,
1265 * they are mapped to drbd barriers already. */
Lars Ellenberg99b4d8f2012-08-07 06:42:09 +02001266 if (likely(req->i.size!=0)) {
1267 if (rw == WRITE)
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001268 first_peer_device(device)->connection->current_tle_writes++;
Philipp Reisner288f4222010-05-27 15:07:43 +02001269
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001270 list_add_tail(&req->tl_requests, &first_peer_device(device)->connection->transfer_log);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001271 }
Philipp Reisner67531712010-10-27 12:21:30 +02001272
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001273 if (rw == WRITE) {
1274 if (!drbd_process_write_request(req))
1275 no_remote = true;
1276 } else {
1277 /* We either have a private_bio, or we can read from remote.
1278 * Otherwise we had done the goto nodata above. */
1279 if (req->private_bio == NULL) {
1280 _req_mod(req, TO_BE_SENT);
1281 _req_mod(req, QUEUE_FOR_NET_READ);
Lars Ellenberg6719fb02010-10-18 23:04:07 +02001282 } else
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001283 no_remote = true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001284 }
1285
Lars Ellenberg844a6ae2013-11-22 12:52:03 +01001286 /* If it took the fast path in drbd_request_prepare, add it here.
1287 * The slow path has added it already. */
1288 if (list_empty(&req->req_pending_master_completion))
1289 list_add_tail(&req->req_pending_master_completion,
1290 &device->pending_master_completion[rw == WRITE]);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001291 if (req->private_bio) {
1292 /* needs to be marked within the same spinlock */
Lars Ellenberg844a6ae2013-11-22 12:52:03 +01001293 list_add_tail(&req->req_pending_local,
1294 &device->pending_completion[rw == WRITE]);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001295 _req_mod(req, TO_BE_SUBMITTED);
1296 /* but we need to give up the spinlock to submit */
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001297 submit_private_bio = true;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001298 } else if (no_remote) {
1299nodata:
1300 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001301 drbd_err(device, "IO ERROR: neither local nor remote data, sector %llu+%u\n",
Lars Ellenberg42839f62012-09-27 15:19:38 +02001302 (unsigned long long)req->i.sector, req->i.size >> 9);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001303 /* A write may have been queued for send_oos, however.
Lars Ellenberga0d856d2012-01-24 17:19:42 +01001304 * So we can not simply free it, we must go through drbd_req_put_completion_ref() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001305 }
1306
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001307out:
Lars Ellenberga0d856d2012-01-24 17:19:42 +01001308 if (drbd_req_put_completion_ref(req, &m, 1))
1309 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001310 spin_unlock_irq(&resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001311
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001312 /* Even though above is a kref_put(), this is safe.
1313 * As long as we still need to submit our private bio,
1314 * we hold a completion ref, and the request cannot disappear.
1315 * If however this request did not even have a private bio to submit
1316 * (e.g. remote read), req may already be invalid now.
1317 * That's why we cannot check on req->private_bio. */
1318 if (submit_private_bio)
1319 drbd_submit_req_private_bio(req);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001320 if (m.bio)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001321 complete_master_bio(device, &m);
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001322}
1323
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001324void __drbd_make_request(struct drbd_device *device, struct bio *bio, unsigned long start_jif)
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001325{
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001326 struct drbd_request *req = drbd_request_prepare(device, bio, start_jif);
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001327 if (IS_ERR_OR_NULL(req))
1328 return;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001329 drbd_send_and_submit(device, req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001330}
1331
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001332static void submit_fast_path(struct drbd_device *device, struct list_head *incoming)
Lars Ellenberg113fef92013-03-22 18:14:40 -06001333{
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001334 struct drbd_request *req, *tmp;
1335 list_for_each_entry_safe(req, tmp, incoming, tl_requests) {
1336 const int rw = bio_data_dir(req->master_bio);
Lars Ellenberg113fef92013-03-22 18:14:40 -06001337
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001338 if (rw == WRITE /* rw != WRITE should not even end up here! */
1339 && req->private_bio && req->i.size
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001340 && !test_bit(AL_SUSPENDED, &device->flags)) {
1341 if (!drbd_al_begin_io_fastpath(device, &req->i))
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001342 continue;
1343
1344 req->rq_state |= RQ_IN_ACT_LOG;
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001345 req->in_actlog_jif = jiffies;
Lars Ellenbergad3fee72013-12-20 11:22:13 +01001346 atomic_dec(&device->ap_actlog_cnt);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001347 }
1348
1349 list_del_init(&req->tl_requests);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001350 drbd_send_and_submit(device, req);
Lars Ellenberg113fef92013-03-22 18:14:40 -06001351 }
Lars Ellenberg113fef92013-03-22 18:14:40 -06001352}
1353
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001354static bool prepare_al_transaction_nonblock(struct drbd_device *device,
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001355 struct list_head *incoming,
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001356 struct list_head *pending,
1357 struct list_head *later)
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001358{
1359 struct drbd_request *req, *tmp;
1360 int wake = 0;
1361 int err;
1362
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001363 spin_lock_irq(&device->al_lock);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001364 list_for_each_entry_safe(req, tmp, incoming, tl_requests) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001365 err = drbd_al_begin_io_nonblock(device, &req->i);
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001366 if (err == -ENOBUFS)
1367 break;
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001368 if (err == -EBUSY)
1369 wake = 1;
1370 if (err)
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001371 list_move_tail(&req->tl_requests, later);
1372 else
1373 list_move_tail(&req->tl_requests, pending);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001374 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001375 spin_unlock_irq(&device->al_lock);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001376 if (wake)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001377 wake_up(&device->al_wait);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001378 return !list_empty(pending);
1379}
Lars Ellenberg113fef92013-03-22 18:14:40 -06001380
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001381void send_and_submit_pending(struct drbd_device *device, struct list_head *pending)
1382{
1383 struct drbd_request *req, *tmp;
1384
1385 list_for_each_entry_safe(req, tmp, pending, tl_requests) {
1386 req->rq_state |= RQ_IN_ACT_LOG;
1387 req->in_actlog_jif = jiffies;
1388 atomic_dec(&device->ap_actlog_cnt);
1389 list_del_init(&req->tl_requests);
1390 drbd_send_and_submit(device, req);
1391 }
1392}
1393
Lars Ellenberg113fef92013-03-22 18:14:40 -06001394void do_submit(struct work_struct *ws)
1395{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001396 struct drbd_device *device = container_of(ws, struct drbd_device, submit.worker);
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001397 LIST_HEAD(incoming); /* from drbd_make_request() */
1398 LIST_HEAD(pending); /* to be submitted after next AL-transaction commit */
1399 LIST_HEAD(busy); /* blocked by resync requests */
1400
1401 /* grab new incoming requests */
1402 spin_lock_irq(&device->resource->req_lock);
1403 list_splice_tail_init(&device->submit.writes, &incoming);
1404 spin_unlock_irq(&device->resource->req_lock);
Lars Ellenberg113fef92013-03-22 18:14:40 -06001405
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001406 for (;;) {
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001407 DEFINE_WAIT(wait);
Lars Ellenberg113fef92013-03-22 18:14:40 -06001408
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001409 /* move used-to-be-busy back to front of incoming */
1410 list_splice_init(&busy, &incoming);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001411 submit_fast_path(device, &incoming);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001412 if (list_empty(&incoming))
1413 break;
1414
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001415 for (;;) {
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001416 prepare_to_wait(&device->al_wait, &wait, TASK_UNINTERRUPTIBLE);
1417
1418 list_splice_init(&busy, &incoming);
1419 prepare_al_transaction_nonblock(device, &incoming, &pending, &busy);
1420 if (!list_empty(&pending))
1421 break;
1422
1423 schedule();
1424
1425 /* If all currently "hot" activity log extents are kept busy by
1426 * incoming requests, we still must not totally starve new
1427 * requests to "cold" extents.
1428 * Something left on &incoming means there had not been
1429 * enough update slots available, and the activity log
1430 * has been marked as "starving".
1431 *
1432 * Try again now, without looking for new requests,
1433 * effectively blocking all new requests until we made
1434 * at least _some_ progress with what we currently have.
1435 */
1436 if (!list_empty(&incoming))
1437 continue;
1438
1439 /* Nothing moved to pending, but nothing left
1440 * on incoming: all moved to busy!
1441 * Grab new and iterate. */
1442 spin_lock_irq(&device->resource->req_lock);
1443 list_splice_tail_init(&device->submit.writes, &incoming);
1444 spin_unlock_irq(&device->resource->req_lock);
1445 }
1446 finish_wait(&device->al_wait, &wait);
1447
1448 /* If the transaction was full, before all incoming requests
1449 * had been processed, skip ahead to commit, and iterate
1450 * without splicing in more incoming requests from upper layers.
1451 *
1452 * Else, if all incoming have been processed,
1453 * they have become either "pending" (to be submitted after
1454 * next transaction commit) or "busy" (blocked by resync).
1455 *
1456 * Maybe more was queued, while we prepared the transaction?
1457 * Try to stuff those into this transaction as well.
1458 * Be strictly non-blocking here,
1459 * we already have something to commit.
1460 *
1461 * Commit if we don't make any more progres.
1462 */
1463
1464 while (list_empty(&incoming)) {
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001465 LIST_HEAD(more_pending);
1466 LIST_HEAD(more_incoming);
1467 bool made_progress;
1468
1469 /* It is ok to look outside the lock,
1470 * it's only an optimization anyways */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001471 if (list_empty(&device->submit.writes))
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001472 break;
1473
Lars Ellenberg844a6ae2013-11-22 12:52:03 +01001474 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001475 list_splice_tail_init(&device->submit.writes, &more_incoming);
Lars Ellenberg844a6ae2013-11-22 12:52:03 +01001476 spin_unlock_irq(&device->resource->req_lock);
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001477
1478 if (list_empty(&more_incoming))
1479 break;
1480
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001481 made_progress = prepare_al_transaction_nonblock(device, &more_incoming, &more_pending, &busy);
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001482
1483 list_splice_tail_init(&more_pending, &pending);
1484 list_splice_tail_init(&more_incoming, &incoming);
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001485 if (!made_progress)
1486 break;
1487 }
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001488
Lars Ellenberg4dd726f2014-02-11 11:15:36 +01001489 drbd_al_begin_io_commit(device);
Lars Ellenbergf5b90b62014-05-07 22:41:28 +02001490 send_and_submit_pending(device, &pending);
Lars Ellenberg113fef92013-03-22 18:14:40 -06001491 }
1492}
1493
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001494void drbd_make_request(struct request_queue *q, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001495{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001496 struct drbd_device *device = (struct drbd_device *) q->queuedata;
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001497 unsigned long start_jif;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001498
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001499 start_jif = jiffies;
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001500
Philipp Reisnerb411b362009-09-25 16:07:19 -07001501 /*
1502 * what we "blindly" assume:
1503 */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001504 D_ASSERT(device, IS_ALIGNED(bio->bi_iter.bi_size, 512));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001505
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001506 inc_ap_bio(device);
Lars Ellenberge5f891b2013-11-22 12:32:01 +01001507 __drbd_make_request(device, bio, start_jif);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001508}
1509
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001510/* This is called by bio_add_page().
Philipp Reisnerb411b362009-09-25 16:07:19 -07001511 *
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001512 * q->max_hw_sectors and other global limits are already enforced there.
1513 *
1514 * We need to call down to our lower level device,
1515 * in case it has special restrictions.
1516 *
1517 * We also may need to enforce configured max-bio-bvecs limits.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001518 *
1519 * As long as the BIO is empty we have to allow at least one bvec,
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001520 * regardless of size and offset, so no need to ask lower levels.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001521 */
1522int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec)
1523{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001524 struct drbd_device *device = (struct drbd_device *) q->queuedata;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001525 unsigned int bio_size = bvm->bi_size;
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001526 int limit = DRBD_MAX_BIO_SIZE;
1527 int backing_limit;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001528
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001529 if (bio_size && get_ldev(device)) {
Lars Ellenberg35f47ef2013-10-23 10:59:19 +02001530 unsigned int max_hw_sectors = queue_max_hw_sectors(q);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001531 struct request_queue * const b =
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001532 device->ldev->backing_bdev->bd_disk->queue;
Lars Ellenberga1c88d02010-05-14 19:16:41 +02001533 if (b->merge_bvec_fn) {
Lars Ellenberg3b9d35d2014-11-10 17:21:13 +01001534 bvm->bi_bdev = device->ldev->backing_bdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001535 backing_limit = b->merge_bvec_fn(b, bvm, bvec);
1536 limit = min(limit, backing_limit);
1537 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001538 put_ldev(device);
Lars Ellenberg35f47ef2013-10-23 10:59:19 +02001539 if ((limit >> 9) > max_hw_sectors)
1540 limit = max_hw_sectors << 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001541 }
1542 return limit;
1543}
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001544
1545void request_timer_fn(unsigned long data)
1546{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001547 struct drbd_device *device = (struct drbd_device *) data;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001548 struct drbd_connection *connection = first_peer_device(device)->connection;
Lars Ellenberg7753a4c12013-11-22 13:00:12 +01001549 struct drbd_request *req_read, *req_write, *req_peer; /* oldest request */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001550 struct net_conf *nc;
Lars Ellenberg7753a4c12013-11-22 13:00:12 +01001551 unsigned long oldest_submit_jif;
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02001552 unsigned long ent = 0, dt = 0, et, nt; /* effective timeout = ko_count * timeout */
Lars Ellenbergba280c02012-04-25 11:46:14 +02001553 unsigned long now;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001554
Philipp Reisner44ed1672011-04-19 17:10:19 +02001555 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001556 nc = rcu_dereference(connection->net_conf);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001557 if (nc && device->state.conn >= C_WF_REPORT_PARAMS)
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001558 ent = nc->timeout * HZ/10 * nc->ko_count;
Philipp Reisnercdfda632011-07-05 15:38:59 +02001559
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001560 if (get_ldev(device)) { /* implicit state.disk >= D_INCONSISTENT */
1561 dt = rcu_dereference(device->ldev->disk_conf)->disk_timeout * HZ / 10;
1562 put_ldev(device);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02001563 }
Philipp Reisner44ed1672011-04-19 17:10:19 +02001564 rcu_read_unlock();
1565
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02001566 et = min_not_zero(dt, ent);
1567
Lars Ellenbergba280c02012-04-25 11:46:14 +02001568 if (!et)
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001569 return; /* Recurring timer stopped */
1570
Lars Ellenbergba280c02012-04-25 11:46:14 +02001571 now = jiffies;
Lars Ellenberg7753a4c12013-11-22 13:00:12 +01001572 nt = now + et;
Lars Ellenbergba280c02012-04-25 11:46:14 +02001573
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001574 spin_lock_irq(&device->resource->req_lock);
Lars Ellenberg7753a4c12013-11-22 13:00:12 +01001575 req_read = list_first_entry_or_null(&device->pending_completion[0], struct drbd_request, req_pending_local);
1576 req_write = list_first_entry_or_null(&device->pending_completion[1], struct drbd_request, req_pending_local);
1577 req_peer = connection->req_not_net_done;
1578 /* maybe the oldest request waiting for the peer is in fact still
1579 * blocking in tcp sendmsg */
1580 if (!req_peer && connection->req_next && connection->req_next->pre_send_jif)
1581 req_peer = connection->req_next;
1582
1583 /* evaluate the oldest peer request only in one timer! */
1584 if (req_peer && req_peer->device != device)
1585 req_peer = NULL;
1586
1587 /* do we have something to evaluate? */
1588 if (req_peer == NULL && req_write == NULL && req_read == NULL)
1589 goto out;
1590
1591 oldest_submit_jif =
1592 (req_write && req_read)
1593 ? ( time_before(req_write->pre_submit_jif, req_read->pre_submit_jif)
1594 ? req_write->pre_submit_jif : req_read->pre_submit_jif )
1595 : req_write ? req_write->pre_submit_jif
1596 : req_read ? req_read->pre_submit_jif : now;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001597
Lars Ellenbergba280c02012-04-25 11:46:14 +02001598 /* The request is considered timed out, if
1599 * - we have some effective timeout from the configuration,
1600 * with above state restrictions applied,
1601 * - the oldest request is waiting for a response from the network
1602 * resp. the local disk,
1603 * - the oldest request is in fact older than the effective timeout,
1604 * - the connection was established (resp. disk was attached)
1605 * for longer than the timeout already.
1606 * Note that for 32bit jiffies and very stable connections/disks,
1607 * we may have a wrap around, which is catched by
1608 * !time_in_range(now, last_..._jif, last_..._jif + timeout).
1609 *
1610 * Side effect: once per 32bit wrap-around interval, which means every
1611 * ~198 days with 250 HZ, we have a window where the timeout would need
1612 * to expire twice (worst case) to become effective. Good enough.
1613 */
Lars Ellenberg08535462014-04-28 18:43:31 +02001614 if (ent && req_peer &&
Lars Ellenberg7753a4c12013-11-22 13:00:12 +01001615 time_after(now, req_peer->pre_send_jif + ent) &&
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001616 !time_in_range(now, connection->last_reconnect_jif, connection->last_reconnect_jif + ent)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001617 drbd_warn(device, "Remote failed to finish a request within ko-count * timeout\n");
Philipp Reisner9581f972014-11-10 17:21:14 +01001618 _conn_request_state(connection, NS(conn, C_TIMEOUT), CS_VERBOSE | CS_HARD);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001619 }
Lars Ellenberg7753a4c12013-11-22 13:00:12 +01001620 if (dt && oldest_submit_jif != now &&
1621 time_after(now, oldest_submit_jif + dt) &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001622 !time_in_range(now, device->last_reattach_jif, device->last_reattach_jif + dt)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001623 drbd_warn(device, "Local backing device failed to meet the disk-timeout\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001624 __drbd_chk_io_error(device, DRBD_FORCE_DETACH);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02001625 }
Lars Ellenberg08535462014-04-28 18:43:31 +02001626
1627 /* Reschedule timer for the nearest not already expired timeout.
1628 * Fallback to now + min(effective network timeout, disk timeout). */
Lars Ellenberg7753a4c12013-11-22 13:00:12 +01001629 ent = (ent && req_peer && time_before(now, req_peer->pre_send_jif + ent))
1630 ? req_peer->pre_send_jif + ent : now + et;
1631 dt = (dt && oldest_submit_jif != now && time_before(now, oldest_submit_jif + dt))
1632 ? oldest_submit_jif + dt : now + et;
Lars Ellenberg08535462014-04-28 18:43:31 +02001633 nt = time_before(ent, dt) ? ent : dt;
Lars Ellenberg7753a4c12013-11-22 13:00:12 +01001634out:
Andreas Gruenbacher8d4ba3f2014-09-11 14:29:08 +02001635 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001636 mod_timer(&device->request_timer, nt);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001637}