blob: 078f77ba68fb29dc09a3d9b25d946ea5a34070a2 [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
34/* Update disk stats at start of I/O request */
35static void _drbd_start_io_acct(struct drbd_conf *mdev, struct drbd_request *req, struct bio *bio)
36{
37 const int rw = bio_data_dir(bio);
38 int cpu;
39 cpu = part_stat_lock();
40 part_stat_inc(cpu, &mdev->vdisk->part0, ios[rw]);
41 part_stat_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio));
Philipp Reisner753c8912009-11-18 15:52:51 +010042 part_inc_in_flight(&mdev->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070043 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070044}
45
46/* Update disk stats when completing request upwards */
47static void _drbd_end_io_acct(struct drbd_conf *mdev, struct drbd_request *req)
48{
49 int rw = bio_data_dir(req->master_bio);
50 unsigned long duration = jiffies - req->start_time;
51 int cpu;
52 cpu = part_stat_lock();
53 part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration);
54 part_round_stats(cpu, &mdev->vdisk->part0);
Philipp Reisner753c8912009-11-18 15:52:51 +010055 part_dec_in_flight(&mdev->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070056 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070057}
58
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010059static struct drbd_request *drbd_req_new(struct drbd_conf *mdev,
60 struct bio *bio_src)
61{
62 struct drbd_request *req;
63
64 req = mempool_alloc(drbd_request_mempool, GFP_NOIO);
65 if (!req)
66 return NULL;
67
68 drbd_req_make_private_bio(req, bio_src);
69 req->rq_state = bio_data_dir(bio_src) == WRITE ? RQ_WRITE : 0;
70 req->mdev = mdev;
71 req->master_bio = bio_src;
72 req->epoch = 0;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010073
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010074 drbd_clear_interval(&req->i);
75 req->i.sector = bio_src->bi_sector;
76 req->i.size = bio_src->bi_size;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010077 req->i.waiting = false;
78
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010079 INIT_LIST_HEAD(&req->tl_requests);
80 INIT_LIST_HEAD(&req->w.list);
81
82 return req;
83}
84
85static void drbd_req_free(struct drbd_request *req)
86{
87 mempool_free(req, drbd_request_mempool);
88}
89
90/* rw is bio_data_dir(), only READ or WRITE */
Philipp Reisnerb411b362009-09-25 16:07:19 -070091static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
92{
93 const unsigned long s = req->rq_state;
Philipp Reisner288f4222010-05-27 15:07:43 +020094
95 /* remove it from the transfer log.
96 * well, only if it had been there in the first
97 * place... if it had not (local only or conflicting
98 * and never sent), it should still be "empty" as
99 * initialized in drbd_req_new(), so we can list_del() it
100 * here unconditionally */
101 list_del(&req->tl_requests);
102
Philipp Reisnerb411b362009-09-25 16:07:19 -0700103 /* if it was a write, we may have to set the corresponding
104 * bit(s) out-of-sync first. If it had a local part, we need to
105 * release the reference to the activity log. */
106 if (rw == WRITE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700107 /* Set out-of-sync unless both OK flags are set
108 * (local only or remote failed).
109 * Other places where we set out-of-sync:
110 * READ with local io-error */
111 if (!(s & RQ_NET_OK) || !(s & RQ_LOCAL_OK))
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100112 drbd_set_out_of_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700113
114 if ((s & RQ_NET_OK) && (s & RQ_LOCAL_OK) && (s & RQ_NET_SIS))
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100115 drbd_set_in_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700116
117 /* one might be tempted to move the drbd_al_complete_io
118 * to the local io completion callback drbd_endio_pri.
119 * but, if this was a mirror write, we may only
120 * drbd_al_complete_io after this is RQ_NET_DONE,
121 * otherwise the extent could be dropped from the al
122 * before it has actually been written on the peer.
123 * if we crash before our peer knows about the request,
124 * but after the extent has been dropped from the al,
125 * we would forget to resync the corresponding extent.
126 */
127 if (s & RQ_LOCAL_MASK) {
128 if (get_ldev_if_state(mdev, D_FAILED)) {
Philipp Reisner07782862010-08-31 12:00:50 +0200129 if (s & RQ_IN_ACT_LOG)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100130 drbd_al_complete_io(mdev, req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700131 put_ldev(mdev);
132 } else if (__ratelimit(&drbd_ratelimit_state)) {
133 dev_warn(DEV, "Should have called drbd_al_complete_io(, %llu), "
134 "but my Disk seems to have failed :(\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100135 (unsigned long long) req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700136 }
137 }
138 }
139
Philipp Reisner32fa7e92010-05-26 17:13:18 +0200140 drbd_req_free(req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700141}
142
143static void queue_barrier(struct drbd_conf *mdev)
144{
145 struct drbd_tl_epoch *b;
146
147 /* We are within the req_lock. Once we queued the barrier for sending,
148 * we set the CREATE_BARRIER bit. It is cleared as soon as a new
149 * barrier/epoch object is added. This is the only place this bit is
150 * set. It indicates that the barrier for this epoch is already queued,
151 * and no new epoch has been created yet. */
152 if (test_bit(CREATE_BARRIER, &mdev->flags))
153 return;
154
Philipp Reisner87eeee42011-01-19 14:16:30 +0100155 b = mdev->tconn->newest_tle;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700156 b->w.cb = w_send_barrier;
157 /* inc_ap_pending done here, so we won't
158 * get imbalanced on connection loss.
159 * dec_ap_pending will be done in got_BarrierAck
160 * or (on connection loss) in tl_clear. */
161 inc_ap_pending(mdev);
Philipp Reisnere42325a2011-01-19 13:55:45 +0100162 drbd_queue_work(&mdev->tconn->data.work, &b->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700163 set_bit(CREATE_BARRIER, &mdev->flags);
164}
165
166static void _about_to_complete_local_write(struct drbd_conf *mdev,
167 struct drbd_request *req)
168{
169 const unsigned long s = req->rq_state;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700170
Lars Ellenberg8a3c1042010-12-05 14:11:14 +0100171 /* Before we can signal completion to the upper layers,
172 * we may need to close the current epoch.
173 * We can skip this, if this request has not even been sent, because we
174 * did not have a fully established connection yet/anymore, during
175 * bitmap exchange, or while we are C_AHEAD due to congestion policy.
176 */
177 if (mdev->state.conn >= C_CONNECTED &&
178 (s & RQ_NET_SENT) != 0 &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100179 req->epoch == mdev->tconn->newest_tle->br_number)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700180 queue_barrier(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700181}
182
183void complete_master_bio(struct drbd_conf *mdev,
184 struct bio_and_error *m)
185{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700186 bio_endio(m->bio, m->error);
187 dec_ap_bio(mdev);
188}
189
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100190
191static void drbd_remove_request_interval(struct rb_root *root,
192 struct drbd_request *req)
193{
194 struct drbd_conf *mdev = req->mdev;
195 struct drbd_interval *i = &req->i;
196
197 drbd_remove_interval(root, i);
198
199 /* Wake up any processes waiting for this request to complete. */
200 if (i->waiting)
201 wake_up(&mdev->misc_wait);
202}
203
Philipp Reisnerb411b362009-09-25 16:07:19 -0700204/* Helper for __req_mod().
205 * Set m->bio to the master bio, if it is fit to be completed,
206 * or leave it alone (it is initialized to NULL in __req_mod),
207 * if it has already been completed, or cannot be completed yet.
208 * If m->bio is set, the error status to be returned is placed in m->error.
209 */
210void _req_may_be_done(struct drbd_request *req, struct bio_and_error *m)
211{
212 const unsigned long s = req->rq_state;
213 struct drbd_conf *mdev = req->mdev;
214 /* only WRITES may end up here without a master bio (on barrier ack) */
215 int rw = req->master_bio ? bio_data_dir(req->master_bio) : WRITE;
216
Philipp Reisnerb411b362009-09-25 16:07:19 -0700217 /* we must not complete the master bio, while it is
218 * still being processed by _drbd_send_zc_bio (drbd_send_dblock)
219 * not yet acknowledged by the peer
220 * not yet completed by the local io subsystem
221 * these flags may get cleared in any order by
222 * the worker,
223 * the receiver,
224 * the bio_endio completion callbacks.
225 */
226 if (s & RQ_NET_QUEUED)
227 return;
228 if (s & RQ_NET_PENDING)
229 return;
230 if (s & RQ_LOCAL_PENDING)
231 return;
232
233 if (req->master_bio) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100234 /* this is DATA_RECEIVED (remote read)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700235 * or protocol C P_WRITE_ACK
236 * or protocol B P_RECV_ACK
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100237 * or protocol A "HANDED_OVER_TO_NETWORK" (SendAck)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700238 * or canceled or failed,
239 * or killed from the transfer log due to connection loss.
240 */
241
242 /*
243 * figure out whether to report success or failure.
244 *
245 * report success when at least one of the operations succeeded.
246 * or, to put the other way,
247 * only report failure, when both operations failed.
248 *
249 * what to do about the failures is handled elsewhere.
250 * what we need to do here is just: complete the master_bio.
251 *
252 * local completion error, if any, has been stored as ERR_PTR
253 * in private_bio within drbd_endio_pri.
254 */
255 int ok = (s & RQ_LOCAL_OK) || (s & RQ_NET_OK);
256 int error = PTR_ERR(req->private_bio);
257
258 /* remove the request from the conflict detection
259 * respective block_id verification hash */
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100260 if (!drbd_interval_empty(&req->i)) {
261 struct rb_root *root;
262
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100263 if (rw == WRITE)
264 root = &mdev->write_requests;
265 else
266 root = &mdev->read_requests;
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100267 drbd_remove_request_interval(root, req);
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100268 } else
Philipp Reisner8825f7c2010-10-21 17:21:19 +0200269 D_ASSERT((s & (RQ_NET_MASK & ~RQ_NET_DONE)) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700270
271 /* for writes we need to do some extra housekeeping */
272 if (rw == WRITE)
273 _about_to_complete_local_write(mdev, req);
274
275 /* Update disk stats */
276 _drbd_end_io_acct(mdev, req);
277
278 m->error = ok ? 0 : (error ?: -EIO);
279 m->bio = req->master_bio;
280 req->master_bio = NULL;
281 }
282
283 if ((s & RQ_NET_MASK) == 0 || (s & RQ_NET_DONE)) {
284 /* this is disconnected (local only) operation,
285 * or protocol C P_WRITE_ACK,
286 * or protocol A or B P_BARRIER_ACK,
287 * or killed from the transfer log due to connection loss. */
288 _req_is_done(mdev, req, rw);
289 }
290 /* else: network part and not DONE yet. that is
291 * protocol A or B, barrier ack still pending... */
292}
293
Philipp Reisnercfa03412010-06-23 17:18:51 +0200294static void _req_may_be_done_not_susp(struct drbd_request *req, struct bio_and_error *m)
295{
296 struct drbd_conf *mdev = req->mdev;
297
Philipp Reisnerfb22c402010-09-08 23:20:21 +0200298 if (!is_susp(mdev->state))
Philipp Reisnercfa03412010-06-23 17:18:51 +0200299 _req_may_be_done(req, m);
300}
301
Philipp Reisnerb411b362009-09-25 16:07:19 -0700302/*
303 * checks whether there was an overlapping request
304 * or ee already registered.
305 *
306 * if so, return 1, in which case this request is completed on the spot,
307 * without ever being submitted or send.
308 *
309 * return 0 if it is ok to submit this request.
310 *
311 * NOTE:
312 * paranoia: assume something above us is broken, and issues different write
313 * requests for the same block simultaneously...
314 *
315 * To ensure these won't be reordered differently on both nodes, resulting in
316 * diverging data sets, we discard the later one(s). Not that this is supposed
317 * to happen, but this is the rationale why we also have to check for
318 * conflicting requests with local origin, and why we have to do so regardless
319 * of whether we allowed multiple primaries.
320 *
Andreas Gruenbacherbb3bfe92011-01-21 15:59:23 +0100321 * In case we only have one primary, the epoch_entries tree is empty.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700322 */
323static int _req_conflicts(struct drbd_request *req)
324{
325 struct drbd_conf *mdev = req->mdev;
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100326 const sector_t sector = req->i.sector;
327 const int size = req->i.size;
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100328 struct drbd_interval *i;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700329
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100330 D_ASSERT(drbd_interval_empty(&req->i));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700331
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +0100332 if (!get_net_conf(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700333 return 0;
334
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100335 i = drbd_find_overlap(&mdev->write_requests, sector, size);
336 if (i) {
337 struct drbd_request *req2 =
338 container_of(i, struct drbd_request, i);
339
340 dev_alert(DEV, "%s[%u] Concurrent local write detected! "
341 "[DISCARD L] new: %llus +%u; "
342 "pending: %llus +%u\n",
343 current->comm, current->pid,
344 (unsigned long long)sector, size,
345 (unsigned long long)req2->i.sector, req2->i.size);
346 goto out_conflict;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700347 }
348
Andreas Gruenbacherbb3bfe92011-01-21 15:59:23 +0100349 if (!RB_EMPTY_ROOT(&mdev->epoch_entries)) {
350 /* check for overlapping requests with remote origin */
Andreas Gruenbacher8b946252011-01-20 15:23:07 +0100351 i = drbd_find_overlap(&mdev->epoch_entries, sector, size);
352 if (i) {
353 struct drbd_epoch_entry *e =
354 container_of(i, struct drbd_epoch_entry, i);
355
356 dev_alert(DEV, "%s[%u] Concurrent remote write detected!"
357 " [DISCARD L] new: %llus +%u; "
358 "pending: %llus +%u\n",
359 current->comm, current->pid,
360 (unsigned long long)sector, size,
361 (unsigned long long)e->i.sector, e->i.size);
362 goto out_conflict;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700363 }
364 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700365
Philipp Reisnerb411b362009-09-25 16:07:19 -0700366 /* this is like it should be, and what we expected.
367 * our users do behave after all... */
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +0100368 put_net_conf(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700369 return 0;
370
371out_conflict:
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +0100372 put_net_conf(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700373 return 1;
374}
375
376/* obviously this could be coded as many single functions
377 * instead of one huge switch,
378 * or by putting the code directly in the respective locations
379 * (as it has been before).
380 *
381 * but having it this way
382 * enforces that it is all in this one place, where it is easier to audit,
383 * it makes it obvious that whatever "event" "happens" to a request should
384 * happen "atomically" within the req_lock,
385 * and it enforces that we have to think in a very structured manner
386 * about the "events" that may happen to a request during its life time ...
387 */
Philipp Reisner2a806992010-06-09 14:07:43 +0200388int __req_mod(struct drbd_request *req, enum drbd_req_event what,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700389 struct bio_and_error *m)
390{
391 struct drbd_conf *mdev = req->mdev;
Philipp Reisner2a806992010-06-09 14:07:43 +0200392 int rv = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700393 m->bio = NULL;
394
Philipp Reisnerb411b362009-09-25 16:07:19 -0700395 switch (what) {
396 default:
397 dev_err(DEV, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__);
398 break;
399
400 /* does not happen...
401 * initialization done in drbd_req_new
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100402 case CREATED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700403 break;
404 */
405
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100406 case TO_BE_SENT: /* via network */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700407 /* reached via drbd_make_request_common
408 * and from w_read_retry_remote */
409 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
410 req->rq_state |= RQ_NET_PENDING;
411 inc_ap_pending(mdev);
412 break;
413
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100414 case TO_BE_SUBMITTED: /* locally */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700415 /* reached via drbd_make_request_common */
416 D_ASSERT(!(req->rq_state & RQ_LOCAL_MASK));
417 req->rq_state |= RQ_LOCAL_PENDING;
418 break;
419
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100420 case COMPLETED_OK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700421 if (bio_data_dir(req->master_bio) == WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100422 mdev->writ_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700423 else
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100424 mdev->read_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700425
426 req->rq_state |= (RQ_LOCAL_COMPLETED|RQ_LOCAL_OK);
427 req->rq_state &= ~RQ_LOCAL_PENDING;
428
Philipp Reisnercfa03412010-06-23 17:18:51 +0200429 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700430 put_ldev(mdev);
431 break;
432
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100433 case WRITE_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700434 req->rq_state |= RQ_LOCAL_COMPLETED;
435 req->rq_state &= ~RQ_LOCAL_PENDING;
436
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100437 __drbd_chk_io_error(mdev, false);
Philipp Reisnercfa03412010-06-23 17:18:51 +0200438 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700439 put_ldev(mdev);
440 break;
441
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100442 case READ_AHEAD_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700443 /* it is legal to fail READA */
444 req->rq_state |= RQ_LOCAL_COMPLETED;
445 req->rq_state &= ~RQ_LOCAL_PENDING;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200446 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700447 put_ldev(mdev);
448 break;
449
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100450 case READ_COMPLETED_WITH_ERROR:
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100451 drbd_set_out_of_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700452
453 req->rq_state |= RQ_LOCAL_COMPLETED;
454 req->rq_state &= ~RQ_LOCAL_PENDING;
455
Philipp Reisnerb411b362009-09-25 16:07:19 -0700456 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700457
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100458 __drbd_chk_io_error(mdev, false);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700459 put_ldev(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700460
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200461 /* no point in retrying if there is no good remote data,
462 * or we have no connection. */
463 if (mdev->state.pdsk != D_UP_TO_DATE) {
Philipp Reisnercfa03412010-06-23 17:18:51 +0200464 _req_may_be_done_not_susp(req, m);
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200465 break;
466 }
467
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100468 /* _req_mod(req,TO_BE_SENT); oops, recursion... */
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200469 req->rq_state |= RQ_NET_PENDING;
470 inc_ap_pending(mdev);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100471 /* fall through: _req_mod(req,QUEUE_FOR_NET_READ); */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700472
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100473 case QUEUE_FOR_NET_READ:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700474 /* READ or READA, and
475 * no local disk,
476 * or target area marked as invalid,
477 * or just got an io-error. */
478 /* from drbd_make_request_common
479 * or from bio_endio during read io-error recovery */
480
481 /* so we can verify the handle in the answer packet
482 * corresponding hlist_del is in _req_may_be_done() */
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100483 drbd_insert_interval(&mdev->read_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700484
Lars Ellenberg83c38832009-11-03 02:22:06 +0100485 set_bit(UNPLUG_REMOTE, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700486
487 D_ASSERT(req->rq_state & RQ_NET_PENDING);
488 req->rq_state |= RQ_NET_QUEUED;
489 req->w.cb = (req->rq_state & RQ_LOCAL_MASK)
490 ? w_read_retry_remote
491 : w_send_read_req;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100492 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700493 break;
494
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100495 case QUEUE_FOR_NET_WRITE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700496 /* assert something? */
497 /* from drbd_make_request_common only */
498
Philipp Reisnerb411b362009-09-25 16:07:19 -0700499 /* corresponding hlist_del is in _req_may_be_done() */
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100500 drbd_insert_interval(&mdev->write_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700501
502 /* NOTE
503 * In case the req ended up on the transfer log before being
504 * queued on the worker, it could lead to this request being
505 * missed during cleanup after connection loss.
506 * So we have to do both operations here,
507 * within the same lock that protects the transfer log.
508 *
509 * _req_add_to_epoch(req); this has to be after the
510 * _maybe_start_new_epoch(req); which happened in
511 * drbd_make_request_common, because we now may set the bit
512 * again ourselves to close the current epoch.
513 *
514 * Add req to the (now) current epoch (barrier). */
515
Lars Ellenberg83c38832009-11-03 02:22:06 +0100516 /* otherwise we may lose an unplug, which may cause some remote
517 * io-scheduler timeout to expire, increasing maximum latency,
518 * hurting performance. */
519 set_bit(UNPLUG_REMOTE, &mdev->flags);
520
Philipp Reisnerb411b362009-09-25 16:07:19 -0700521 /* see drbd_make_request_common,
522 * just after it grabs the req_lock */
523 D_ASSERT(test_bit(CREATE_BARRIER, &mdev->flags) == 0);
524
Philipp Reisner87eeee42011-01-19 14:16:30 +0100525 req->epoch = mdev->tconn->newest_tle->br_number;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700526
527 /* increment size of current epoch */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100528 mdev->tconn->newest_tle->n_writes++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700529
530 /* queue work item to send data */
531 D_ASSERT(req->rq_state & RQ_NET_PENDING);
532 req->rq_state |= RQ_NET_QUEUED;
533 req->w.cb = w_send_dblock;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100534 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700535
536 /* close the epoch, in case it outgrew the limit */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100537 if (mdev->tconn->newest_tle->n_writes >= mdev->tconn->net_conf->max_epoch_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700538 queue_barrier(mdev);
539
540 break;
541
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100542 case QUEUE_FOR_SEND_OOS:
Philipp Reisner73a01a12010-10-27 14:33:00 +0200543 req->rq_state |= RQ_NET_QUEUED;
544 req->w.cb = w_send_oos;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100545 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200546 break;
547
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100548 case OOS_HANDED_TO_NETWORK:
Philipp Reisner73a01a12010-10-27 14:33:00 +0200549 /* actually the same */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100550 case SEND_CANCELED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700551 /* treat it the same */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100552 case SEND_FAILED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700553 /* real cleanup will be done from tl_clear. just update flags
554 * so it is no longer marked as on the worker queue */
555 req->rq_state &= ~RQ_NET_QUEUED;
556 /* if we did it right, tl_clear should be scheduled only after
557 * this, so this should not be necessary! */
Philipp Reisnercfa03412010-06-23 17:18:51 +0200558 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700559 break;
560
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100561 case HANDED_OVER_TO_NETWORK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700562 /* assert something? */
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200563 if (bio_data_dir(req->master_bio) == WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100564 atomic_add(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200565
Philipp Reisnerb411b362009-09-25 16:07:19 -0700566 if (bio_data_dir(req->master_bio) == WRITE &&
Philipp Reisner89e58e72011-01-19 13:12:45 +0100567 mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700568 /* this is what is dangerous about protocol A:
569 * pretend it was successfully written on the peer. */
570 if (req->rq_state & RQ_NET_PENDING) {
571 dec_ap_pending(mdev);
572 req->rq_state &= ~RQ_NET_PENDING;
573 req->rq_state |= RQ_NET_OK;
574 } /* else: neg-ack was faster... */
575 /* it is still not yet RQ_NET_DONE until the
576 * corresponding epoch barrier got acked as well,
577 * so we know what to dirty on connection loss */
578 }
579 req->rq_state &= ~RQ_NET_QUEUED;
580 req->rq_state |= RQ_NET_SENT;
581 /* because _drbd_send_zc_bio could sleep, and may want to
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100582 * dereference the bio even after the "WRITE_ACKED_BY_PEER" and
583 * "COMPLETED_OK" events came in, once we return from
Philipp Reisnerb411b362009-09-25 16:07:19 -0700584 * _drbd_send_zc_bio (drbd_send_dblock), we have to check
585 * whether it is done already, and end it. */
Philipp Reisnercfa03412010-06-23 17:18:51 +0200586 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700587 break;
588
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100589 case READ_RETRY_REMOTE_CANCELED:
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200590 req->rq_state &= ~RQ_NET_QUEUED;
591 /* fall through, in case we raced with drbd_disconnect */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100592 case CONNECTION_LOST_WHILE_PENDING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700593 /* transfer log cleanup after connection loss */
594 /* assert something? */
595 if (req->rq_state & RQ_NET_PENDING)
596 dec_ap_pending(mdev);
597 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
598 req->rq_state |= RQ_NET_DONE;
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200599 if (req->rq_state & RQ_NET_SENT && req->rq_state & RQ_WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100600 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200601
Philipp Reisnerb411b362009-09-25 16:07:19 -0700602 /* if it is still queued, we may not complete it here.
603 * it will be canceled soon. */
604 if (!(req->rq_state & RQ_NET_QUEUED))
Philipp Reisnercfa03412010-06-23 17:18:51 +0200605 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700606 break;
607
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100608 case WRITE_ACKED_BY_PEER_AND_SIS:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700609 req->rq_state |= RQ_NET_SIS;
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100610 case CONFLICT_DISCARDED_BY_PEER:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700611 /* for discarded conflicting writes of multiple primaries,
612 * there is no need to keep anything in the tl, potential
613 * node crashes are covered by the activity log. */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100614 if (what == CONFLICT_DISCARDED_BY_PEER)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700615 dev_alert(DEV, "Got DiscardAck packet %llus +%u!"
616 " DRBD is not a random data generator!\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100617 (unsigned long long)req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700618 req->rq_state |= RQ_NET_DONE;
619 /* fall through */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100620 case WRITE_ACKED_BY_PEER:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700621 /* protocol C; successfully written on peer.
622 * Nothing to do here.
623 * We want to keep the tl in place for all protocols, to cater
624 * for volatile write-back caches on lower level devices.
625 *
626 * A barrier request is expected to have forced all prior
627 * requests onto stable storage, so completion of a barrier
628 * request could set NET_DONE right here, and not wait for the
629 * P_BARRIER_ACK, but that is an unnecessary optimization. */
630
631 /* this makes it effectively the same as for: */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100632 case RECV_ACKED_BY_PEER:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700633 /* protocol B; pretends to be successfully written on peer.
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100634 * see also notes above in HANDED_OVER_TO_NETWORK about
Philipp Reisnerb411b362009-09-25 16:07:19 -0700635 * protocol != C */
636 req->rq_state |= RQ_NET_OK;
637 D_ASSERT(req->rq_state & RQ_NET_PENDING);
638 dec_ap_pending(mdev);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100639 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700640 req->rq_state &= ~RQ_NET_PENDING;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200641 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700642 break;
643
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100644 case NEG_ACKED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700645 /* assert something? */
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200646 if (req->rq_state & RQ_NET_PENDING) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700647 dec_ap_pending(mdev);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100648 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200649 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700650 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
651
652 req->rq_state |= RQ_NET_DONE;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200653 _req_may_be_done_not_susp(req, m);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100654 /* else: done by HANDED_OVER_TO_NETWORK */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700655 break;
656
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100657 case FAIL_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200658 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
659 break;
660
Philipp Reisnercfa03412010-06-23 17:18:51 +0200661 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisner265be2d2010-05-31 10:14:17 +0200662 break;
663
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100664 case RESTART_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200665 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
666 break;
667
668 req->rq_state &= ~RQ_LOCAL_COMPLETED;
669
670 rv = MR_READ;
671 if (bio_data_dir(req->master_bio) == WRITE)
672 rv = MR_WRITE;
673
674 get_ldev(mdev);
675 req->w.cb = w_restart_disk_io;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100676 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200677 break;
678
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100679 case RESEND:
Philipp Reisner11b58e72010-05-12 17:08:26 +0200680 /* If RQ_NET_OK is already set, we got a P_WRITE_ACK or P_RECV_ACK
Philipp Reisner47ff2d02010-06-18 13:56:57 +0200681 before the connection loss (B&C only); only P_BARRIER_ACK was missing.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200682 Trowing them out of the TL here by pretending we got a BARRIER_ACK
Philipp Reisner481c6f52010-06-22 14:03:27 +0200683 We ensure that the peer was not rebooted */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200684 if (!(req->rq_state & RQ_NET_OK)) {
685 if (req->w.cb) {
Philipp Reisnere42325a2011-01-19 13:55:45 +0100686 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200687 rv = req->rq_state & RQ_WRITE ? MR_WRITE : MR_READ;
688 }
689 break;
690 }
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100691 /* else, fall through to BARRIER_ACKED */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200692
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100693 case BARRIER_ACKED:
Philipp Reisner288f4222010-05-27 15:07:43 +0200694 if (!(req->rq_state & RQ_WRITE))
695 break;
696
Philipp Reisnerb411b362009-09-25 16:07:19 -0700697 if (req->rq_state & RQ_NET_PENDING) {
698 /* barrier came in before all requests have been acked.
699 * this is bad, because if the connection is lost now,
700 * we won't be able to clean them up... */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100701 dev_err(DEV, "FIXME (BARRIER_ACKED but pending)\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +0100702 list_move(&req->tl_requests, &mdev->tconn->out_of_sequence_requests);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700703 }
Lars Ellenberge636db52011-01-21 17:10:37 +0100704 if ((req->rq_state & RQ_NET_MASK) != 0) {
705 req->rq_state |= RQ_NET_DONE;
Philipp Reisner89e58e72011-01-19 13:12:45 +0100706 if (mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A)
707 atomic_sub(req->i.size>>9, &mdev->ap_in_flight);
Lars Ellenberge636db52011-01-21 17:10:37 +0100708 }
Philipp Reisnercfa03412010-06-23 17:18:51 +0200709 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700710 break;
711
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100712 case DATA_RECEIVED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700713 D_ASSERT(req->rq_state & RQ_NET_PENDING);
714 dec_ap_pending(mdev);
715 req->rq_state &= ~RQ_NET_PENDING;
716 req->rq_state |= (RQ_NET_OK|RQ_NET_DONE);
Philipp Reisnercfa03412010-06-23 17:18:51 +0200717 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700718 break;
719 };
Philipp Reisner2a806992010-06-09 14:07:43 +0200720
721 return rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700722}
723
724/* we may do a local read if:
725 * - we are consistent (of course),
726 * - or we are generally inconsistent,
727 * BUT we are still/already IN SYNC for this area.
728 * since size may be bigger than BM_BLOCK_SIZE,
729 * we may need to check several bits.
730 */
731static int drbd_may_do_local_read(struct drbd_conf *mdev, sector_t sector, int size)
732{
733 unsigned long sbnr, ebnr;
734 sector_t esector, nr_sectors;
735
736 if (mdev->state.disk == D_UP_TO_DATE)
737 return 1;
738 if (mdev->state.disk >= D_OUTDATED)
739 return 0;
740 if (mdev->state.disk < D_INCONSISTENT)
741 return 0;
742 /* state.disk == D_INCONSISTENT We will have a look at the BitMap */
743 nr_sectors = drbd_get_capacity(mdev->this_bdev);
744 esector = sector + (size >> 9) - 1;
745
746 D_ASSERT(sector < nr_sectors);
747 D_ASSERT(esector < nr_sectors);
748
749 sbnr = BM_SECT_TO_BIT(sector);
750 ebnr = BM_SECT_TO_BIT(esector);
751
752 return 0 == drbd_bm_count_bits(mdev, sbnr, ebnr);
753}
754
Philipp Reisneraeda1cd62010-11-09 17:45:06 +0100755static int drbd_make_request_common(struct drbd_conf *mdev, struct bio *bio, unsigned long start_time)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700756{
757 const int rw = bio_rw(bio);
758 const int size = bio->bi_size;
759 const sector_t sector = bio->bi_sector;
760 struct drbd_tl_epoch *b = NULL;
761 struct drbd_request *req;
Philipp Reisner73a01a12010-10-27 14:33:00 +0200762 int local, remote, send_oos = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700763 int err = -EIO;
Philipp Reisner9a25a042010-05-10 16:42:23 +0200764 int ret = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700765
766 /* allocate outside of all locks; */
767 req = drbd_req_new(mdev, bio);
768 if (!req) {
769 dec_ap_bio(mdev);
770 /* only pass the error to the upper layers.
771 * if user cannot handle io errors, that's not our business. */
772 dev_err(DEV, "could not kmalloc() req\n");
773 bio_endio(bio, -ENOMEM);
774 return 0;
775 }
Philipp Reisneraeda1cd62010-11-09 17:45:06 +0100776 req->start_time = start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700777
Philipp Reisnerb411b362009-09-25 16:07:19 -0700778 local = get_ldev(mdev);
779 if (!local) {
780 bio_put(req->private_bio); /* or we get a bio leak */
781 req->private_bio = NULL;
782 }
783 if (rw == WRITE) {
784 remote = 1;
785 } else {
786 /* READ || READA */
787 if (local) {
788 if (!drbd_may_do_local_read(mdev, sector, size)) {
789 /* we could kick the syncer to
790 * sync this extent asap, wait for
791 * it, then continue locally.
792 * Or just issue the request remotely.
793 */
794 local = 0;
795 bio_put(req->private_bio);
796 req->private_bio = NULL;
797 put_ldev(mdev);
798 }
799 }
800 remote = !local && mdev->state.pdsk >= D_UP_TO_DATE;
801 }
802
803 /* If we have a disk, but a READA request is mapped to remote,
804 * we are R_PRIMARY, D_INCONSISTENT, SyncTarget.
805 * Just fail that READA request right here.
806 *
807 * THINK: maybe fail all READA when not local?
808 * or make this configurable...
809 * if network is slow, READA won't do any good.
810 */
811 if (rw == READA && mdev->state.disk >= D_INCONSISTENT && !local) {
812 err = -EWOULDBLOCK;
813 goto fail_and_free_req;
814 }
815
816 /* For WRITES going to the local disk, grab a reference on the target
817 * extent. This waits for any resync activity in the corresponding
818 * resync extent to finish, and, if necessary, pulls in the target
819 * extent into the activity log, which involves further disk io because
820 * of transactional on-disk meta data updates. */
Philipp Reisner07782862010-08-31 12:00:50 +0200821 if (rw == WRITE && local && !test_bit(AL_SUSPENDED, &mdev->flags)) {
822 req->rq_state |= RQ_IN_ACT_LOG;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700823 drbd_al_begin_io(mdev, sector);
Philipp Reisner07782862010-08-31 12:00:50 +0200824 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700825
Philipp Reisner6a35c452011-01-17 20:27:30 +0100826 remote = remote && drbd_should_do_remote(mdev->state);
827 send_oos = rw == WRITE && drbd_should_send_oos(mdev->state);
Philipp Reisner37190942010-11-10 12:08:37 +0100828 D_ASSERT(!(remote && send_oos));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700829
Philipp Reisnerfb22c402010-09-08 23:20:21 +0200830 if (!(local || remote) && !is_susp(mdev->state)) {
Lars Ellenbergfb2c7a12010-10-19 12:08:13 +0200831 if (__ratelimit(&drbd_ratelimit_state))
832 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700833 goto fail_free_complete;
834 }
835
836 /* For WRITE request, we have to make sure that we have an
837 * unused_spare_tle, in case we need to start a new epoch.
838 * I try to be smart and avoid to pre-allocate always "just in case",
839 * but there is a race between testing the bit and pointer outside the
840 * spinlock, and grabbing the spinlock.
841 * if we lost that race, we retry. */
Philipp Reisner73a01a12010-10-27 14:33:00 +0200842 if (rw == WRITE && (remote || send_oos) &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100843 mdev->tconn->unused_spare_tle == NULL &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700844 test_bit(CREATE_BARRIER, &mdev->flags)) {
845allocate_barrier:
846 b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_NOIO);
847 if (!b) {
848 dev_err(DEV, "Failed to alloc barrier.\n");
849 err = -ENOMEM;
850 goto fail_free_complete;
851 }
852 }
853
854 /* GOOD, everything prepared, grab the spin_lock */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100855 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700856
Philipp Reisnerfb22c402010-09-08 23:20:21 +0200857 if (is_susp(mdev->state)) {
Philipp Reisner9a25a042010-05-10 16:42:23 +0200858 /* If we got suspended, use the retry mechanism of
859 generic_make_request() to restart processing of this
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +0100860 bio. In the next call to drbd_make_request
Philipp Reisner9a25a042010-05-10 16:42:23 +0200861 we sleep in inc_ap_bio() */
862 ret = 1;
Philipp Reisner87eeee42011-01-19 14:16:30 +0100863 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner9a25a042010-05-10 16:42:23 +0200864 goto fail_free_complete;
865 }
866
Philipp Reisner73a01a12010-10-27 14:33:00 +0200867 if (remote || send_oos) {
Philipp Reisner6a35c452011-01-17 20:27:30 +0100868 remote = drbd_should_do_remote(mdev->state);
869 send_oos = rw == WRITE && drbd_should_send_oos(mdev->state);
Philipp Reisner37190942010-11-10 12:08:37 +0100870 D_ASSERT(!(remote && send_oos));
Philipp Reisner73a01a12010-10-27 14:33:00 +0200871
872 if (!(remote || send_oos))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700873 dev_warn(DEV, "lost connection while grabbing the req_lock!\n");
874 if (!(local || remote)) {
875 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +0100876 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700877 goto fail_free_complete;
878 }
879 }
880
Philipp Reisner87eeee42011-01-19 14:16:30 +0100881 if (b && mdev->tconn->unused_spare_tle == NULL) {
882 mdev->tconn->unused_spare_tle = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700883 b = NULL;
884 }
Philipp Reisner73a01a12010-10-27 14:33:00 +0200885 if (rw == WRITE && (remote || send_oos) &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100886 mdev->tconn->unused_spare_tle == NULL &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700887 test_bit(CREATE_BARRIER, &mdev->flags)) {
888 /* someone closed the current epoch
889 * while we were grabbing the spinlock */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100890 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700891 goto allocate_barrier;
892 }
893
894
895 /* Update disk stats */
896 _drbd_start_io_acct(mdev, req, bio);
897
898 /* _maybe_start_new_epoch(mdev);
899 * If we need to generate a write barrier packet, we have to add the
900 * new epoch (barrier) object, and queue the barrier packet for sending,
901 * and queue the req's data after it _within the same lock_, otherwise
902 * we have race conditions were the reorder domains could be mixed up.
903 *
904 * Even read requests may start a new epoch and queue the corresponding
905 * barrier packet. To get the write ordering right, we only have to
906 * make sure that, if this is a write request and it triggered a
907 * barrier packet, this request is queued within the same spinlock. */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100908 if ((remote || send_oos) && mdev->tconn->unused_spare_tle &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700909 test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) {
Philipp Reisner87eeee42011-01-19 14:16:30 +0100910 _tl_add_barrier(mdev, mdev->tconn->unused_spare_tle);
911 mdev->tconn->unused_spare_tle = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700912 } else {
913 D_ASSERT(!(remote && rw == WRITE &&
914 test_bit(CREATE_BARRIER, &mdev->flags)));
915 }
916
917 /* NOTE
918 * Actually, 'local' may be wrong here already, since we may have failed
919 * to write to the meta data, and may become wrong anytime because of
920 * local io-error for some other request, which would lead to us
921 * "detaching" the local disk.
922 *
923 * 'remote' may become wrong any time because the network could fail.
924 *
925 * This is a harmless race condition, though, since it is handled
926 * correctly at the appropriate places; so it just defers the failure
927 * of the respective operation.
928 */
929
930 /* mark them early for readability.
931 * this just sets some state flags. */
932 if (remote)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100933 _req_mod(req, TO_BE_SENT);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700934 if (local)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100935 _req_mod(req, TO_BE_SUBMITTED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700936
937 /* check this request on the collision detection hash tables.
938 * if we have a conflict, just complete it here.
939 * THINK do we want to check reads, too? (I don't think so...) */
Lars Ellenbergd28fd092010-07-09 23:28:10 +0200940 if (rw == WRITE && _req_conflicts(req))
941 goto fail_conflicting;
Philipp Reisner288f4222010-05-27 15:07:43 +0200942
Philipp Reisner87eeee42011-01-19 14:16:30 +0100943 list_add_tail(&req->tl_requests, &mdev->tconn->newest_tle->requests);
Philipp Reisner288f4222010-05-27 15:07:43 +0200944
Philipp Reisnerb411b362009-09-25 16:07:19 -0700945 /* NOTE remote first: to get the concurrent write detection right,
946 * we must register the request before start of local IO. */
947 if (remote) {
948 /* either WRITE and C_CONNECTED,
949 * or READ, and no local disk,
950 * or READ, but not in sync.
951 */
952 _req_mod(req, (rw == WRITE)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100953 ? QUEUE_FOR_NET_WRITE
954 : QUEUE_FOR_NET_READ);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700955 }
Philipp Reisner73a01a12010-10-27 14:33:00 +0200956 if (send_oos && drbd_set_out_of_sync(mdev, sector, size))
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100957 _req_mod(req, QUEUE_FOR_SEND_OOS);
Philipp Reisner67531712010-10-27 12:21:30 +0200958
Philipp Reisner73a01a12010-10-27 14:33:00 +0200959 if (remote &&
Philipp Reisner31890f42011-01-19 14:12:51 +0100960 mdev->tconn->net_conf->on_congestion != OC_BLOCK && mdev->tconn->agreed_pro_version >= 96) {
Philipp Reisner67531712010-10-27 12:21:30 +0200961 int congested = 0;
962
Philipp Reisner89e58e72011-01-19 13:12:45 +0100963 if (mdev->tconn->net_conf->cong_fill &&
964 atomic_read(&mdev->ap_in_flight) >= mdev->tconn->net_conf->cong_fill) {
Philipp Reisner67531712010-10-27 12:21:30 +0200965 dev_info(DEV, "Congestion-fill threshold reached\n");
966 congested = 1;
967 }
968
Philipp Reisner89e58e72011-01-19 13:12:45 +0100969 if (mdev->act_log->used >= mdev->tconn->net_conf->cong_extents) {
Philipp Reisner67531712010-10-27 12:21:30 +0200970 dev_info(DEV, "Congestion-extents threshold reached\n");
971 congested = 1;
972 }
973
Philipp Reisner71c78cf2011-01-14 19:20:34 +0100974 if (congested) {
Philipp Reisner039312b2011-01-21 14:13:22 +0100975 queue_barrier(mdev); /* last barrier, after mirrored writes */
Philipp Reisner73a01a12010-10-27 14:33:00 +0200976
Philipp Reisner89e58e72011-01-19 13:12:45 +0100977 if (mdev->tconn->net_conf->on_congestion == OC_PULL_AHEAD)
Philipp Reisner67531712010-10-27 12:21:30 +0200978 _drbd_set_state(_NS(mdev, conn, C_AHEAD), 0, NULL);
Philipp Reisner89e58e72011-01-19 13:12:45 +0100979 else /*mdev->tconn->net_conf->on_congestion == OC_DISCONNECT */
Philipp Reisner67531712010-10-27 12:21:30 +0200980 _drbd_set_state(_NS(mdev, conn, C_DISCONNECTING), 0, NULL);
981 }
982 }
983
Philipp Reisner87eeee42011-01-19 14:16:30 +0100984 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700985 kfree(b); /* if someone else has beaten us to it... */
986
987 if (local) {
988 req->private_bio->bi_bdev = mdev->ldev->backing_bdev;
989
Lars Ellenberg6719fb02010-10-18 23:04:07 +0200990 /* State may have changed since we grabbed our reference on the
991 * mdev->ldev member. Double check, and short-circuit to endio.
992 * In case the last activity log transaction failed to get on
993 * stable storage, and this is a WRITE, we may not even submit
994 * this bio. */
995 if (get_ldev(mdev)) {
Andreas Gruenbacher0cf9d272010-12-07 10:43:29 +0100996 if (drbd_insert_fault(mdev, rw == WRITE ? DRBD_FAULT_DT_WR
997 : rw == READ ? DRBD_FAULT_DT_RD
998 : DRBD_FAULT_DT_RA))
Lars Ellenberg6719fb02010-10-18 23:04:07 +0200999 bio_endio(req->private_bio, -EIO);
1000 else
1001 generic_make_request(req->private_bio);
1002 put_ldev(mdev);
1003 } else
Philipp Reisnerb411b362009-09-25 16:07:19 -07001004 bio_endio(req->private_bio, -EIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001005 }
1006
Philipp Reisnerb411b362009-09-25 16:07:19 -07001007 return 0;
1008
Lars Ellenbergd28fd092010-07-09 23:28:10 +02001009fail_conflicting:
1010 /* this is a conflicting request.
1011 * even though it may have been only _partially_
1012 * overlapping with one of the currently pending requests,
1013 * without even submitting or sending it, we will
1014 * pretend that it was successfully served right now.
1015 */
1016 _drbd_end_io_acct(mdev, req);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001017 spin_unlock_irq(&mdev->tconn->req_lock);
Lars Ellenbergd28fd092010-07-09 23:28:10 +02001018 if (remote)
1019 dec_ap_pending(mdev);
1020 /* THINK: do we want to fail it (-EIO), or pretend success?
1021 * this pretends success. */
1022 err = 0;
1023
Philipp Reisnerb411b362009-09-25 16:07:19 -07001024fail_free_complete:
Lars Ellenberg76727f62011-05-16 15:31:45 +02001025 if (req->rq_state & RQ_IN_ACT_LOG)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001026 drbd_al_complete_io(mdev, sector);
1027fail_and_free_req:
1028 if (local) {
1029 bio_put(req->private_bio);
1030 req->private_bio = NULL;
1031 put_ldev(mdev);
1032 }
Philipp Reisner9a25a042010-05-10 16:42:23 +02001033 if (!ret)
1034 bio_endio(bio, err);
1035
Philipp Reisnerb411b362009-09-25 16:07:19 -07001036 drbd_req_free(req);
1037 dec_ap_bio(mdev);
1038 kfree(b);
1039
Philipp Reisner9a25a042010-05-10 16:42:23 +02001040 return ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001041}
1042
1043/* helper function for drbd_make_request
1044 * if we can determine just by the mdev (state) that this request will fail,
1045 * return 1
1046 * otherwise return 0
1047 */
1048static int drbd_fail_request_early(struct drbd_conf *mdev, int is_write)
1049{
Philipp Reisnerb411b362009-09-25 16:07:19 -07001050 if (mdev->state.role != R_PRIMARY &&
1051 (!allow_oos || is_write)) {
1052 if (__ratelimit(&drbd_ratelimit_state)) {
1053 dev_err(DEV, "Process %s[%u] tried to %s; "
1054 "since we are not in Primary state, "
1055 "we cannot allow this\n",
1056 current->comm, current->pid,
1057 is_write ? "WRITE" : "READ");
1058 }
1059 return 1;
1060 }
1061
Philipp Reisnerb411b362009-09-25 16:07:19 -07001062 return 0;
1063}
1064
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01001065int drbd_make_request(struct request_queue *q, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001066{
1067 unsigned int s_enr, e_enr;
1068 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001069 unsigned long start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001070
1071 if (drbd_fail_request_early(mdev, bio_data_dir(bio) & WRITE)) {
1072 bio_endio(bio, -EPERM);
1073 return 0;
1074 }
1075
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001076 start_time = jiffies;
1077
Philipp Reisnerb411b362009-09-25 16:07:19 -07001078 /*
1079 * what we "blindly" assume:
1080 */
1081 D_ASSERT(bio->bi_size > 0);
1082 D_ASSERT((bio->bi_size & 0x1ff) == 0);
1083 D_ASSERT(bio->bi_idx == 0);
1084
1085 /* to make some things easier, force alignment of requests within the
1086 * granularity of our hash tables */
1087 s_enr = bio->bi_sector >> HT_SHIFT;
1088 e_enr = (bio->bi_sector+(bio->bi_size>>9)-1) >> HT_SHIFT;
1089
1090 if (likely(s_enr == e_enr)) {
1091 inc_ap_bio(mdev, 1);
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001092 return drbd_make_request_common(mdev, bio, start_time);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001093 }
1094
1095 /* can this bio be split generically?
1096 * Maybe add our own split-arbitrary-bios function. */
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001097 if (bio->bi_vcnt != 1 || bio->bi_idx != 0 || bio->bi_size > DRBD_MAX_BIO_SIZE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001098 /* rather error out here than BUG in bio_split */
1099 dev_err(DEV, "bio would need to, but cannot, be split: "
1100 "(vcnt=%u,idx=%u,size=%u,sector=%llu)\n",
1101 bio->bi_vcnt, bio->bi_idx, bio->bi_size,
1102 (unsigned long long)bio->bi_sector);
1103 bio_endio(bio, -EINVAL);
1104 } else {
1105 /* This bio crosses some boundary, so we have to split it. */
1106 struct bio_pair *bp;
1107 /* works for the "do not cross hash slot boundaries" case
1108 * e.g. sector 262269, size 4096
1109 * s_enr = 262269 >> 6 = 4097
1110 * e_enr = (262269+8-1) >> 6 = 4098
1111 * HT_SHIFT = 6
1112 * sps = 64, mask = 63
1113 * first_sectors = 64 - (262269 & 63) = 3
1114 */
1115 const sector_t sect = bio->bi_sector;
1116 const int sps = 1 << HT_SHIFT; /* sectors per slot */
1117 const int mask = sps - 1;
1118 const sector_t first_sectors = sps - (sect & mask);
Or Gerlitz03567812011-01-13 10:43:40 +01001119 bp = bio_split(bio, first_sectors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001120
1121 /* we need to get a "reference count" (ap_bio_cnt)
1122 * to avoid races with the disconnect/reconnect/suspend code.
Philipp Reisner9a25a042010-05-10 16:42:23 +02001123 * In case we need to split the bio here, we need to get three references
Philipp Reisnerb411b362009-09-25 16:07:19 -07001124 * atomically, otherwise we might deadlock when trying to submit the
1125 * second one! */
Philipp Reisner9a25a042010-05-10 16:42:23 +02001126 inc_ap_bio(mdev, 3);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001127
1128 D_ASSERT(e_enr == s_enr + 1);
1129
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001130 while (drbd_make_request_common(mdev, &bp->bio1, start_time))
Philipp Reisner9a25a042010-05-10 16:42:23 +02001131 inc_ap_bio(mdev, 1);
1132
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001133 while (drbd_make_request_common(mdev, &bp->bio2, start_time))
Philipp Reisner9a25a042010-05-10 16:42:23 +02001134 inc_ap_bio(mdev, 1);
1135
1136 dec_ap_bio(mdev);
1137
Philipp Reisnerb411b362009-09-25 16:07:19 -07001138 bio_pair_release(bp);
1139 }
1140 return 0;
1141}
1142
1143/* This is called by bio_add_page(). With this function we reduce
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001144 * the number of BIOs that span over multiple DRBD_MAX_BIO_SIZEs
Philipp Reisnerb411b362009-09-25 16:07:19 -07001145 * units (was AL_EXTENTs).
1146 *
1147 * we do the calculation within the lower 32bit of the byte offsets,
1148 * since we don't care for actual offset, but only check whether it
1149 * would cross "activity log extent" boundaries.
1150 *
1151 * As long as the BIO is empty we have to allow at least one bvec,
1152 * regardless of size and offset. so the resulting bio may still
1153 * cross extent boundaries. those are dealt with (bio_split) in
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01001154 * drbd_make_request.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001155 */
1156int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec)
1157{
1158 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
1159 unsigned int bio_offset =
1160 (unsigned int)bvm->bi_sector << 9; /* 32 bit */
1161 unsigned int bio_size = bvm->bi_size;
1162 int limit, backing_limit;
1163
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001164 limit = DRBD_MAX_BIO_SIZE
1165 - ((bio_offset & (DRBD_MAX_BIO_SIZE-1)) + bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001166 if (limit < 0)
1167 limit = 0;
1168 if (bio_size == 0) {
1169 if (limit <= bvec->bv_len)
1170 limit = bvec->bv_len;
1171 } else if (limit && get_ldev(mdev)) {
1172 struct request_queue * const b =
1173 mdev->ldev->backing_bdev->bd_disk->queue;
Lars Ellenberga1c88d02010-05-14 19:16:41 +02001174 if (b->merge_bvec_fn) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001175 backing_limit = b->merge_bvec_fn(b, bvm, bvec);
1176 limit = min(limit, backing_limit);
1177 }
1178 put_ldev(mdev);
1179 }
1180 return limit;
1181}
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001182
1183void request_timer_fn(unsigned long data)
1184{
1185 struct drbd_conf *mdev = (struct drbd_conf *) data;
1186 struct drbd_request *req; /* oldest request */
1187 struct list_head *le;
1188 unsigned long et = 0; /* effective timeout = ko_count * timeout */
1189
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01001190 if (get_net_conf(mdev->tconn)) {
Philipp Reisner89e58e72011-01-19 13:12:45 +01001191 et = mdev->tconn->net_conf->timeout*HZ/10 * mdev->tconn->net_conf->ko_count;
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01001192 put_net_conf(mdev->tconn);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001193 }
1194 if (!et || mdev->state.conn < C_WF_REPORT_PARAMS)
1195 return; /* Recurring timer stopped */
1196
Philipp Reisner87eeee42011-01-19 14:16:30 +01001197 spin_lock_irq(&mdev->tconn->req_lock);
1198 le = &mdev->tconn->oldest_tle->requests;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001199 if (list_empty(le)) {
Philipp Reisner87eeee42011-01-19 14:16:30 +01001200 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001201 mod_timer(&mdev->request_timer, jiffies + et);
1202 return;
1203 }
1204
1205 le = le->prev;
1206 req = list_entry(le, struct drbd_request, tl_requests);
1207 if (time_is_before_eq_jiffies(req->start_time + et)) {
1208 if (req->rq_state & RQ_NET_PENDING) {
1209 dev_warn(DEV, "Remote failed to finish a request within ko-count * timeout\n");
1210 _drbd_set_state(_NS(mdev, conn, C_TIMEOUT), CS_VERBOSE, NULL);
1211 } else {
1212 dev_warn(DEV, "Local backing block device frozen?\n");
1213 mod_timer(&mdev->request_timer, jiffies + et);
1214 }
1215 } else {
1216 mod_timer(&mdev->request_timer, req->start_time + et);
1217 }
1218
Philipp Reisner87eeee42011-01-19 14:16:30 +01001219 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001220}