blob: f07a724998ea021feaf420cb728ee0a8453cb58b [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{
Lars Ellenberg6d9febe2013-03-19 18:16:50 +010039 const int rw = bio_data_dir(req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -070040 int cpu;
41 cpu = part_stat_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020042 part_round_stats(cpu, &device->vdisk->part0);
43 part_stat_inc(cpu, &device->vdisk->part0, ios[rw]);
44 part_stat_add(cpu, &device->vdisk->part0, sectors[rw], req->i.size >> 9);
Philipp Reisner376694a2011-11-07 10:54:28 +010045 (void) cpu; /* The macro invocations above want the cpu argument, I do not like
46 the compiler warning about cpu only assigned but never used... */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020047 part_inc_in_flight(&device->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070048 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070049}
50
51/* Update disk stats when completing request upwards */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020052static void _drbd_end_io_acct(struct drbd_device *device, struct drbd_request *req)
Philipp Reisnerb411b362009-09-25 16:07:19 -070053{
54 int rw = bio_data_dir(req->master_bio);
55 unsigned long duration = jiffies - req->start_time;
56 int cpu;
57 cpu = part_stat_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020058 part_stat_add(cpu, &device->vdisk->part0, ticks[rw], duration);
59 part_round_stats(cpu, &device->vdisk->part0);
60 part_dec_in_flight(&device->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070061 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070062}
63
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020064static struct drbd_request *drbd_req_new(struct drbd_device *device,
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010065 struct bio *bio_src)
Philipp Reisnerb411b362009-09-25 16:07:19 -070066{
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010067 struct drbd_request *req;
68
69 req = mempool_alloc(drbd_request_mempool, GFP_NOIO);
70 if (!req)
71 return NULL;
72
73 drbd_req_make_private_bio(req, bio_src);
74 req->rq_state = bio_data_dir(bio_src) == WRITE ? RQ_WRITE : 0;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +020075 req->device = device;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010076 req->master_bio = bio_src;
77 req->epoch = 0;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010078
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010079 drbd_clear_interval(&req->i);
Kent Overstreet4f024f32013-10-11 15:44:27 -070080 req->i.sector = bio_src->bi_iter.bi_sector;
81 req->i.size = bio_src->bi_iter.bi_size;
Andreas Gruenbacher5e472262011-01-27 14:42:51 +010082 req->i.local = true;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010083 req->i.waiting = false;
84
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010085 INIT_LIST_HEAD(&req->tl_requests);
86 INIT_LIST_HEAD(&req->w.list);
87
Lars Ellenberga0d856d2012-01-24 17:19:42 +010088 /* one reference to be put by __drbd_make_request */
Lars Ellenbergb4067772012-01-24 16:58:11 +010089 atomic_set(&req->completion_ref, 1);
Lars Ellenberga0d856d2012-01-24 17:19:42 +010090 /* one kref as long as completion_ref > 0 */
Lars Ellenbergb4067772012-01-24 16:58:11 +010091 kref_init(&req->kref);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010092 return req;
93}
94
Lars Ellenberg08d0dab2014-03-20 11:19:22 +010095static void drbd_remove_request_interval(struct rb_root *root,
96 struct drbd_request *req)
97{
98 struct drbd_device *device = req->device;
99 struct drbd_interval *i = &req->i;
100
101 drbd_remove_interval(root, i);
102
103 /* Wake up any processes waiting for this request to complete. */
104 if (i->waiting)
105 wake_up(&device->misc_wait);
106}
107
Lars Ellenberg9a278a72012-07-24 10:12:36 +0200108void drbd_req_destroy(struct kref *kref)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +0100109{
Lars Ellenbergb4067772012-01-24 16:58:11 +0100110 struct drbd_request *req = container_of(kref, struct drbd_request, kref);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200111 struct drbd_device *device = req->device;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100112 const unsigned s = req->rq_state;
113
114 if ((req->master_bio && !(s & RQ_POSTPONED)) ||
115 atomic_read(&req->completion_ref) ||
116 (s & RQ_LOCAL_PENDING) ||
117 ((s & RQ_NET_MASK) && !(s & RQ_NET_DONE))) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200118 drbd_err(device, "drbd_req_destroy: Logic BUG rq_state = 0x%x, completion_ref = %d\n",
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100119 s, atomic_read(&req->completion_ref));
120 return;
121 }
Philipp Reisner288f4222010-05-27 15:07:43 +0200122
123 /* remove it from the transfer log.
124 * well, only if it had been there in the first
125 * place... if it had not (local only or conflicting
126 * and never sent), it should still be "empty" as
127 * initialized in drbd_req_new(), so we can list_del() it
128 * here unconditionally */
Lars Ellenberg2312f0b32011-11-24 10:36:25 +0100129 list_del_init(&req->tl_requests);
Philipp Reisner288f4222010-05-27 15:07:43 +0200130
Lars Ellenberg08d0dab2014-03-20 11:19:22 +0100131 /* finally remove the request from the conflict detection
132 * respective block_id verification interval tree. */
133 if (!drbd_interval_empty(&req->i)) {
134 struct rb_root *root;
135
136 if (s & RQ_WRITE)
137 root = &device->write_requests;
138 else
139 root = &device->read_requests;
140 drbd_remove_request_interval(root, req);
141 } else if (s & (RQ_NET_MASK & ~RQ_NET_DONE) && req->i.size != 0)
142 drbd_err(device, "drbd_req_destroy: Logic BUG: interval empty, but: rq_state=0x%x, sect=%llu, size=%u\n",
143 s, (unsigned long long)req->i.sector, req->i.size);
144
Philipp Reisnerb411b362009-09-25 16:07:19 -0700145 /* if it was a write, we may have to set the corresponding
146 * bit(s) out-of-sync first. If it had a local part, we need to
147 * release the reference to the activity log. */
Lars Ellenbergb4067772012-01-24 16:58:11 +0100148 if (s & RQ_WRITE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700149 /* Set out-of-sync unless both OK flags are set
150 * (local only or remote failed).
151 * Other places where we set out-of-sync:
152 * READ with local io-error */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700153
Lars Ellenberg70f17b62012-09-03 14:08:35 +0200154 /* There is a special case:
155 * we may notice late that IO was suspended,
156 * and postpone, or schedule for retry, a write,
157 * before it even was submitted or sent.
158 * In that case we do not want to touch the bitmap at all.
159 */
160 if ((s & (RQ_POSTPONED|RQ_LOCAL_MASK|RQ_NET_MASK)) != RQ_POSTPONED) {
Philipp Reisnerd7644012012-08-28 14:39:44 +0200161 if (!(s & RQ_NET_OK) || !(s & RQ_LOCAL_OK))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200162 drbd_set_out_of_sync(device, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700163
Philipp Reisnerd7644012012-08-28 14:39:44 +0200164 if ((s & RQ_NET_OK) && (s & RQ_LOCAL_OK) && (s & RQ_NET_SIS))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200165 drbd_set_in_sync(device, req->i.sector, req->i.size);
Philipp Reisnerd7644012012-08-28 14:39:44 +0200166 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700167
168 /* one might be tempted to move the drbd_al_complete_io
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +0100169 * to the local io completion callback drbd_request_endio.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700170 * but, if this was a mirror write, we may only
171 * drbd_al_complete_io after this is RQ_NET_DONE,
172 * otherwise the extent could be dropped from the al
173 * before it has actually been written on the peer.
174 * if we crash before our peer knows about the request,
175 * but after the extent has been dropped from the al,
176 * we would forget to resync the corresponding extent.
177 */
Philipp Reisner76590cd2012-08-29 15:23:14 +0200178 if (s & RQ_IN_ACT_LOG) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200179 if (get_ldev_if_state(device, D_FAILED)) {
180 drbd_al_complete_io(device, &req->i);
181 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700182 } else if (__ratelimit(&drbd_ratelimit_state)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200183 drbd_warn(device, "Should have called drbd_al_complete_io(, %llu, %u), "
Lars Ellenberg181286a2011-03-31 15:18:56 +0200184 "but my Disk seems to have failed :(\n",
185 (unsigned long long) req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700186 }
187 }
188 }
189
Lars Ellenberg9a278a72012-07-24 10:12:36 +0200190 mempool_free(req, drbd_request_mempool);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700191}
192
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200193static void wake_all_senders(struct drbd_connection *connection)
194{
195 wake_up(&connection->sender_work.q_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700196}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700197
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100198/* must hold resource->req_lock */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200199void start_new_tl_epoch(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700200{
Lars Ellenberg99b4d8f2012-08-07 06:42:09 +0200201 /* no point closing an epoch, if it is empty, anyways. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200202 if (connection->current_tle_writes == 0)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700203 return;
204
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200205 connection->current_tle_writes = 0;
206 atomic_inc(&connection->current_tle_nr);
207 wake_all_senders(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700208}
209
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200210void complete_master_bio(struct drbd_device *device,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700211 struct bio_and_error *m)
212{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700213 bio_endio(m->bio, m->error);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200214 dec_ap_bio(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700215}
216
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100217
Philipp Reisnerb411b362009-09-25 16:07:19 -0700218/* Helper for __req_mod().
219 * Set m->bio to the master bio, if it is fit to be completed,
220 * or leave it alone (it is initialized to NULL in __req_mod),
221 * if it has already been completed, or cannot be completed yet.
222 * If m->bio is set, the error status to be returned is placed in m->error.
223 */
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200224static
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100225void drbd_req_complete(struct drbd_request *req, struct bio_and_error *m)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700226{
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100227 const unsigned s = req->rq_state;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200228 struct drbd_device *device = req->device;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100229 int rw;
230 int error, ok;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700231
Philipp Reisnerb411b362009-09-25 16:07:19 -0700232 /* we must not complete the master bio, while it is
233 * still being processed by _drbd_send_zc_bio (drbd_send_dblock)
234 * not yet acknowledged by the peer
235 * not yet completed by the local io subsystem
236 * these flags may get cleared in any order by
237 * the worker,
238 * the receiver,
239 * the bio_endio completion callbacks.
240 */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100241 if ((s & RQ_LOCAL_PENDING && !(s & RQ_LOCAL_ABORTED)) ||
242 (s & RQ_NET_QUEUED) || (s & RQ_NET_PENDING) ||
243 (s & RQ_COMPLETION_SUSP)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200244 drbd_err(device, "drbd_req_complete: Logic BUG rq_state = 0x%x\n", s);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700245 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700246 }
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100247
248 if (!req->master_bio) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200249 drbd_err(device, "drbd_req_complete: Logic BUG, master_bio == NULL!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700250 return;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100251 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700252
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100253 rw = bio_rw(req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700254
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100255 /*
256 * figure out whether to report success or failure.
257 *
258 * report success when at least one of the operations succeeded.
259 * or, to put the other way,
260 * only report failure, when both operations failed.
261 *
262 * what to do about the failures is handled elsewhere.
263 * what we need to do here is just: complete the master_bio.
264 *
265 * local completion error, if any, has been stored as ERR_PTR
266 * in private_bio within drbd_request_endio.
267 */
268 ok = (s & RQ_LOCAL_OK) || (s & RQ_NET_OK);
269 error = PTR_ERR(req->private_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700270
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100271 /* Before we can signal completion to the upper layers,
272 * we may need to close the current transfer log epoch.
273 * We are within the request lock, so we can simply compare
274 * the request epoch number with the current transfer log
275 * epoch number. If they match, increase the current_tle_nr,
276 * and reset the transfer log epoch write_cnt.
277 */
278 if (rw == WRITE &&
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200279 req->epoch == atomic_read(&first_peer_device(device)->connection->current_tle_nr))
280 start_new_tl_epoch(first_peer_device(device)->connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700281
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100282 /* Update disk stats */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200283 _drbd_end_io_acct(device, req);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100284
285 /* If READ failed,
286 * have it be pushed back to the retry work queue,
287 * so it will re-enter __drbd_make_request(),
288 * and be re-assigned to a suitable local or remote path,
289 * or failed if we do not have access to good data anymore.
290 *
291 * Unless it was failed early by __drbd_make_request(),
292 * because no path was available, in which case
293 * it was not even added to the transfer_log.
294 *
295 * READA may fail, and will not be retried.
296 *
297 * WRITE should have used all available paths already.
298 */
299 if (!ok && rw == READ && !list_empty(&req->tl_requests))
300 req->rq_state |= RQ_POSTPONED;
301
302 if (!(req->rq_state & RQ_POSTPONED)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700303 m->error = ok ? 0 : (error ?: -EIO);
304 m->bio = req->master_bio;
305 req->master_bio = NULL;
Lars Ellenberg08d0dab2014-03-20 11:19:22 +0100306 /* We leave it in the tree, to be able to verify later
307 * write-acks in protocol != C during resync.
308 * But we mark it as "complete", so it won't be counted as
309 * conflict in a multi-primary setup. */
310 req->i.completed = true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700311 }
Lars Ellenberg08d0dab2014-03-20 11:19:22 +0100312
313 if (req->i.waiting)
314 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700315}
316
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100317static int drbd_req_put_completion_ref(struct drbd_request *req, struct bio_and_error *m, int put)
Philipp Reisnercfa03412010-06-23 17:18:51 +0200318{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200319 struct drbd_device *device = req->device;
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200320 D_ASSERT(device, m || (req->rq_state & RQ_POSTPONED));
Philipp Reisnercfa03412010-06-23 17:18:51 +0200321
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100322 if (!atomic_sub_and_test(put, &req->completion_ref))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700323 return 0;
324
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100325 drbd_req_complete(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700326
Lars Ellenberg9a278a72012-07-24 10:12:36 +0200327 if (req->rq_state & RQ_POSTPONED) {
328 /* don't destroy the req object just yet,
329 * but queue it for retry */
330 drbd_restart_request(req);
331 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700332 }
333
Philipp Reisnerb411b362009-09-25 16:07:19 -0700334 return 1;
335}
336
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100337/* I'd like this to be the only place that manipulates
338 * req->completion_ref and req->kref. */
339static void mod_rq_state(struct drbd_request *req, struct bio_and_error *m,
340 int clear, int set)
341{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200342 struct drbd_device *device = req->device;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100343 unsigned s = req->rq_state;
344 int c_put = 0;
345 int k_put = 0;
346
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200347 if (drbd_suspended(device) && !((s | clear) & RQ_COMPLETION_SUSP))
Philipp Reisner5af2e8c2012-08-14 11:28:52 +0200348 set |= RQ_COMPLETION_SUSP;
349
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100350 /* apply */
351
352 req->rq_state &= ~clear;
353 req->rq_state |= set;
354
355 /* no change? */
356 if (req->rq_state == s)
357 return;
358
359 /* intent: get references */
360
361 if (!(s & RQ_LOCAL_PENDING) && (set & RQ_LOCAL_PENDING))
362 atomic_inc(&req->completion_ref);
363
364 if (!(s & RQ_NET_PENDING) && (set & RQ_NET_PENDING)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200365 inc_ap_pending(device);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100366 atomic_inc(&req->completion_ref);
367 }
368
369 if (!(s & RQ_NET_QUEUED) && (set & RQ_NET_QUEUED))
370 atomic_inc(&req->completion_ref);
371
372 if (!(s & RQ_EXP_BARR_ACK) && (set & RQ_EXP_BARR_ACK))
373 kref_get(&req->kref); /* wait for the DONE */
374
375 if (!(s & RQ_NET_SENT) && (set & RQ_NET_SENT))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200376 atomic_add(req->i.size >> 9, &device->ap_in_flight);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100377
Philipp Reisner5af2e8c2012-08-14 11:28:52 +0200378 if (!(s & RQ_COMPLETION_SUSP) && (set & RQ_COMPLETION_SUSP))
379 atomic_inc(&req->completion_ref);
380
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100381 /* progress: put references */
382
383 if ((s & RQ_COMPLETION_SUSP) && (clear & RQ_COMPLETION_SUSP))
384 ++c_put;
385
386 if (!(s & RQ_LOCAL_ABORTED) && (set & RQ_LOCAL_ABORTED)) {
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200387 D_ASSERT(device, req->rq_state & RQ_LOCAL_PENDING);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100388 /* local completion may still come in later,
389 * we need to keep the req object around. */
390 kref_get(&req->kref);
391 ++c_put;
392 }
393
394 if ((s & RQ_LOCAL_PENDING) && (clear & RQ_LOCAL_PENDING)) {
395 if (req->rq_state & RQ_LOCAL_ABORTED)
396 ++k_put;
397 else
398 ++c_put;
399 }
400
401 if ((s & RQ_NET_PENDING) && (clear & RQ_NET_PENDING)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200402 dec_ap_pending(device);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100403 ++c_put;
404 }
405
406 if ((s & RQ_NET_QUEUED) && (clear & RQ_NET_QUEUED))
407 ++c_put;
408
409 if ((s & RQ_EXP_BARR_ACK) && !(s & RQ_NET_DONE) && (set & RQ_NET_DONE)) {
410 if (req->rq_state & RQ_NET_SENT)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200411 atomic_sub(req->i.size >> 9, &device->ap_in_flight);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100412 ++k_put;
413 }
414
415 /* potentially complete and destroy */
416
417 if (k_put || c_put) {
418 /* Completion does it's own kref_put. If we are going to
419 * kref_sub below, we need req to be still around then. */
420 int at_least = k_put + !!c_put;
421 int refcount = atomic_read(&req->kref.refcount);
422 if (refcount < at_least)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200423 drbd_err(device,
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100424 "mod_rq_state: Logic BUG: %x -> %x: refcount = %d, should be >= %d\n",
425 s, req->rq_state, refcount, at_least);
426 }
427
428 /* If we made progress, retry conflicting peer requests, if any. */
429 if (req->i.waiting)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200430 wake_up(&device->misc_wait);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100431
432 if (c_put)
433 k_put += drbd_req_put_completion_ref(req, m, c_put);
434 if (k_put)
435 kref_sub(&req->kref, k_put, drbd_req_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700436}
437
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200438static void drbd_report_io_error(struct drbd_device *device, struct drbd_request *req)
Lars Ellenbergccae7862012-09-26 14:07:04 +0200439{
440 char b[BDEVNAME_SIZE];
441
Lars Ellenberg42839f62012-09-27 15:19:38 +0200442 if (!__ratelimit(&drbd_ratelimit_state))
Lars Ellenbergccae7862012-09-26 14:07:04 +0200443 return;
444
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200445 drbd_warn(device, "local %s IO error sector %llu+%u on %s\n",
Lars Ellenbergccae7862012-09-26 14:07:04 +0200446 (req->rq_state & RQ_WRITE) ? "WRITE" : "READ",
Lars Ellenberg42839f62012-09-27 15:19:38 +0200447 (unsigned long long)req->i.sector,
448 req->i.size >> 9,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200449 bdevname(device->ldev->backing_bdev, b));
Lars Ellenbergccae7862012-09-26 14:07:04 +0200450}
451
Philipp Reisnerb411b362009-09-25 16:07:19 -0700452/* obviously this could be coded as many single functions
453 * instead of one huge switch,
454 * or by putting the code directly in the respective locations
455 * (as it has been before).
456 *
457 * but having it this way
458 * enforces that it is all in this one place, where it is easier to audit,
459 * it makes it obvious that whatever "event" "happens" to a request should
460 * happen "atomically" within the req_lock,
461 * and it enforces that we have to think in a very structured manner
462 * about the "events" that may happen to a request during its life time ...
463 */
Philipp Reisner2a806992010-06-09 14:07:43 +0200464int __req_mod(struct drbd_request *req, enum drbd_req_event what,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700465 struct bio_and_error *m)
466{
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100467 struct drbd_device *const device = req->device;
468 struct drbd_peer_device *const peer_device = first_peer_device(device);
469 struct drbd_connection *const connection = peer_device ? peer_device->connection : NULL;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200470 struct net_conf *nc;
Philipp Reisner303d1442011-04-13 16:24:47 -0700471 int p, rv = 0;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100472
473 if (m)
474 m->bio = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700475
Philipp Reisnerb411b362009-09-25 16:07:19 -0700476 switch (what) {
477 default:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200478 drbd_err(device, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700479 break;
480
481 /* does not happen...
482 * initialization done in drbd_req_new
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100483 case CREATED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700484 break;
485 */
486
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100487 case TO_BE_SENT: /* via network */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100488 /* reached via __drbd_make_request
Philipp Reisnerb411b362009-09-25 16:07:19 -0700489 * and from w_read_retry_remote */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200490 D_ASSERT(device, !(req->rq_state & RQ_NET_MASK));
Philipp Reisner44ed1672011-04-19 17:10:19 +0200491 rcu_read_lock();
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100492 nc = rcu_dereference(connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200493 p = nc->wire_protocol;
494 rcu_read_unlock();
Philipp Reisner303d1442011-04-13 16:24:47 -0700495 req->rq_state |=
496 p == DRBD_PROT_C ? RQ_EXP_WRITE_ACK :
497 p == DRBD_PROT_B ? RQ_EXP_RECEIVE_ACK : 0;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100498 mod_rq_state(req, m, 0, RQ_NET_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700499 break;
500
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100501 case TO_BE_SUBMITTED: /* locally */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100502 /* reached via __drbd_make_request */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200503 D_ASSERT(device, !(req->rq_state & RQ_LOCAL_MASK));
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100504 mod_rq_state(req, m, 0, RQ_LOCAL_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700505 break;
506
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100507 case COMPLETED_OK:
Philipp Reisner2b4dd362011-03-14 13:01:50 +0100508 if (req->rq_state & RQ_WRITE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200509 device->writ_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700510 else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200511 device->read_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700512
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100513 mod_rq_state(req, m, RQ_LOCAL_PENDING,
514 RQ_LOCAL_COMPLETED|RQ_LOCAL_OK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700515 break;
516
Philipp Reisnercdfda632011-07-05 15:38:59 +0200517 case ABORT_DISK_IO:
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100518 mod_rq_state(req, m, 0, RQ_LOCAL_ABORTED);
Philipp Reisner2b4dd362011-03-14 13:01:50 +0100519 break;
520
Lars Ellenbergedc9f5e2012-09-27 15:18:21 +0200521 case WRITE_COMPLETED_WITH_ERROR:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200522 drbd_report_io_error(device, req);
523 __drbd_chk_io_error(device, DRBD_WRITE_ERROR);
Lars Ellenbergedc9f5e2012-09-27 15:18:21 +0200524 mod_rq_state(req, m, RQ_LOCAL_PENDING, RQ_LOCAL_COMPLETED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700525 break;
526
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100527 case READ_COMPLETED_WITH_ERROR:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200528 drbd_set_out_of_sync(device, req->i.sector, req->i.size);
529 drbd_report_io_error(device, req);
530 __drbd_chk_io_error(device, DRBD_READ_ERROR);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100531 /* fall through. */
532 case READ_AHEAD_COMPLETED_WITH_ERROR:
533 /* it is legal to fail READA, no __drbd_chk_io_error in that case. */
534 mod_rq_state(req, m, RQ_LOCAL_PENDING, RQ_LOCAL_COMPLETED);
Lars Ellenberg4439c402012-03-26 17:29:30 +0200535 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700536
Lars Ellenberg2f632ae2014-04-28 18:43:24 +0200537 case DISCARD_COMPLETED_NOTSUPP:
538 case DISCARD_COMPLETED_WITH_ERROR:
539 /* I'd rather not detach from local disk just because it
540 * failed a REQ_DISCARD. */
541 mod_rq_state(req, m, RQ_LOCAL_PENDING, RQ_LOCAL_COMPLETED);
542 break;
543
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100544 case QUEUE_FOR_NET_READ:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700545 /* READ or READA, and
546 * no local disk,
547 * or target area marked as invalid,
548 * or just got an io-error. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100549 /* from __drbd_make_request
Philipp Reisnerb411b362009-09-25 16:07:19 -0700550 * or from bio_endio during read io-error recovery */
551
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200552 /* So we can verify the handle in the answer packet.
553 * Corresponding drbd_remove_request_interval is in
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100554 * drbd_req_complete() */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200555 D_ASSERT(device, drbd_interval_empty(&req->i));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200556 drbd_insert_interval(&device->read_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700557
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200558 set_bit(UNPLUG_REMOTE, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700559
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200560 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
561 D_ASSERT(device, (req->rq_state & RQ_LOCAL_MASK) == 0);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100562 mod_rq_state(req, m, 0, RQ_NET_QUEUED);
Lars Ellenberg4439c402012-03-26 17:29:30 +0200563 req->w.cb = w_send_read_req;
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100564 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200565 &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700566 break;
567
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100568 case QUEUE_FOR_NET_WRITE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700569 /* assert something? */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100570 /* from __drbd_make_request only */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700571
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200572 /* Corresponding drbd_remove_request_interval is in
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100573 * drbd_req_complete() */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200574 D_ASSERT(device, drbd_interval_empty(&req->i));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200575 drbd_insert_interval(&device->write_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700576
577 /* NOTE
578 * In case the req ended up on the transfer log before being
579 * queued on the worker, it could lead to this request being
580 * missed during cleanup after connection loss.
581 * So we have to do both operations here,
582 * within the same lock that protects the transfer log.
583 *
584 * _req_add_to_epoch(req); this has to be after the
585 * _maybe_start_new_epoch(req); which happened in
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100586 * __drbd_make_request, because we now may set the bit
Philipp Reisnerb411b362009-09-25 16:07:19 -0700587 * again ourselves to close the current epoch.
588 *
589 * Add req to the (now) current epoch (barrier). */
590
Lars Ellenberg83c38832009-11-03 02:22:06 +0100591 /* otherwise we may lose an unplug, which may cause some remote
592 * io-scheduler timeout to expire, increasing maximum latency,
593 * hurting performance. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200594 set_bit(UNPLUG_REMOTE, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700595
596 /* queue work item to send data */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200597 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100598 mod_rq_state(req, m, 0, RQ_NET_QUEUED|RQ_EXP_BARR_ACK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700599 req->w.cb = w_send_dblock;
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100600 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200601 &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700602
603 /* close the epoch, in case it outgrew the limit */
Philipp Reisner44ed1672011-04-19 17:10:19 +0200604 rcu_read_lock();
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100605 nc = rcu_dereference(connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200606 p = nc->max_epoch_size;
607 rcu_read_unlock();
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100608 if (connection->current_tle_writes >= p)
609 start_new_tl_epoch(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700610
611 break;
612
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100613 case QUEUE_FOR_SEND_OOS:
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100614 mod_rq_state(req, m, 0, RQ_NET_QUEUED);
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +0100615 req->w.cb = w_send_out_of_sync;
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100616 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200617 &req->w);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200618 break;
619
Lars Ellenbergea9d6722012-03-26 16:46:39 +0200620 case READ_RETRY_REMOTE_CANCELED:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100621 case SEND_CANCELED:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100622 case SEND_FAILED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700623 /* real cleanup will be done from tl_clear. just update flags
624 * so it is no longer marked as on the worker queue */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100625 mod_rq_state(req, m, RQ_NET_QUEUED, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700626 break;
627
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100628 case HANDED_OVER_TO_NETWORK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700629 /* assert something? */
630 if (bio_data_dir(req->master_bio) == WRITE &&
Philipp Reisner303d1442011-04-13 16:24:47 -0700631 !(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK))) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700632 /* this is what is dangerous about protocol A:
633 * pretend it was successfully written on the peer. */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100634 if (req->rq_state & RQ_NET_PENDING)
635 mod_rq_state(req, m, RQ_NET_PENDING, RQ_NET_OK);
636 /* else: neg-ack was faster... */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700637 /* it is still not yet RQ_NET_DONE until the
638 * corresponding epoch barrier got acked as well,
639 * so we know what to dirty on connection loss */
640 }
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100641 mod_rq_state(req, m, RQ_NET_QUEUED, RQ_NET_SENT);
Lars Ellenberg6d49e102012-01-11 09:43:25 +0100642 break;
643
Lars Ellenberg27a434f2012-03-26 16:44:59 +0200644 case OOS_HANDED_TO_NETWORK:
Lars Ellenberg6d49e102012-01-11 09:43:25 +0100645 /* Was not set PENDING, no longer QUEUED, so is now DONE
646 * as far as this connection is concerned. */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100647 mod_rq_state(req, m, RQ_NET_QUEUED, RQ_NET_DONE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700648 break;
649
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100650 case CONNECTION_LOST_WHILE_PENDING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700651 /* transfer log cleanup after connection loss */
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100652 mod_rq_state(req, m,
653 RQ_NET_OK|RQ_NET_PENDING|RQ_COMPLETION_SUSP,
654 RQ_NET_DONE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700655 break;
656
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +0200657 case CONFLICT_RESOLVED:
658 /* for superseded conflicting writes of multiple primaries,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700659 * there is no need to keep anything in the tl, potential
Lars Ellenberg934722a2012-07-24 09:31:18 +0200660 * node crashes are covered by the activity log.
661 *
662 * If this request had been marked as RQ_POSTPONED before,
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +0200663 * it will actually not be completed, but "restarted",
Lars Ellenberg934722a2012-07-24 09:31:18 +0200664 * resubmitted from the retry worker context. */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200665 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
666 D_ASSERT(device, req->rq_state & RQ_EXP_WRITE_ACK);
Lars Ellenberg934722a2012-07-24 09:31:18 +0200667 mod_rq_state(req, m, RQ_NET_PENDING, RQ_NET_DONE|RQ_NET_OK);
668 break;
669
Lars Ellenberg0afd5692012-03-26 16:51:11 +0200670 case WRITE_ACKED_BY_PEER_AND_SIS:
Lars Ellenberg934722a2012-07-24 09:31:18 +0200671 req->rq_state |= RQ_NET_SIS;
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100672 case WRITE_ACKED_BY_PEER:
Lars Ellenberg08d0dab2014-03-20 11:19:22 +0100673 /* Normal operation protocol C: successfully written on peer.
674 * During resync, even in protocol != C,
675 * we requested an explicit write ack anyways.
676 * Which means we cannot even assert anything here.
Lars Ellenbergd64957c2012-03-23 14:42:19 +0100677 * Nothing more to do here.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700678 * We want to keep the tl in place for all protocols, to cater
Lars Ellenbergd64957c2012-03-23 14:42:19 +0100679 * for volatile write-back caches on lower level devices. */
Philipp Reisner303d1442011-04-13 16:24:47 -0700680 goto ack_common;
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100681 case RECV_ACKED_BY_PEER:
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200682 D_ASSERT(device, req->rq_state & RQ_EXP_RECEIVE_ACK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700683 /* protocol B; pretends to be successfully written on peer.
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100684 * see also notes above in HANDED_OVER_TO_NETWORK about
Philipp Reisnerb411b362009-09-25 16:07:19 -0700685 * protocol != C */
Philipp Reisner303d1442011-04-13 16:24:47 -0700686 ack_common:
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100687 mod_rq_state(req, m, RQ_NET_PENDING, RQ_NET_OK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700688 break;
689
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100690 case POSTPONE_WRITE:
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200691 D_ASSERT(device, req->rq_state & RQ_EXP_WRITE_ACK);
Philipp Reisner303d1442011-04-13 16:24:47 -0700692 /* If this node has already detected the write conflict, the
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100693 * worker will be waiting on misc_wait. Wake it up once this
694 * request has completed locally.
695 */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200696 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100697 req->rq_state |= RQ_POSTPONED;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100698 if (req->i.waiting)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200699 wake_up(&device->misc_wait);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100700 /* Do not clear RQ_NET_PENDING. This request will make further
701 * progress via restart_conflicting_writes() or
702 * fail_postponed_requests(). Hopefully. */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700703 break;
704
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100705 case NEG_ACKED:
Lars Ellenberg46e21bb2012-08-07 06:47:14 +0200706 mod_rq_state(req, m, RQ_NET_OK|RQ_NET_PENDING, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700707 break;
708
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100709 case FAIL_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200710 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
711 break;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100712 mod_rq_state(req, m, RQ_COMPLETION_SUSP, 0);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200713 break;
714
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100715 case RESTART_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200716 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
717 break;
718
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100719 mod_rq_state(req, m,
720 RQ_COMPLETION_SUSP|RQ_LOCAL_COMPLETED,
721 RQ_LOCAL_PENDING);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200722
723 rv = MR_READ;
724 if (bio_data_dir(req->master_bio) == WRITE)
725 rv = MR_WRITE;
726
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200727 get_ldev(device); /* always succeeds in this call path */
Philipp Reisner265be2d2010-05-31 10:14:17 +0200728 req->w.cb = w_restart_disk_io;
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100729 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200730 &req->w);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200731 break;
732
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100733 case RESEND:
Philipp Reisner509fc012012-07-31 11:22:58 +0200734 /* Simply complete (local only) READs. */
735 if (!(req->rq_state & RQ_WRITE) && !req->w.cb) {
Philipp Reisner8a0bab22012-08-07 13:28:00 +0200736 mod_rq_state(req, m, RQ_COMPLETION_SUSP, 0);
Philipp Reisner509fc012012-07-31 11:22:58 +0200737 break;
738 }
739
Philipp Reisner11b58e72010-05-12 17:08:26 +0200740 /* If RQ_NET_OK is already set, we got a P_WRITE_ACK or P_RECV_ACK
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100741 before the connection loss (B&C only); only P_BARRIER_ACK
742 (or the local completion?) was missing when we suspended.
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200743 Throwing them out of the TL here by pretending we got a BARRIER_ACK.
744 During connection handshake, we ensure that the peer was not rebooted. */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200745 if (!(req->rq_state & RQ_NET_OK)) {
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200746 /* FIXME could this possibly be a req->dw.cb == w_send_out_of_sync?
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100747 * in that case we must not set RQ_NET_PENDING. */
748
749 mod_rq_state(req, m, RQ_COMPLETION_SUSP, RQ_NET_QUEUED|RQ_NET_PENDING);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200750 if (req->w.cb) {
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100751 /* w.cb expected to be w_send_dblock, or w_send_read_req */
752 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200753 &req->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200754 rv = req->rq_state & RQ_WRITE ? MR_WRITE : MR_READ;
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100755 } /* else: FIXME can this happen? */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200756 break;
757 }
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100758 /* else, fall through to BARRIER_ACKED */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200759
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100760 case BARRIER_ACKED:
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100761 /* barrier ack for READ requests does not make sense */
Philipp Reisner288f4222010-05-27 15:07:43 +0200762 if (!(req->rq_state & RQ_WRITE))
763 break;
764
Philipp Reisnerb411b362009-09-25 16:07:19 -0700765 if (req->rq_state & RQ_NET_PENDING) {
Andreas Gruenbachera209b4a2011-08-17 12:43:25 +0200766 /* barrier came in before all requests were acked.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700767 * this is bad, because if the connection is lost now,
768 * we won't be able to clean them up... */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200769 drbd_err(device, "FIXME (BARRIER_ACKED but pending)\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700770 }
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100771 /* Allowed to complete requests, even while suspended.
772 * As this is called for all requests within a matching epoch,
773 * we need to filter, and only set RQ_NET_DONE for those that
774 * have actually been on the wire. */
775 mod_rq_state(req, m, RQ_COMPLETION_SUSP,
776 (req->rq_state & RQ_NET_MASK) ? RQ_NET_DONE : 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700777 break;
778
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100779 case DATA_RECEIVED:
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200780 D_ASSERT(device, req->rq_state & RQ_NET_PENDING);
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100781 mod_rq_state(req, m, RQ_NET_PENDING, RQ_NET_OK|RQ_NET_DONE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700782 break;
Lars Ellenberg7074e4a2013-03-27 14:08:41 +0100783
784 case QUEUE_AS_DRBD_BARRIER:
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100785 start_new_tl_epoch(connection);
Lars Ellenberg7074e4a2013-03-27 14:08:41 +0100786 mod_rq_state(req, m, 0, RQ_NET_OK|RQ_NET_DONE);
787 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700788 };
Philipp Reisner2a806992010-06-09 14:07:43 +0200789
790 return rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700791}
792
793/* we may do a local read if:
794 * - we are consistent (of course),
795 * - or we are generally inconsistent,
796 * BUT we are still/already IN SYNC for this area.
797 * since size may be bigger than BM_BLOCK_SIZE,
798 * we may need to check several bits.
799 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200800static bool drbd_may_do_local_read(struct drbd_device *device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700801{
802 unsigned long sbnr, ebnr;
803 sector_t esector, nr_sectors;
804
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200805 if (device->state.disk == D_UP_TO_DATE)
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100806 return true;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200807 if (device->state.disk != D_INCONSISTENT)
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100808 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700809 esector = sector + (size >> 9) - 1;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200810 nr_sectors = drbd_get_capacity(device->this_bdev);
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200811 D_ASSERT(device, sector < nr_sectors);
812 D_ASSERT(device, esector < nr_sectors);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700813
814 sbnr = BM_SECT_TO_BIT(sector);
815 ebnr = BM_SECT_TO_BIT(esector);
816
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200817 return drbd_bm_count_bits(device, sbnr, ebnr) == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700818}
819
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200820static bool remote_due_to_read_balancing(struct drbd_device *device, sector_t sector,
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200821 enum drbd_read_balancing rbm)
Philipp Reisner380207d2011-11-11 12:31:20 +0100822{
Philipp Reisner380207d2011-11-11 12:31:20 +0100823 struct backing_dev_info *bdi;
Philipp Reisnerd60de032011-11-17 10:12:31 +0100824 int stripe_shift;
Philipp Reisner380207d2011-11-11 12:31:20 +0100825
Philipp Reisner380207d2011-11-11 12:31:20 +0100826 switch (rbm) {
827 case RB_CONGESTED_REMOTE:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200828 bdi = &device->ldev->backing_bdev->bd_disk->queue->backing_dev_info;
Philipp Reisner380207d2011-11-11 12:31:20 +0100829 return bdi_read_congested(bdi);
830 case RB_LEAST_PENDING:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200831 return atomic_read(&device->local_cnt) >
832 atomic_read(&device->ap_pending_cnt) + atomic_read(&device->rs_pending_cnt);
Philipp Reisnerd60de032011-11-17 10:12:31 +0100833 case RB_32K_STRIPING: /* stripe_shift = 15 */
834 case RB_64K_STRIPING:
835 case RB_128K_STRIPING:
836 case RB_256K_STRIPING:
837 case RB_512K_STRIPING:
838 case RB_1M_STRIPING: /* stripe_shift = 20 */
839 stripe_shift = (rbm - RB_32K_STRIPING + 15);
840 return (sector >> (stripe_shift - 9)) & 1;
Philipp Reisner380207d2011-11-11 12:31:20 +0100841 case RB_ROUND_ROBIN:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200842 return test_and_change_bit(READ_BALANCE_RR, &device->flags);
Philipp Reisner380207d2011-11-11 12:31:20 +0100843 case RB_PREFER_REMOTE:
844 return true;
845 case RB_PREFER_LOCAL:
846 default:
847 return false;
848 }
849}
850
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100851/*
852 * complete_conflicting_writes - wait for any conflicting write requests
853 *
854 * The write_requests tree contains all active write requests which we
855 * currently know about. Wait for any requests to complete which conflict with
856 * the new one.
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200857 *
858 * Only way out: remove the conflicting intervals from the tree.
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100859 */
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200860static void complete_conflicting_writes(struct drbd_request *req)
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100861{
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200862 DEFINE_WAIT(wait);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200863 struct drbd_device *device = req->device;
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200864 struct drbd_interval *i;
865 sector_t sector = req->i.sector;
866 int size = req->i.size;
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100867
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200868 i = drbd_find_overlap(&device->write_requests, sector, size);
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200869 if (!i)
870 return;
871
872 for (;;) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200873 prepare_to_wait(&device->misc_wait, &wait, TASK_UNINTERRUPTIBLE);
874 i = drbd_find_overlap(&device->write_requests, sector, size);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100875 if (!i)
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200876 break;
877 /* Indicate to wake up device->misc_wait on progress. */
878 i->waiting = true;
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200879 spin_unlock_irq(&device->resource->req_lock);
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200880 schedule();
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200881 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100882 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200883 finish_wait(&device->misc_wait, &wait);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100884}
885
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200886/* called within req_lock and rcu_read_lock() */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200887static void maybe_pull_ahead(struct drbd_device *device)
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200888{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200889 struct drbd_connection *connection = first_peer_device(device)->connection;
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200890 struct net_conf *nc;
891 bool congested = false;
892 enum drbd_on_congestion on_congestion;
893
Lars Ellenberg607f25e2013-03-27 14:08:45 +0100894 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200895 nc = rcu_dereference(connection->net_conf);
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200896 on_congestion = nc ? nc->on_congestion : OC_BLOCK;
Lars Ellenberg607f25e2013-03-27 14:08:45 +0100897 rcu_read_unlock();
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200898 if (on_congestion == OC_BLOCK ||
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200899 connection->agreed_pro_version < 96)
Lars Ellenberg3b9ef852012-07-30 09:06:26 +0200900 return;
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200901
902 /* If I don't even have good local storage, we can not reasonably try
903 * to pull ahead of the peer. We also need the local reference to make
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200904 * sure device->act_log is there.
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200905 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200906 if (!get_ldev_if_state(device, D_UP_TO_DATE))
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200907 return;
908
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200909 if (nc->cong_fill &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200910 atomic_read(&device->ap_in_flight) >= nc->cong_fill) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200911 drbd_info(device, "Congestion-fill threshold reached\n");
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200912 congested = true;
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200913 }
914
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200915 if (device->act_log->used >= nc->cong_extents) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200916 drbd_info(device, "Congestion-extents threshold reached\n");
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200917 congested = true;
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200918 }
919
920 if (congested) {
Lars Ellenberg99b4d8f2012-08-07 06:42:09 +0200921 /* start a new epoch for non-mirrored writes */
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200922 start_new_tl_epoch(first_peer_device(device)->connection);
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200923
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200924 if (on_congestion == OC_PULL_AHEAD)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200925 _drbd_set_state(_NS(device, conn, C_AHEAD), 0, NULL);
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200926 else /*nc->on_congestion == OC_DISCONNECT */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200927 _drbd_set_state(_NS(device, conn, C_DISCONNECTING), 0, NULL);
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200928 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200929 put_ldev(device);
Lars Ellenberg0d5934e2012-06-08 14:17:36 +0200930}
931
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200932/* If this returns false, and req->private_bio is still set,
933 * this should be submitted locally.
934 *
935 * If it returns false, but req->private_bio is not set,
936 * we do not have access to good data :(
937 *
938 * Otherwise, this destroys req->private_bio, if any,
939 * and returns true.
940 */
941static bool do_remote_read(struct drbd_request *req)
942{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200943 struct drbd_device *device = req->device;
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200944 enum drbd_read_balancing rbm;
945
946 if (req->private_bio) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200947 if (!drbd_may_do_local_read(device,
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200948 req->i.sector, req->i.size)) {
949 bio_put(req->private_bio);
950 req->private_bio = NULL;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200951 put_ldev(device);
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200952 }
953 }
954
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200955 if (device->state.pdsk != D_UP_TO_DATE)
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200956 return false;
957
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100958 if (req->private_bio == NULL)
959 return true;
960
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200961 /* TODO: improve read balancing decisions, take into account drbd
962 * protocol, pending requests etc. */
963
964 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200965 rbm = rcu_dereference(device->ldev->disk_conf)->read_balancing;
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200966 rcu_read_unlock();
967
968 if (rbm == RB_PREFER_LOCAL && req->private_bio)
969 return false; /* submit locally */
970
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200971 if (remote_due_to_read_balancing(device, req->i.sector, rbm)) {
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200972 if (req->private_bio) {
973 bio_put(req->private_bio);
974 req->private_bio = NULL;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200975 put_ldev(device);
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200976 }
977 return true;
978 }
979
980 return false;
981}
982
983/* returns number of connections (== 1, for drbd 8.4)
984 * expected to actually write this data,
985 * which does NOT include those that we are L_AHEAD for. */
986static int drbd_process_write_request(struct drbd_request *req)
987{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200988 struct drbd_device *device = req->device;
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200989 int remote, send_oos;
990
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200991 remote = drbd_should_do_remote(device->state);
992 send_oos = drbd_should_send_out_of_sync(device->state);
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200993
Lars Ellenberg519b6d3e2012-08-03 02:19:09 +0200994 /* Need to replicate writes. Unless it is an empty flush,
995 * which is better mapped to a DRBD P_BARRIER packet,
996 * also for drbd wire protocol compatibility reasons.
997 * If this was a flush, just start a new epoch.
998 * Unless the current epoch was empty anyways, or we are not currently
999 * replicating, in which case there is no point. */
1000 if (unlikely(req->i.size == 0)) {
1001 /* The only size==0 bios we expect are empty flushes. */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001002 D_ASSERT(device, req->master_bio->bi_rw & REQ_FLUSH);
Lars Ellenberg99b4d8f2012-08-07 06:42:09 +02001003 if (remote)
Lars Ellenberg7074e4a2013-03-27 14:08:41 +01001004 _req_mod(req, QUEUE_AS_DRBD_BARRIER);
1005 return remote;
Lars Ellenberg519b6d3e2012-08-03 02:19:09 +02001006 }
1007
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001008 if (!remote && !send_oos)
1009 return 0;
1010
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001011 D_ASSERT(device, !(remote && send_oos));
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001012
1013 if (remote) {
1014 _req_mod(req, TO_BE_SENT);
1015 _req_mod(req, QUEUE_FOR_NET_WRITE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001016 } else if (drbd_set_out_of_sync(device, req->i.sector, req->i.size))
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001017 _req_mod(req, QUEUE_FOR_SEND_OOS);
1018
1019 return remote;
1020}
1021
1022static void
1023drbd_submit_req_private_bio(struct drbd_request *req)
1024{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001025 struct drbd_device *device = req->device;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001026 struct bio *bio = req->private_bio;
1027 const int rw = bio_rw(bio);
1028
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001029 bio->bi_bdev = device->ldev->backing_bdev;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001030
1031 /* State may have changed since we grabbed our reference on the
1032 * ->ldev member. Double check, and short-circuit to endio.
1033 * In case the last activity log transaction failed to get on
1034 * stable storage, and this is a WRITE, we may not even submit
1035 * this bio. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001036 if (get_ldev(device)) {
1037 if (drbd_insert_fault(device,
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001038 rw == WRITE ? DRBD_FAULT_DT_WR
1039 : rw == READ ? DRBD_FAULT_DT_RD
1040 : DRBD_FAULT_DT_RA))
1041 bio_endio(bio, -EIO);
1042 else
1043 generic_make_request(bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001044 put_ldev(device);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001045 } else
1046 bio_endio(bio, -EIO);
1047}
1048
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001049static void drbd_queue_write(struct drbd_device *device, struct drbd_request *req)
Lars Ellenberg779b3fe2013-03-19 18:16:54 +01001050{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001051 spin_lock(&device->submit.lock);
1052 list_add_tail(&req->tl_requests, &device->submit.writes);
1053 spin_unlock(&device->submit.lock);
1054 queue_work(device->submit.wq, &device->submit.worker);
Lars Ellenberg779b3fe2013-03-19 18:16:54 +01001055}
1056
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001057/* returns the new drbd_request pointer, if the caller is expected to
1058 * drbd_send_and_submit() it (to save latency), or NULL if we queued the
1059 * request on the submitter thread.
1060 * Returns ERR_PTR(-ENOMEM) if we cannot allocate a drbd_request.
1061 */
Rashika Kheria01cd2632013-12-19 15:12:27 +05301062static struct drbd_request *
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001063drbd_request_prepare(struct drbd_device *device, struct bio *bio, unsigned long start_time)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001064{
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001065 const int rw = bio_data_dir(bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001066 struct drbd_request *req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001067
1068 /* allocate outside of all locks; */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001069 req = drbd_req_new(device, bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001070 if (!req) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001071 dec_ap_bio(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001072 /* only pass the error to the upper layers.
1073 * if user cannot handle io errors, that's not our business. */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001074 drbd_err(device, "could not kmalloc() req\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001075 bio_endio(bio, -ENOMEM);
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001076 return ERR_PTR(-ENOMEM);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001077 }
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001078 req->start_time = start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001079
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001080 if (!get_ldev(device)) {
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001081 bio_put(req->private_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001082 req->private_bio = NULL;
1083 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001084
Lars Ellenberg7e8c2882013-03-19 18:16:57 +01001085 /* Update disk stats */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001086 _drbd_start_io_acct(device, req);
Lars Ellenberg7e8c2882013-03-19 18:16:57 +01001087
Lars Ellenberg519b6d3e2012-08-03 02:19:09 +02001088 if (rw == WRITE && req->private_bio && req->i.size
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001089 && !test_bit(AL_SUSPENDED, &device->flags)) {
1090 if (!drbd_al_begin_io_fastpath(device, &req->i)) {
1091 drbd_queue_write(device, req);
Lars Ellenberg779b3fe2013-03-19 18:16:54 +01001092 return NULL;
1093 }
Philipp Reisner07782862010-08-31 12:00:50 +02001094 req->rq_state |= RQ_IN_ACT_LOG;
Philipp Reisner07782862010-08-31 12:00:50 +02001095 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001096
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001097 return req;
1098}
1099
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001100static void drbd_send_and_submit(struct drbd_device *device, struct drbd_request *req)
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001101{
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001102 struct drbd_resource *resource = device->resource;
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001103 const int rw = bio_rw(req->master_bio);
1104 struct bio_and_error m = { NULL, };
1105 bool no_remote = false;
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001106 bool submit_private_bio = false;
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001107
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001108 spin_lock_irq(&resource->req_lock);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +01001109 if (rw == WRITE) {
Lars Ellenberg648e46b2012-03-26 20:12:24 +02001110 /* This may temporarily give up the req_lock,
1111 * but will re-aquire it before it returns here.
1112 * Needs to be before the check on drbd_suspended() */
1113 complete_conflicting_writes(req);
Lars Ellenberg607f25e2013-03-27 14:08:45 +01001114 /* no more giving up req_lock from now on! */
1115
1116 /* check for congestion, and potentially stop sending
1117 * full data updates, but start sending "dirty bits" only. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001118 maybe_pull_ahead(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001119 }
1120
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001121
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001122 if (drbd_suspended(device)) {
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001123 /* push back and retry: */
1124 req->rq_state |= RQ_POSTPONED;
1125 if (req->private_bio) {
1126 bio_put(req->private_bio);
1127 req->private_bio = NULL;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001128 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001129 }
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001130 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001131 }
1132
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001133 /* We fail READ/READA early, if we can not serve it.
1134 * We must do this before req is registered on any lists.
Lars Ellenberga0d856d2012-01-24 17:19:42 +01001135 * Otherwise, drbd_req_complete() will queue failed READ for retry. */
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001136 if (rw != WRITE) {
1137 if (!do_remote_read(req) && !req->private_bio)
1138 goto nodata;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001139 }
1140
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001141 /* which transfer log epoch does this belong to? */
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001142 req->epoch = atomic_read(&first_peer_device(device)->connection->current_tle_nr);
Philipp Reisner288f4222010-05-27 15:07:43 +02001143
Lars Ellenberg227f0522012-07-31 09:31:11 +02001144 /* no point in adding empty flushes to the transfer log,
1145 * they are mapped to drbd barriers already. */
Lars Ellenberg99b4d8f2012-08-07 06:42:09 +02001146 if (likely(req->i.size!=0)) {
1147 if (rw == WRITE)
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001148 first_peer_device(device)->connection->current_tle_writes++;
Philipp Reisner288f4222010-05-27 15:07:43 +02001149
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001150 list_add_tail(&req->tl_requests, &first_peer_device(device)->connection->transfer_log);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001151 }
Philipp Reisner67531712010-10-27 12:21:30 +02001152
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001153 if (rw == WRITE) {
1154 if (!drbd_process_write_request(req))
1155 no_remote = true;
1156 } else {
1157 /* We either have a private_bio, or we can read from remote.
1158 * Otherwise we had done the goto nodata above. */
1159 if (req->private_bio == NULL) {
1160 _req_mod(req, TO_BE_SENT);
1161 _req_mod(req, QUEUE_FOR_NET_READ);
Lars Ellenberg6719fb02010-10-18 23:04:07 +02001162 } else
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001163 no_remote = true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001164 }
1165
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001166 if (req->private_bio) {
1167 /* needs to be marked within the same spinlock */
1168 _req_mod(req, TO_BE_SUBMITTED);
1169 /* but we need to give up the spinlock to submit */
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001170 submit_private_bio = true;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001171 } else if (no_remote) {
1172nodata:
1173 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001174 drbd_err(device, "IO ERROR: neither local nor remote data, sector %llu+%u\n",
Lars Ellenberg42839f62012-09-27 15:19:38 +02001175 (unsigned long long)req->i.sector, req->i.size >> 9);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001176 /* A write may have been queued for send_oos, however.
Lars Ellenberga0d856d2012-01-24 17:19:42 +01001177 * So we can not simply free it, we must go through drbd_req_put_completion_ref() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001178 }
1179
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001180out:
Lars Ellenberga0d856d2012-01-24 17:19:42 +01001181 if (drbd_req_put_completion_ref(req, &m, 1))
1182 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001183 spin_unlock_irq(&resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001184
Lars Ellenberg35b5ed52013-12-04 12:07:09 +01001185 /* Even though above is a kref_put(), this is safe.
1186 * As long as we still need to submit our private bio,
1187 * we hold a completion ref, and the request cannot disappear.
1188 * If however this request did not even have a private bio to submit
1189 * (e.g. remote read), req may already be invalid now.
1190 * That's why we cannot check on req->private_bio. */
1191 if (submit_private_bio)
1192 drbd_submit_req_private_bio(req);
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001193 if (m.bio)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001194 complete_master_bio(device, &m);
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001195}
1196
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001197void __drbd_make_request(struct drbd_device *device, struct bio *bio, unsigned long start_time)
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001198{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001199 struct drbd_request *req = drbd_request_prepare(device, bio, start_time);
Lars Ellenberg6d9febe2013-03-19 18:16:50 +01001200 if (IS_ERR_OR_NULL(req))
1201 return;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001202 drbd_send_and_submit(device, req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001203}
1204
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001205static void submit_fast_path(struct drbd_device *device, struct list_head *incoming)
Lars Ellenberg113fef92013-03-22 18:14:40 -06001206{
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001207 struct drbd_request *req, *tmp;
1208 list_for_each_entry_safe(req, tmp, incoming, tl_requests) {
1209 const int rw = bio_data_dir(req->master_bio);
Lars Ellenberg113fef92013-03-22 18:14:40 -06001210
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001211 if (rw == WRITE /* rw != WRITE should not even end up here! */
1212 && req->private_bio && req->i.size
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001213 && !test_bit(AL_SUSPENDED, &device->flags)) {
1214 if (!drbd_al_begin_io_fastpath(device, &req->i))
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001215 continue;
1216
1217 req->rq_state |= RQ_IN_ACT_LOG;
1218 }
1219
1220 list_del_init(&req->tl_requests);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001221 drbd_send_and_submit(device, req);
Lars Ellenberg113fef92013-03-22 18:14:40 -06001222 }
Lars Ellenberg113fef92013-03-22 18:14:40 -06001223}
1224
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001225static bool prepare_al_transaction_nonblock(struct drbd_device *device,
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001226 struct list_head *incoming,
1227 struct list_head *pending)
1228{
1229 struct drbd_request *req, *tmp;
1230 int wake = 0;
1231 int err;
1232
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001233 spin_lock_irq(&device->al_lock);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001234 list_for_each_entry_safe(req, tmp, incoming, tl_requests) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001235 err = drbd_al_begin_io_nonblock(device, &req->i);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001236 if (err == -EBUSY)
1237 wake = 1;
1238 if (err)
1239 continue;
1240 req->rq_state |= RQ_IN_ACT_LOG;
1241 list_move_tail(&req->tl_requests, pending);
1242 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001243 spin_unlock_irq(&device->al_lock);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001244 if (wake)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001245 wake_up(&device->al_wait);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001246
1247 return !list_empty(pending);
1248}
Lars Ellenberg113fef92013-03-22 18:14:40 -06001249
1250void do_submit(struct work_struct *ws)
1251{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001252 struct drbd_device *device = container_of(ws, struct drbd_device, submit.worker);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001253 LIST_HEAD(incoming);
1254 LIST_HEAD(pending);
Lars Ellenberg113fef92013-03-22 18:14:40 -06001255 struct drbd_request *req, *tmp;
1256
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001257 for (;;) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001258 spin_lock(&device->submit.lock);
1259 list_splice_tail_init(&device->submit.writes, &incoming);
1260 spin_unlock(&device->submit.lock);
Lars Ellenberg113fef92013-03-22 18:14:40 -06001261
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001262 submit_fast_path(device, &incoming);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001263 if (list_empty(&incoming))
1264 break;
1265
Lars Ellenberge4d7d6f2014-04-28 18:43:28 +02001266skip_fast_path:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001267 wait_event(device->al_wait, prepare_al_transaction_nonblock(device, &incoming, &pending));
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001268 /* Maybe more was queued, while we prepared the transaction?
1269 * Try to stuff them into this transaction as well.
1270 * Be strictly non-blocking here, no wait_event, we already
1271 * have something to commit.
1272 * Stop if we don't make any more progres.
1273 */
1274 for (;;) {
1275 LIST_HEAD(more_pending);
1276 LIST_HEAD(more_incoming);
1277 bool made_progress;
1278
1279 /* It is ok to look outside the lock,
1280 * it's only an optimization anyways */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001281 if (list_empty(&device->submit.writes))
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001282 break;
1283
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001284 spin_lock(&device->submit.lock);
1285 list_splice_tail_init(&device->submit.writes, &more_incoming);
1286 spin_unlock(&device->submit.lock);
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001287
1288 if (list_empty(&more_incoming))
1289 break;
1290
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001291 made_progress = prepare_al_transaction_nonblock(device, &more_incoming, &more_pending);
Lars Ellenberg45ad07b2013-03-19 18:16:58 +01001292
1293 list_splice_tail_init(&more_pending, &pending);
1294 list_splice_tail_init(&more_incoming, &incoming);
1295
1296 if (!made_progress)
1297 break;
1298 }
Lars Ellenberg4dd726f2014-02-11 11:15:36 +01001299 drbd_al_begin_io_commit(device);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001300
1301 list_for_each_entry_safe(req, tmp, &pending, tl_requests) {
1302 list_del_init(&req->tl_requests);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001303 drbd_send_and_submit(device, req);
Lars Ellenberg08a1dda2013-03-19 18:16:56 +01001304 }
Lars Ellenberge4d7d6f2014-04-28 18:43:28 +02001305
1306 /* If all currently hot activity log extents are kept busy by
1307 * incoming requests, we still must not totally starve new
1308 * requests to cold extents. In that case, prepare one request
1309 * in blocking mode. */
1310 list_for_each_entry_safe(req, tmp, &incoming, tl_requests) {
1311 list_del_init(&req->tl_requests);
1312 req->rq_state |= RQ_IN_ACT_LOG;
1313 if (!drbd_al_begin_io_prepare(device, &req->i)) {
1314 /* Corresponding extent was hot after all? */
1315 drbd_send_and_submit(device, req);
1316 } else {
1317 /* Found a request to a cold extent.
1318 * Put on "pending" list,
1319 * and try to cumulate with more. */
1320 list_add(&req->tl_requests, &pending);
1321 goto skip_fast_path;
1322 }
1323 }
Lars Ellenberg113fef92013-03-22 18:14:40 -06001324 }
1325}
1326
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001327void drbd_make_request(struct request_queue *q, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001328{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001329 struct drbd_device *device = (struct drbd_device *) q->queuedata;
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001330 unsigned long start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001331
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001332 start_time = jiffies;
1333
Philipp Reisnerb411b362009-09-25 16:07:19 -07001334 /*
1335 * what we "blindly" assume:
1336 */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001337 D_ASSERT(device, IS_ALIGNED(bio->bi_iter.bi_size, 512));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001338
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001339 inc_ap_bio(device);
1340 __drbd_make_request(device, bio, start_time);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001341}
1342
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001343/* This is called by bio_add_page().
Philipp Reisnerb411b362009-09-25 16:07:19 -07001344 *
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001345 * q->max_hw_sectors and other global limits are already enforced there.
1346 *
1347 * We need to call down to our lower level device,
1348 * in case it has special restrictions.
1349 *
1350 * We also may need to enforce configured max-bio-bvecs limits.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001351 *
1352 * As long as the BIO is empty we have to allow at least one bvec,
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001353 * regardless of size and offset, so no need to ask lower levels.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001354 */
1355int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec)
1356{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001357 struct drbd_device *device = (struct drbd_device *) q->queuedata;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001358 unsigned int bio_size = bvm->bi_size;
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001359 int limit = DRBD_MAX_BIO_SIZE;
1360 int backing_limit;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001361
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001362 if (bio_size && get_ldev(device)) {
Lars Ellenberg35f47ef2013-10-23 10:59:19 +02001363 unsigned int max_hw_sectors = queue_max_hw_sectors(q);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001364 struct request_queue * const b =
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001365 device->ldev->backing_bdev->bd_disk->queue;
Lars Ellenberga1c88d02010-05-14 19:16:41 +02001366 if (b->merge_bvec_fn) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001367 backing_limit = b->merge_bvec_fn(b, bvm, bvec);
1368 limit = min(limit, backing_limit);
1369 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001370 put_ldev(device);
Lars Ellenberg35f47ef2013-10-23 10:59:19 +02001371 if ((limit >> 9) > max_hw_sectors)
1372 limit = max_hw_sectors << 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001373 }
1374 return limit;
1375}
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001376
Lars Ellenberg08535462014-04-28 18:43:31 +02001377static void find_oldest_requests(
1378 struct drbd_connection *connection,
1379 struct drbd_device *device,
1380 struct drbd_request **oldest_req_waiting_for_peer,
1381 struct drbd_request **oldest_req_waiting_for_disk)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001382{
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001383 struct drbd_request *r;
Lars Ellenberg08535462014-04-28 18:43:31 +02001384 *oldest_req_waiting_for_peer = NULL;
1385 *oldest_req_waiting_for_disk = NULL;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001386 list_for_each_entry(r, &connection->transfer_log, tl_requests) {
Lars Ellenberg08535462014-04-28 18:43:31 +02001387 const unsigned s = r->rq_state;
1388 if (!*oldest_req_waiting_for_peer
1389 && ((s & RQ_NET_MASK) && !(s & RQ_NET_DONE)))
1390 *oldest_req_waiting_for_peer = r;
1391
1392 if (!*oldest_req_waiting_for_disk
1393 && (s & RQ_LOCAL_PENDING) && r->device == device)
1394 *oldest_req_waiting_for_disk = r;
1395
1396 if (*oldest_req_waiting_for_peer && *oldest_req_waiting_for_disk)
1397 break;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001398 }
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001399}
1400
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001401void request_timer_fn(unsigned long data)
1402{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001403 struct drbd_device *device = (struct drbd_device *) data;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001404 struct drbd_connection *connection = first_peer_device(device)->connection;
Lars Ellenberg08535462014-04-28 18:43:31 +02001405 struct drbd_request *req_disk, *req_peer; /* oldest request */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001406 struct net_conf *nc;
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02001407 unsigned long ent = 0, dt = 0, et, nt; /* effective timeout = ko_count * timeout */
Lars Ellenbergba280c02012-04-25 11:46:14 +02001408 unsigned long now;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001409
Philipp Reisner44ed1672011-04-19 17:10:19 +02001410 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001411 nc = rcu_dereference(connection->net_conf);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001412 if (nc && device->state.conn >= C_WF_REPORT_PARAMS)
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001413 ent = nc->timeout * HZ/10 * nc->ko_count;
Philipp Reisnercdfda632011-07-05 15:38:59 +02001414
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001415 if (get_ldev(device)) { /* implicit state.disk >= D_INCONSISTENT */
1416 dt = rcu_dereference(device->ldev->disk_conf)->disk_timeout * HZ / 10;
1417 put_ldev(device);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02001418 }
Philipp Reisner44ed1672011-04-19 17:10:19 +02001419 rcu_read_unlock();
1420
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02001421 et = min_not_zero(dt, ent);
1422
Lars Ellenbergba280c02012-04-25 11:46:14 +02001423 if (!et)
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001424 return; /* Recurring timer stopped */
1425
Lars Ellenbergba280c02012-04-25 11:46:14 +02001426 now = jiffies;
1427
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001428 spin_lock_irq(&device->resource->req_lock);
Lars Ellenberg08535462014-04-28 18:43:31 +02001429 find_oldest_requests(connection, device, &req_peer, &req_disk);
1430 if (req_peer == NULL && req_disk == NULL) {
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001431 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001432 mod_timer(&device->request_timer, now + et);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001433 return;
1434 }
1435
Lars Ellenbergba280c02012-04-25 11:46:14 +02001436 /* The request is considered timed out, if
1437 * - we have some effective timeout from the configuration,
1438 * with above state restrictions applied,
1439 * - the oldest request is waiting for a response from the network
1440 * resp. the local disk,
1441 * - the oldest request is in fact older than the effective timeout,
1442 * - the connection was established (resp. disk was attached)
1443 * for longer than the timeout already.
1444 * Note that for 32bit jiffies and very stable connections/disks,
1445 * we may have a wrap around, which is catched by
1446 * !time_in_range(now, last_..._jif, last_..._jif + timeout).
1447 *
1448 * Side effect: once per 32bit wrap-around interval, which means every
1449 * ~198 days with 250 HZ, we have a window where the timeout would need
1450 * to expire twice (worst case) to become effective. Good enough.
1451 */
Lars Ellenberg08535462014-04-28 18:43:31 +02001452 if (ent && req_peer &&
1453 time_after(now, req_peer->start_time + ent) &&
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001454 !time_in_range(now, connection->last_reconnect_jif, connection->last_reconnect_jif + ent)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001455 drbd_warn(device, "Remote failed to finish a request within ko-count * timeout\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001456 _drbd_set_state(_NS(device, conn, C_TIMEOUT), CS_VERBOSE | CS_HARD, NULL);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001457 }
Lars Ellenberg08535462014-04-28 18:43:31 +02001458 if (dt && req_disk &&
1459 time_after(now, req_disk->start_time + dt) &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001460 !time_in_range(now, device->last_reattach_jif, device->last_reattach_jif + dt)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001461 drbd_warn(device, "Local backing device failed to meet the disk-timeout\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001462 __drbd_chk_io_error(device, DRBD_FORCE_DETACH);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02001463 }
Lars Ellenberg08535462014-04-28 18:43:31 +02001464
1465 /* Reschedule timer for the nearest not already expired timeout.
1466 * Fallback to now + min(effective network timeout, disk timeout). */
1467 ent = (ent && req_peer && time_before(now, req_peer->start_time + ent))
1468 ? req_peer->start_time + ent : now + et;
1469 dt = (dt && req_disk && time_before(now, req_disk->start_time + dt))
1470 ? req_disk->start_time + dt : now + et;
1471 nt = time_before(ent, dt) ? ent : dt;
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001472 spin_unlock_irq(&connection->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001473 mod_timer(&device->request_timer, nt);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001474}