drbd: fix drbd wire compatibility for empty flushes
[deliverable/linux.git] / drivers / block / drbd / drbd_req.c
CommitLineData
b411b363
PR
1/*
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
b411b363
PR
26#include <linux/module.h>
27
28#include <linux/slab.h>
29#include <linux/drbd.h>
30#include "drbd_int.h"
b411b363
PR
31#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();
031a7c17 40 part_round_stats(cpu, &mdev->vdisk->part0);
b411b363
PR
41 part_stat_inc(cpu, &mdev->vdisk->part0, ios[rw]);
42 part_stat_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio));
753c8913 43 part_inc_in_flight(&mdev->vdisk->part0, rw);
b411b363 44 part_stat_unlock();
b411b363
PR
45}
46
47/* Update disk stats when completing request upwards */
48static void _drbd_end_io_acct(struct drbd_conf *mdev, struct drbd_request *req)
49{
50 int rw = bio_data_dir(req->master_bio);
51 unsigned long duration = jiffies - req->start_time;
52 int cpu;
53 cpu = part_stat_lock();
54 part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration);
55 part_round_stats(cpu, &mdev->vdisk->part0);
753c8913 56 part_dec_in_flight(&mdev->vdisk->part0, rw);
b411b363 57 part_stat_unlock();
b411b363
PR
58}
59
60static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
61{
62 const unsigned long s = req->rq_state;
288f422e
PR
63
64 /* remove it from the transfer log.
65 * well, only if it had been there in the first
66 * place... if it had not (local only or conflicting
67 * and never sent), it should still be "empty" as
68 * initialized in drbd_req_new(), so we can list_del() it
69 * here unconditionally */
70 list_del(&req->tl_requests);
71
b411b363
PR
72 /* if it was a write, we may have to set the corresponding
73 * bit(s) out-of-sync first. If it had a local part, we need to
74 * release the reference to the activity log. */
75 if (rw == WRITE) {
b411b363
PR
76 /* Set out-of-sync unless both OK flags are set
77 * (local only or remote failed).
78 * Other places where we set out-of-sync:
79 * READ with local io-error */
80 if (!(s & RQ_NET_OK) || !(s & RQ_LOCAL_OK))
81 drbd_set_out_of_sync(mdev, req->sector, req->size);
82
83 if ((s & RQ_NET_OK) && (s & RQ_LOCAL_OK) && (s & RQ_NET_SIS))
84 drbd_set_in_sync(mdev, req->sector, req->size);
85
86 /* one might be tempted to move the drbd_al_complete_io
87 * to the local io completion callback drbd_endio_pri.
88 * but, if this was a mirror write, we may only
89 * drbd_al_complete_io after this is RQ_NET_DONE,
90 * otherwise the extent could be dropped from the al
91 * before it has actually been written on the peer.
92 * if we crash before our peer knows about the request,
93 * but after the extent has been dropped from the al,
94 * we would forget to resync the corresponding extent.
95 */
96 if (s & RQ_LOCAL_MASK) {
97 if (get_ldev_if_state(mdev, D_FAILED)) {
0778286a
PR
98 if (s & RQ_IN_ACT_LOG)
99 drbd_al_complete_io(mdev, req->sector);
b411b363
PR
100 put_ldev(mdev);
101 } else if (__ratelimit(&drbd_ratelimit_state)) {
102 dev_warn(DEV, "Should have called drbd_al_complete_io(, %llu), "
103 "but my Disk seems to have failed :(\n",
104 (unsigned long long) req->sector);
105 }
106 }
107 }
108
32fa7e91 109 drbd_req_free(req);
b411b363
PR
110}
111
112static void queue_barrier(struct drbd_conf *mdev)
113{
114 struct drbd_tl_epoch *b;
115
116 /* We are within the req_lock. Once we queued the barrier for sending,
117 * we set the CREATE_BARRIER bit. It is cleared as soon as a new
118 * barrier/epoch object is added. This is the only place this bit is
119 * set. It indicates that the barrier for this epoch is already queued,
120 * and no new epoch has been created yet. */
121 if (test_bit(CREATE_BARRIER, &mdev->flags))
122 return;
123
124 b = mdev->newest_tle;
125 b->w.cb = w_send_barrier;
126 /* inc_ap_pending done here, so we won't
127 * get imbalanced on connection loss.
128 * dec_ap_pending will be done in got_BarrierAck
129 * or (on connection loss) in tl_clear. */
130 inc_ap_pending(mdev);
131 drbd_queue_work(&mdev->data.work, &b->w);
132 set_bit(CREATE_BARRIER, &mdev->flags);
133}
134
135static void _about_to_complete_local_write(struct drbd_conf *mdev,
136 struct drbd_request *req)
137{
138 const unsigned long s = req->rq_state;
139 struct drbd_request *i;
140 struct drbd_epoch_entry *e;
141 struct hlist_node *n;
142 struct hlist_head *slot;
143
8a3c1044
LE
144 /* Before we can signal completion to the upper layers,
145 * we may need to close the current epoch.
146 * We can skip this, if this request has not even been sent, because we
147 * did not have a fully established connection yet/anymore, during
148 * bitmap exchange, or while we are C_AHEAD due to congestion policy.
149 */
150 if (mdev->state.conn >= C_CONNECTED &&
151 (s & RQ_NET_SENT) != 0 &&
b411b363
PR
152 req->epoch == mdev->newest_tle->br_number)
153 queue_barrier(mdev);
154
155 /* we need to do the conflict detection stuff,
156 * if we have the ee_hash (two_primaries) and
157 * this has been on the network */
158 if ((s & RQ_NET_DONE) && mdev->ee_hash != NULL) {
159 const sector_t sector = req->sector;
160 const int size = req->size;
161
162 /* ASSERT:
163 * there must be no conflicting requests, since
164 * they must have been failed on the spot */
165#define OVERLAPS overlaps(sector, size, i->sector, i->size)
166 slot = tl_hash_slot(mdev, sector);
24c4830c 167 hlist_for_each_entry(i, n, slot, collision) {
b411b363
PR
168 if (OVERLAPS) {
169 dev_alert(DEV, "LOGIC BUG: completed: %p %llus +%u; "
170 "other: %p %llus +%u\n",
171 req, (unsigned long long)sector, size,
172 i, (unsigned long long)i->sector, i->size);
173 }
174 }
175
176 /* maybe "wake" those conflicting epoch entries
177 * that wait for this request to finish.
178 *
179 * currently, there can be only _one_ such ee
180 * (well, or some more, which would be pending
181 * P_DISCARD_ACK not yet sent by the asender...),
182 * since we block the receiver thread upon the
183 * first conflict detection, which will wait on
184 * misc_wait. maybe we want to assert that?
185 *
186 * anyways, if we found one,
187 * we just have to do a wake_up. */
188#undef OVERLAPS
189#define OVERLAPS overlaps(sector, size, e->sector, e->size)
190 slot = ee_hash_slot(mdev, req->sector);
24c4830c 191 hlist_for_each_entry(e, n, slot, collision) {
b411b363
PR
192 if (OVERLAPS) {
193 wake_up(&mdev->misc_wait);
194 break;
195 }
196 }
197 }
198#undef OVERLAPS
199}
200
201void complete_master_bio(struct drbd_conf *mdev,
202 struct bio_and_error *m)
203{
b411b363
PR
204 bio_endio(m->bio, m->error);
205 dec_ap_bio(mdev);
206}
207
208/* Helper for __req_mod().
209 * Set m->bio to the master bio, if it is fit to be completed,
210 * or leave it alone (it is initialized to NULL in __req_mod),
211 * if it has already been completed, or cannot be completed yet.
212 * If m->bio is set, the error status to be returned is placed in m->error.
213 */
214void _req_may_be_done(struct drbd_request *req, struct bio_and_error *m)
215{
216 const unsigned long s = req->rq_state;
217 struct drbd_conf *mdev = req->mdev;
2b4dd36f 218 int rw = req->rq_state & RQ_WRITE ? WRITE : READ;
b411b363 219
b411b363
PR
220 /* we must not complete the master bio, while it is
221 * still being processed by _drbd_send_zc_bio (drbd_send_dblock)
222 * not yet acknowledged by the peer
223 * not yet completed by the local io subsystem
224 * these flags may get cleared in any order by
225 * the worker,
226 * the receiver,
227 * the bio_endio completion callbacks.
228 */
229 if (s & RQ_NET_QUEUED)
230 return;
231 if (s & RQ_NET_PENDING)
232 return;
2b4dd36f 233 if (s & RQ_LOCAL_PENDING && !(s & RQ_LOCAL_ABORTED))
b411b363
PR
234 return;
235
236 if (req->master_bio) {
237 /* this is data_received (remote read)
238 * or protocol C P_WRITE_ACK
239 * or protocol B P_RECV_ACK
240 * or protocol A "handed_over_to_network" (SendAck)
241 * or canceled or failed,
242 * or killed from the transfer log due to connection loss.
243 */
244
245 /*
246 * figure out whether to report success or failure.
247 *
248 * report success when at least one of the operations succeeded.
249 * or, to put the other way,
250 * only report failure, when both operations failed.
251 *
252 * what to do about the failures is handled elsewhere.
253 * what we need to do here is just: complete the master_bio.
254 *
255 * local completion error, if any, has been stored as ERR_PTR
256 * in private_bio within drbd_endio_pri.
257 */
258 int ok = (s & RQ_LOCAL_OK) || (s & RQ_NET_OK);
259 int error = PTR_ERR(req->private_bio);
260
261 /* remove the request from the conflict detection
262 * respective block_id verification hash */
24c4830c
BVA
263 if (!hlist_unhashed(&req->collision))
264 hlist_del(&req->collision);
b411b363 265 else
8825f7c3 266 D_ASSERT((s & (RQ_NET_MASK & ~RQ_NET_DONE)) == 0);
b411b363
PR
267
268 /* for writes we need to do some extra housekeeping */
269 if (rw == WRITE)
270 _about_to_complete_local_write(mdev, req);
271
272 /* Update disk stats */
273 _drbd_end_io_acct(mdev, req);
274
275 m->error = ok ? 0 : (error ?: -EIO);
276 m->bio = req->master_bio;
277 req->master_bio = NULL;
278 }
279
2b4dd36f
PR
280 if (s & RQ_LOCAL_PENDING)
281 return;
282
b411b363
PR
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
cfa03415
PR
294static 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
fb22c402 298 if (!is_susp(mdev->state))
cfa03415
PR
299 _req_may_be_done(req, m);
300}
301
b411b363
PR
302/*
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 *
321 * BTW, in case we only have one primary, the ee_hash is empty anyways, and the
322 * second hlist_for_each_entry becomes a noop. This is even simpler than to
323 * grab a reference on the net_conf, and check for the two_primaries flag...
324 */
325static int _req_conflicts(struct drbd_request *req)
326{
327 struct drbd_conf *mdev = req->mdev;
328 const sector_t sector = req->sector;
329 const int size = req->size;
330 struct drbd_request *i;
331 struct drbd_epoch_entry *e;
332 struct hlist_node *n;
333 struct hlist_head *slot;
334
24c4830c 335 D_ASSERT(hlist_unhashed(&req->collision));
b411b363
PR
336
337 if (!get_net_conf(mdev))
338 return 0;
339
340 /* BUG_ON */
341 ERR_IF (mdev->tl_hash_s == 0)
342 goto out_no_conflict;
343 BUG_ON(mdev->tl_hash == NULL);
344
345#define OVERLAPS overlaps(i->sector, i->size, sector, size)
346 slot = tl_hash_slot(mdev, sector);
24c4830c 347 hlist_for_each_entry(i, n, slot, collision) {
b411b363
PR
348 if (OVERLAPS) {
349 dev_alert(DEV, "%s[%u] Concurrent local write detected! "
350 "[DISCARD L] new: %llus +%u; "
351 "pending: %llus +%u\n",
352 current->comm, current->pid,
353 (unsigned long long)sector, size,
354 (unsigned long long)i->sector, i->size);
355 goto out_conflict;
356 }
357 }
358
359 if (mdev->ee_hash_s) {
360 /* now, check for overlapping requests with remote origin */
361 BUG_ON(mdev->ee_hash == NULL);
362#undef OVERLAPS
363#define OVERLAPS overlaps(e->sector, e->size, sector, size)
364 slot = ee_hash_slot(mdev, sector);
24c4830c 365 hlist_for_each_entry(e, n, slot, collision) {
b411b363
PR
366 if (OVERLAPS) {
367 dev_alert(DEV, "%s[%u] Concurrent remote write detected!"
368 " [DISCARD L] new: %llus +%u; "
369 "pending: %llus +%u\n",
370 current->comm, current->pid,
371 (unsigned long long)sector, size,
372 (unsigned long long)e->sector, e->size);
373 goto out_conflict;
374 }
375 }
376 }
377#undef OVERLAPS
378
379out_no_conflict:
380 /* this is like it should be, and what we expected.
381 * our users do behave after all... */
382 put_net_conf(mdev);
383 return 0;
384
385out_conflict:
386 put_net_conf(mdev);
387 return 1;
388}
389
390/* obviously this could be coded as many single functions
391 * instead of one huge switch,
392 * or by putting the code directly in the respective locations
393 * (as it has been before).
394 *
395 * but having it this way
396 * enforces that it is all in this one place, where it is easier to audit,
397 * it makes it obvious that whatever "event" "happens" to a request should
398 * happen "atomically" within the req_lock,
399 * and it enforces that we have to think in a very structured manner
400 * about the "events" that may happen to a request during its life time ...
401 */
2a80699f 402int __req_mod(struct drbd_request *req, enum drbd_req_event what,
b411b363
PR
403 struct bio_and_error *m)
404{
405 struct drbd_conf *mdev = req->mdev;
2a80699f 406 int rv = 0;
b411b363
PR
407 m->bio = NULL;
408
b411b363
PR
409 switch (what) {
410 default:
411 dev_err(DEV, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__);
412 break;
413
414 /* does not happen...
415 * initialization done in drbd_req_new
416 case created:
417 break;
418 */
419
420 case to_be_send: /* via network */
421 /* reached via drbd_make_request_common
422 * and from w_read_retry_remote */
423 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
424 req->rq_state |= RQ_NET_PENDING;
425 inc_ap_pending(mdev);
426 break;
427
428 case to_be_submitted: /* locally */
429 /* reached via drbd_make_request_common */
430 D_ASSERT(!(req->rq_state & RQ_LOCAL_MASK));
431 req->rq_state |= RQ_LOCAL_PENDING;
432 break;
433
434 case completed_ok:
2b4dd36f 435 if (req->rq_state & RQ_WRITE)
b411b363
PR
436 mdev->writ_cnt += req->size>>9;
437 else
438 mdev->read_cnt += req->size>>9;
439
440 req->rq_state |= (RQ_LOCAL_COMPLETED|RQ_LOCAL_OK);
441 req->rq_state &= ~RQ_LOCAL_PENDING;
442
cfa03415 443 _req_may_be_done_not_susp(req, m);
b411b363
PR
444 break;
445
2b4dd36f
PR
446 case abort_disk_io:
447 req->rq_state |= RQ_LOCAL_ABORTED;
448 if (req->rq_state & RQ_WRITE)
449 _req_may_be_done_not_susp(req, m);
450 else
451 goto goto_queue_for_net_read;
452 break;
453
b411b363
PR
454 case write_completed_with_error:
455 req->rq_state |= RQ_LOCAL_COMPLETED;
456 req->rq_state &= ~RQ_LOCAL_PENDING;
457
383606e0 458 __drbd_chk_io_error(mdev, DRBD_IO_ERROR);
cfa03415 459 _req_may_be_done_not_susp(req, m);
b411b363
PR
460 break;
461
462 case read_ahead_completed_with_error:
463 /* it is legal to fail READA */
464 req->rq_state |= RQ_LOCAL_COMPLETED;
465 req->rq_state &= ~RQ_LOCAL_PENDING;
cfa03415 466 _req_may_be_done_not_susp(req, m);
b411b363
PR
467 break;
468
469 case read_completed_with_error:
470 drbd_set_out_of_sync(mdev, req->sector, req->size);
471
472 req->rq_state |= RQ_LOCAL_COMPLETED;
473 req->rq_state &= ~RQ_LOCAL_PENDING;
474
1ed25b26
LE
475 if (req->rq_state & RQ_LOCAL_ABORTED) {
476 _req_may_be_done(req, m);
477 break;
478 }
b411b363 479
383606e0 480 __drbd_chk_io_error(mdev, DRBD_IO_ERROR);
b411b363 481
2b4dd36f
PR
482 goto_queue_for_net_read:
483
1ed25b26
LE
484 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
485
d255e5ff
LE
486 /* no point in retrying if there is no good remote data,
487 * or we have no connection. */
488 if (mdev->state.pdsk != D_UP_TO_DATE) {
cfa03415 489 _req_may_be_done_not_susp(req, m);
d255e5ff
LE
490 break;
491 }
492
493 /* _req_mod(req,to_be_send); oops, recursion... */
494 req->rq_state |= RQ_NET_PENDING;
495 inc_ap_pending(mdev);
b411b363
PR
496 /* fall through: _req_mod(req,queue_for_net_read); */
497
498 case queue_for_net_read:
499 /* READ or READA, and
500 * no local disk,
501 * or target area marked as invalid,
502 * or just got an io-error. */
503 /* from drbd_make_request_common
504 * or from bio_endio during read io-error recovery */
505
506 /* so we can verify the handle in the answer packet
507 * corresponding hlist_del is in _req_may_be_done() */
24c4830c 508 hlist_add_head(&req->collision, ar_hash_slot(mdev, req->sector));
b411b363 509
83c38830 510 set_bit(UNPLUG_REMOTE, &mdev->flags);
b411b363
PR
511
512 D_ASSERT(req->rq_state & RQ_NET_PENDING);
513 req->rq_state |= RQ_NET_QUEUED;
514 req->w.cb = (req->rq_state & RQ_LOCAL_MASK)
515 ? w_read_retry_remote
516 : w_send_read_req;
517 drbd_queue_work(&mdev->data.work, &req->w);
518 break;
519
520 case queue_for_net_write:
521 /* assert something? */
522 /* from drbd_make_request_common only */
523
24c4830c 524 hlist_add_head(&req->collision, tl_hash_slot(mdev, req->sector));
b411b363
PR
525 /* corresponding hlist_del is in _req_may_be_done() */
526
527 /* NOTE
528 * In case the req ended up on the transfer log before being
529 * queued on the worker, it could lead to this request being
530 * missed during cleanup after connection loss.
531 * So we have to do both operations here,
532 * within the same lock that protects the transfer log.
533 *
534 * _req_add_to_epoch(req); this has to be after the
535 * _maybe_start_new_epoch(req); which happened in
536 * drbd_make_request_common, because we now may set the bit
537 * again ourselves to close the current epoch.
538 *
539 * Add req to the (now) current epoch (barrier). */
540
83c38830
LE
541 /* otherwise we may lose an unplug, which may cause some remote
542 * io-scheduler timeout to expire, increasing maximum latency,
543 * hurting performance. */
544 set_bit(UNPLUG_REMOTE, &mdev->flags);
545
b411b363
PR
546 /* see drbd_make_request_common,
547 * just after it grabs the req_lock */
548 D_ASSERT(test_bit(CREATE_BARRIER, &mdev->flags) == 0);
549
550 req->epoch = mdev->newest_tle->br_number;
b411b363
PR
551
552 /* increment size of current epoch */
7e602c0a 553 mdev->newest_tle->n_writes++;
b411b363
PR
554
555 /* queue work item to send data */
556 D_ASSERT(req->rq_state & RQ_NET_PENDING);
557 req->rq_state |= RQ_NET_QUEUED;
558 req->w.cb = w_send_dblock;
559 drbd_queue_work(&mdev->data.work, &req->w);
560
561 /* close the epoch, in case it outgrew the limit */
7e602c0a 562 if (mdev->newest_tle->n_writes >= mdev->net_conf->max_epoch_size)
b411b363
PR
563 queue_barrier(mdev);
564
565 break;
566
73a01a18
PR
567 case queue_for_send_oos:
568 req->rq_state |= RQ_NET_QUEUED;
569 req->w.cb = w_send_oos;
570 drbd_queue_work(&mdev->data.work, &req->w);
571 break;
572
41c4a003 573 case read_retry_remote_canceled:
b411b363 574 case send_canceled:
b411b363
PR
575 case send_failed:
576 /* real cleanup will be done from tl_clear. just update flags
577 * so it is no longer marked as on the worker queue */
578 req->rq_state &= ~RQ_NET_QUEUED;
579 /* if we did it right, tl_clear should be scheduled only after
580 * this, so this should not be necessary! */
cfa03415 581 _req_may_be_done_not_susp(req, m);
b411b363
PR
582 break;
583
584 case handed_over_to_network:
585 /* assert something? */
759fbdfb
PR
586 if (bio_data_dir(req->master_bio) == WRITE)
587 atomic_add(req->size>>9, &mdev->ap_in_flight);
588
b411b363
PR
589 if (bio_data_dir(req->master_bio) == WRITE &&
590 mdev->net_conf->wire_protocol == DRBD_PROT_A) {
591 /* this is what is dangerous about protocol A:
592 * pretend it was successfully written on the peer. */
593 if (req->rq_state & RQ_NET_PENDING) {
594 dec_ap_pending(mdev);
595 req->rq_state &= ~RQ_NET_PENDING;
596 req->rq_state |= RQ_NET_OK;
597 } /* else: neg-ack was faster... */
598 /* it is still not yet RQ_NET_DONE until the
599 * corresponding epoch barrier got acked as well,
600 * so we know what to dirty on connection loss */
601 }
602 req->rq_state &= ~RQ_NET_QUEUED;
603 req->rq_state |= RQ_NET_SENT;
6d49e101
LE
604 _req_may_be_done_not_susp(req, m);
605 break;
606
607 case oos_handed_to_network:
608 /* Was not set PENDING, no longer QUEUED, so is now DONE
609 * as far as this connection is concerned. */
610 req->rq_state &= ~RQ_NET_QUEUED;
611 req->rq_state |= RQ_NET_DONE;
cfa03415 612 _req_may_be_done_not_susp(req, m);
b411b363
PR
613 break;
614
615 case connection_lost_while_pending:
616 /* transfer log cleanup after connection loss */
617 /* assert something? */
618 if (req->rq_state & RQ_NET_PENDING)
619 dec_ap_pending(mdev);
620 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
621 req->rq_state |= RQ_NET_DONE;
759fbdfb
PR
622 if (req->rq_state & RQ_NET_SENT && req->rq_state & RQ_WRITE)
623 atomic_sub(req->size>>9, &mdev->ap_in_flight);
624
b411b363
PR
625 /* if it is still queued, we may not complete it here.
626 * it will be canceled soon. */
627 if (!(req->rq_state & RQ_NET_QUEUED))
cfa03415 628 _req_may_be_done(req, m); /* Allowed while state.susp */
b411b363
PR
629 break;
630
b411b363
PR
631 case conflict_discarded_by_peer:
632 /* for discarded conflicting writes of multiple primaries,
633 * there is no need to keep anything in the tl, potential
634 * node crashes are covered by the activity log. */
635 if (what == conflict_discarded_by_peer)
636 dev_alert(DEV, "Got DiscardAck packet %llus +%u!"
637 " DRBD is not a random data generator!\n",
638 (unsigned long long)req->sector, req->size);
639 req->rq_state |= RQ_NET_DONE;
640 /* fall through */
d64957c9 641 case write_acked_by_peer_and_sis:
b411b363 642 case write_acked_by_peer:
d64957c9
LE
643 if (what == write_acked_by_peer_and_sis)
644 req->rq_state |= RQ_NET_SIS;
b411b363 645 /* protocol C; successfully written on peer.
d64957c9 646 * Nothing more to do here.
b411b363 647 * We want to keep the tl in place for all protocols, to cater
d64957c9 648 * for volatile write-back caches on lower level devices. */
b411b363 649
b411b363
PR
650 case recv_acked_by_peer:
651 /* protocol B; pretends to be successfully written on peer.
652 * see also notes above in handed_over_to_network about
653 * protocol != C */
654 req->rq_state |= RQ_NET_OK;
655 D_ASSERT(req->rq_state & RQ_NET_PENDING);
656 dec_ap_pending(mdev);
759fbdfb 657 atomic_sub(req->size>>9, &mdev->ap_in_flight);
b411b363 658 req->rq_state &= ~RQ_NET_PENDING;
cfa03415 659 _req_may_be_done_not_susp(req, m);
b411b363
PR
660 break;
661
662 case neg_acked:
663 /* assert something? */
759fbdfb 664 if (req->rq_state & RQ_NET_PENDING) {
b411b363 665 dec_ap_pending(mdev);
759fbdfb
PR
666 atomic_sub(req->size>>9, &mdev->ap_in_flight);
667 }
b411b363
PR
668 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
669
670 req->rq_state |= RQ_NET_DONE;
cfa03415 671 _req_may_be_done_not_susp(req, m);
b411b363
PR
672 /* else: done by handed_over_to_network */
673 break;
674
265be2d0
PR
675 case fail_frozen_disk_io:
676 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
677 break;
678
cfa03415 679 _req_may_be_done(req, m); /* Allowed while state.susp */
265be2d0
PR
680 break;
681
682 case restart_frozen_disk_io:
683 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
684 break;
685
686 req->rq_state &= ~RQ_LOCAL_COMPLETED;
687
688 rv = MR_READ;
689 if (bio_data_dir(req->master_bio) == WRITE)
690 rv = MR_WRITE;
691
692 get_ldev(mdev);
693 req->w.cb = w_restart_disk_io;
694 drbd_queue_work(&mdev->data.work, &req->w);
695 break;
696
11b58e73
PR
697 case resend:
698 /* If RQ_NET_OK is already set, we got a P_WRITE_ACK or P_RECV_ACK
47ff2d0a 699 before the connection loss (B&C only); only P_BARRIER_ACK was missing.
11b58e73 700 Trowing them out of the TL here by pretending we got a BARRIER_ACK
481c6f50 701 We ensure that the peer was not rebooted */
11b58e73
PR
702 if (!(req->rq_state & RQ_NET_OK)) {
703 if (req->w.cb) {
704 drbd_queue_work(&mdev->data.work, &req->w);
705 rv = req->rq_state & RQ_WRITE ? MR_WRITE : MR_READ;
706 }
707 break;
708 }
709 /* else, fall through to barrier_acked */
710
b411b363 711 case barrier_acked:
288f422e
PR
712 if (!(req->rq_state & RQ_WRITE))
713 break;
714
b411b363
PR
715 if (req->rq_state & RQ_NET_PENDING) {
716 /* barrier came in before all requests have been acked.
717 * this is bad, because if the connection is lost now,
718 * we won't be able to clean them up... */
719 dev_err(DEV, "FIXME (barrier_acked but pending)\n");
b411b363
PR
720 list_move(&req->tl_requests, &mdev->out_of_sequence_requests);
721 }
e636db5b
LE
722 if ((req->rq_state & RQ_NET_MASK) != 0) {
723 req->rq_state |= RQ_NET_DONE;
724 if (mdev->net_conf->wire_protocol == DRBD_PROT_A)
725 atomic_sub(req->size>>9, &mdev->ap_in_flight);
726 }
cfa03415 727 _req_may_be_done(req, m); /* Allowed while state.susp */
b411b363
PR
728 break;
729
730 case data_received:
731 D_ASSERT(req->rq_state & RQ_NET_PENDING);
732 dec_ap_pending(mdev);
733 req->rq_state &= ~RQ_NET_PENDING;
734 req->rq_state |= (RQ_NET_OK|RQ_NET_DONE);
cfa03415 735 _req_may_be_done_not_susp(req, m);
b411b363
PR
736 break;
737 };
2a80699f
PR
738
739 return rv;
b411b363
PR
740}
741
742/* we may do a local read if:
743 * - we are consistent (of course),
744 * - or we are generally inconsistent,
745 * BUT we are still/already IN SYNC for this area.
746 * since size may be bigger than BM_BLOCK_SIZE,
747 * we may need to check several bits.
748 */
749static int drbd_may_do_local_read(struct drbd_conf *mdev, sector_t sector, int size)
750{
751 unsigned long sbnr, ebnr;
752 sector_t esector, nr_sectors;
753
754 if (mdev->state.disk == D_UP_TO_DATE)
755 return 1;
756 if (mdev->state.disk >= D_OUTDATED)
757 return 0;
758 if (mdev->state.disk < D_INCONSISTENT)
759 return 0;
760 /* state.disk == D_INCONSISTENT We will have a look at the BitMap */
761 nr_sectors = drbd_get_capacity(mdev->this_bdev);
762 esector = sector + (size >> 9) - 1;
763
764 D_ASSERT(sector < nr_sectors);
765 D_ASSERT(esector < nr_sectors);
766
767 sbnr = BM_SECT_TO_BIT(sector);
768 ebnr = BM_SECT_TO_BIT(esector);
769
770 return 0 == drbd_bm_count_bits(mdev, sbnr, ebnr);
771}
772
0d5934e3
LE
773static void maybe_pull_ahead(struct drbd_conf *mdev)
774{
775 int congested = 0;
776
777 /* If I don't even have good local storage, we can not reasonably try
778 * to pull ahead of the peer. We also need the local reference to make
779 * sure mdev->act_log is there.
780 * Note: caller has to make sure that net_conf is there.
781 */
782 if (!get_ldev_if_state(mdev, D_UP_TO_DATE))
783 return;
784
785 if (mdev->net_conf->cong_fill &&
786 atomic_read(&mdev->ap_in_flight) >= mdev->net_conf->cong_fill) {
787 dev_info(DEV, "Congestion-fill threshold reached\n");
788 congested = 1;
789 }
790
791 if (mdev->act_log->used >= mdev->net_conf->cong_extents) {
792 dev_info(DEV, "Congestion-extents threshold reached\n");
793 congested = 1;
794 }
795
796 if (congested) {
797 queue_barrier(mdev); /* last barrier, after mirrored writes */
798
799 if (mdev->net_conf->on_congestion == OC_PULL_AHEAD)
800 _drbd_set_state(_NS(mdev, conn, C_AHEAD), 0, NULL);
801 else /*mdev->net_conf->on_congestion == OC_DISCONNECT */
802 _drbd_set_state(_NS(mdev, conn, C_DISCONNECTING), 0, NULL);
803 }
804 put_ldev(mdev);
805}
806
aeda1cd6 807static int drbd_make_request_common(struct drbd_conf *mdev, struct bio *bio, unsigned long start_time)
b411b363
PR
808{
809 const int rw = bio_rw(bio);
810 const int size = bio->bi_size;
811 const sector_t sector = bio->bi_sector;
812 struct drbd_tl_epoch *b = NULL;
813 struct drbd_request *req;
73a01a18 814 int local, remote, send_oos = 0;
b411b363 815 int err = -EIO;
9a25a04c 816 int ret = 0;
fc28845b 817 union drbd_state s;
b411b363
PR
818
819 /* allocate outside of all locks; */
820 req = drbd_req_new(mdev, bio);
821 if (!req) {
822 dec_ap_bio(mdev);
823 /* only pass the error to the upper layers.
824 * if user cannot handle io errors, that's not our business. */
825 dev_err(DEV, "could not kmalloc() req\n");
826 bio_endio(bio, -ENOMEM);
827 return 0;
828 }
aeda1cd6 829 req->start_time = start_time;
b411b363 830
b411b363
PR
831 local = get_ldev(mdev);
832 if (!local) {
833 bio_put(req->private_bio); /* or we get a bio leak */
834 req->private_bio = NULL;
835 }
836 if (rw == WRITE) {
227f052f
LE
837 /* Need to replicate writes. Unless it is an empty flush,
838 * which is better mapped to a DRBD P_BARRIER packet,
839 * also for drbd wire protocol compatibility reasons. */
840 if (unlikely(size == 0)) {
841 /* The only size==0 bios we expect are empty flushes. */
842 D_ASSERT(bio->bi_rw & REQ_FLUSH);
843 remote = 0;
844 } else
845 remote = 1;
b411b363
PR
846 } else {
847 /* READ || READA */
848 if (local) {
849 if (!drbd_may_do_local_read(mdev, sector, size)) {
850 /* we could kick the syncer to
851 * sync this extent asap, wait for
852 * it, then continue locally.
853 * Or just issue the request remotely.
854 */
855 local = 0;
856 bio_put(req->private_bio);
857 req->private_bio = NULL;
858 put_ldev(mdev);
859 }
860 }
861 remote = !local && mdev->state.pdsk >= D_UP_TO_DATE;
862 }
863
864 /* If we have a disk, but a READA request is mapped to remote,
865 * we are R_PRIMARY, D_INCONSISTENT, SyncTarget.
866 * Just fail that READA request right here.
867 *
868 * THINK: maybe fail all READA when not local?
869 * or make this configurable...
870 * if network is slow, READA won't do any good.
871 */
872 if (rw == READA && mdev->state.disk >= D_INCONSISTENT && !local) {
873 err = -EWOULDBLOCK;
874 goto fail_and_free_req;
875 }
876
877 /* For WRITES going to the local disk, grab a reference on the target
878 * extent. This waits for any resync activity in the corresponding
879 * resync extent to finish, and, if necessary, pulls in the target
880 * extent into the activity log, which involves further disk io because
227f052f
LE
881 * of transactional on-disk meta data updates.
882 * Empty flushes don't need to go into the activity log, they can only
883 * flush data for pending writes which are already in there. */
884 if (rw == WRITE && local && size
885 && !test_bit(AL_SUSPENDED, &mdev->flags)) {
0778286a 886 req->rq_state |= RQ_IN_ACT_LOG;
b411b363 887 drbd_al_begin_io(mdev, sector);
0778286a 888 }
b411b363 889
fc28845b
PR
890 s = mdev->state;
891 remote = remote && drbd_should_do_remote(s);
892 send_oos = rw == WRITE && drbd_should_send_oos(s);
3719094e 893 D_ASSERT(!(remote && send_oos));
b411b363 894
fb22c402 895 if (!(local || remote) && !is_susp(mdev->state)) {
fb2c7a10
LE
896 if (__ratelimit(&drbd_ratelimit_state))
897 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
b411b363
PR
898 goto fail_free_complete;
899 }
900
901 /* For WRITE request, we have to make sure that we have an
902 * unused_spare_tle, in case we need to start a new epoch.
903 * I try to be smart and avoid to pre-allocate always "just in case",
904 * but there is a race between testing the bit and pointer outside the
905 * spinlock, and grabbing the spinlock.
906 * if we lost that race, we retry. */
73a01a18 907 if (rw == WRITE && (remote || send_oos) &&
b411b363
PR
908 mdev->unused_spare_tle == NULL &&
909 test_bit(CREATE_BARRIER, &mdev->flags)) {
910allocate_barrier:
911 b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_NOIO);
912 if (!b) {
913 dev_err(DEV, "Failed to alloc barrier.\n");
914 err = -ENOMEM;
915 goto fail_free_complete;
916 }
917 }
918
919 /* GOOD, everything prepared, grab the spin_lock */
920 spin_lock_irq(&mdev->req_lock);
921
fb22c402 922 if (is_susp(mdev->state)) {
9a25a04c 923 /* If we got suspended, use the retry mechanism of
f6d0a8db 924 drbd_make_request() to restart processing of this
2f58dcfc 925 bio. In the next call to drbd_make_request
9a25a04c
PR
926 we sleep in inc_ap_bio() */
927 ret = 1;
928 spin_unlock_irq(&mdev->req_lock);
929 goto fail_free_complete;
930 }
931
73a01a18 932 if (remote || send_oos) {
6a35c45f
PR
933 remote = drbd_should_do_remote(mdev->state);
934 send_oos = rw == WRITE && drbd_should_send_oos(mdev->state);
3719094e 935 D_ASSERT(!(remote && send_oos));
73a01a18
PR
936
937 if (!(remote || send_oos))
b411b363
PR
938 dev_warn(DEV, "lost connection while grabbing the req_lock!\n");
939 if (!(local || remote)) {
940 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
941 spin_unlock_irq(&mdev->req_lock);
942 goto fail_free_complete;
943 }
944 }
945
946 if (b && mdev->unused_spare_tle == NULL) {
947 mdev->unused_spare_tle = b;
948 b = NULL;
949 }
73a01a18 950 if (rw == WRITE && (remote || send_oos) &&
b411b363
PR
951 mdev->unused_spare_tle == NULL &&
952 test_bit(CREATE_BARRIER, &mdev->flags)) {
953 /* someone closed the current epoch
954 * while we were grabbing the spinlock */
955 spin_unlock_irq(&mdev->req_lock);
956 goto allocate_barrier;
957 }
958
959
960 /* Update disk stats */
961 _drbd_start_io_acct(mdev, req, bio);
962
963 /* _maybe_start_new_epoch(mdev);
964 * If we need to generate a write barrier packet, we have to add the
965 * new epoch (barrier) object, and queue the barrier packet for sending,
966 * and queue the req's data after it _within the same lock_, otherwise
967 * we have race conditions were the reorder domains could be mixed up.
968 *
969 * Even read requests may start a new epoch and queue the corresponding
970 * barrier packet. To get the write ordering right, we only have to
971 * make sure that, if this is a write request and it triggered a
972 * barrier packet, this request is queued within the same spinlock. */
73a01a18 973 if ((remote || send_oos) && mdev->unused_spare_tle &&
b411b363
PR
974 test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) {
975 _tl_add_barrier(mdev, mdev->unused_spare_tle);
976 mdev->unused_spare_tle = NULL;
977 } else {
978 D_ASSERT(!(remote && rw == WRITE &&
979 test_bit(CREATE_BARRIER, &mdev->flags)));
980 }
981
982 /* NOTE
983 * Actually, 'local' may be wrong here already, since we may have failed
984 * to write to the meta data, and may become wrong anytime because of
985 * local io-error for some other request, which would lead to us
986 * "detaching" the local disk.
987 *
988 * 'remote' may become wrong any time because the network could fail.
989 *
990 * This is a harmless race condition, though, since it is handled
991 * correctly at the appropriate places; so it just defers the failure
992 * of the respective operation.
993 */
994
995 /* mark them early for readability.
996 * this just sets some state flags. */
997 if (remote)
998 _req_mod(req, to_be_send);
999 if (local)
1000 _req_mod(req, to_be_submitted);
1001
1002 /* check this request on the collision detection hash tables.
1003 * if we have a conflict, just complete it here.
1004 * THINK do we want to check reads, too? (I don't think so...) */
d28fd092
LE
1005 if (rw == WRITE && _req_conflicts(req))
1006 goto fail_conflicting;
288f422e 1007
227f052f
LE
1008 /* no point in adding empty flushes to the transfer log,
1009 * they are mapped to drbd barriers already. */
1010 if (likely(size!=0))
1011 list_add_tail(&req->tl_requests, &mdev->newest_tle->requests);
288f422e 1012
b411b363
PR
1013 /* NOTE remote first: to get the concurrent write detection right,
1014 * we must register the request before start of local IO. */
1015 if (remote) {
1016 /* either WRITE and C_CONNECTED,
1017 * or READ, and no local disk,
1018 * or READ, but not in sync.
1019 */
1020 _req_mod(req, (rw == WRITE)
1021 ? queue_for_net_write
1022 : queue_for_net_read);
1023 }
73a01a18
PR
1024 if (send_oos && drbd_set_out_of_sync(mdev, sector, size))
1025 _req_mod(req, queue_for_send_oos);
67531718 1026
73a01a18 1027 if (remote &&
0d5934e3
LE
1028 mdev->net_conf->on_congestion != OC_BLOCK && mdev->agreed_pro_version >= 96)
1029 maybe_pull_ahead(mdev);
67531718 1030
227f052f
LE
1031 /* If this was a flush, queue a drbd barrier/start a new epoch.
1032 * Unless the current epoch was empty anyways, or we are not currently
1033 * replicating, in which case there is no point. */
1034 if (unlikely(bio->bi_rw & REQ_FLUSH)
1035 && mdev->newest_tle->n_writes
1036 && drbd_should_do_remote(mdev->state))
1037 queue_barrier(mdev);
1038
b411b363
PR
1039 spin_unlock_irq(&mdev->req_lock);
1040 kfree(b); /* if someone else has beaten us to it... */
1041
1042 if (local) {
1043 req->private_bio->bi_bdev = mdev->ldev->backing_bdev;
1044
6719fb03
LE
1045 /* State may have changed since we grabbed our reference on the
1046 * mdev->ldev member. Double check, and short-circuit to endio.
1047 * In case the last activity log transaction failed to get on
1048 * stable storage, and this is a WRITE, we may not even submit
1049 * this bio. */
1050 if (get_ldev(mdev)) {
0cf9d27e
AG
1051 if (drbd_insert_fault(mdev, rw == WRITE ? DRBD_FAULT_DT_WR
1052 : rw == READ ? DRBD_FAULT_DT_RD
1053 : DRBD_FAULT_DT_RA))
6719fb03
LE
1054 bio_endio(req->private_bio, -EIO);
1055 else
1056 generic_make_request(req->private_bio);
1057 put_ldev(mdev);
1058 } else
b411b363 1059 bio_endio(req->private_bio, -EIO);
b411b363
PR
1060 }
1061
b411b363
PR
1062 return 0;
1063
d28fd092
LE
1064fail_conflicting:
1065 /* this is a conflicting request.
1066 * even though it may have been only _partially_
1067 * overlapping with one of the currently pending requests,
1068 * without even submitting or sending it, we will
1069 * pretend that it was successfully served right now.
1070 */
1071 _drbd_end_io_acct(mdev, req);
1072 spin_unlock_irq(&mdev->req_lock);
1073 if (remote)
1074 dec_ap_pending(mdev);
1075 /* THINK: do we want to fail it (-EIO), or pretend success?
1076 * this pretends success. */
1077 err = 0;
1078
b411b363 1079fail_free_complete:
76727f68 1080 if (req->rq_state & RQ_IN_ACT_LOG)
b411b363
PR
1081 drbd_al_complete_io(mdev, sector);
1082fail_and_free_req:
1083 if (local) {
1084 bio_put(req->private_bio);
1085 req->private_bio = NULL;
1086 put_ldev(mdev);
1087 }
9a25a04c
PR
1088 if (!ret)
1089 bio_endio(bio, err);
1090
b411b363
PR
1091 drbd_req_free(req);
1092 dec_ap_bio(mdev);
1093 kfree(b);
1094
9a25a04c 1095 return ret;
b411b363
PR
1096}
1097
1098/* helper function for drbd_make_request
1099 * if we can determine just by the mdev (state) that this request will fail,
1100 * return 1
1101 * otherwise return 0
1102 */
1103static int drbd_fail_request_early(struct drbd_conf *mdev, int is_write)
1104{
b411b363
PR
1105 if (mdev->state.role != R_PRIMARY &&
1106 (!allow_oos || is_write)) {
1107 if (__ratelimit(&drbd_ratelimit_state)) {
1108 dev_err(DEV, "Process %s[%u] tried to %s; "
1109 "since we are not in Primary state, "
1110 "we cannot allow this\n",
1111 current->comm, current->pid,
1112 is_write ? "WRITE" : "READ");
1113 }
1114 return 1;
1115 }
1116
b411b363
PR
1117 return 0;
1118}
1119
5a7bbad2 1120void drbd_make_request(struct request_queue *q, struct bio *bio)
b411b363
PR
1121{
1122 unsigned int s_enr, e_enr;
1123 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
aeda1cd6 1124 unsigned long start_time;
b411b363
PR
1125
1126 if (drbd_fail_request_early(mdev, bio_data_dir(bio) & WRITE)) {
1127 bio_endio(bio, -EPERM);
5a7bbad2 1128 return;
b411b363
PR
1129 }
1130
aeda1cd6
PR
1131 start_time = jiffies;
1132
b411b363
PR
1133 /*
1134 * what we "blindly" assume:
1135 */
b411b363 1136 D_ASSERT((bio->bi_size & 0x1ff) == 0);
b411b363
PR
1137
1138 /* to make some things easier, force alignment of requests within the
1139 * granularity of our hash tables */
1140 s_enr = bio->bi_sector >> HT_SHIFT;
a73ff323 1141 e_enr = bio->bi_size ? (bio->bi_sector+(bio->bi_size>>9)-1) >> HT_SHIFT : s_enr;
b411b363
PR
1142
1143 if (likely(s_enr == e_enr)) {
f6d0a8db
PR
1144 do {
1145 inc_ap_bio(mdev, 1);
1146 } while (drbd_make_request_common(mdev, bio, start_time));
5a7bbad2 1147 return;
b411b363
PR
1148 }
1149
1150 /* can this bio be split generically?
1151 * Maybe add our own split-arbitrary-bios function. */
1816a2b4 1152 if (bio->bi_vcnt != 1 || bio->bi_idx != 0 || bio->bi_size > DRBD_MAX_BIO_SIZE) {
b411b363
PR
1153 /* rather error out here than BUG in bio_split */
1154 dev_err(DEV, "bio would need to, but cannot, be split: "
1155 "(vcnt=%u,idx=%u,size=%u,sector=%llu)\n",
1156 bio->bi_vcnt, bio->bi_idx, bio->bi_size,
1157 (unsigned long long)bio->bi_sector);
1158 bio_endio(bio, -EINVAL);
1159 } else {
1160 /* This bio crosses some boundary, so we have to split it. */
1161 struct bio_pair *bp;
1162 /* works for the "do not cross hash slot boundaries" case
1163 * e.g. sector 262269, size 4096
1164 * s_enr = 262269 >> 6 = 4097
1165 * e_enr = (262269+8-1) >> 6 = 4098
1166 * HT_SHIFT = 6
1167 * sps = 64, mask = 63
1168 * first_sectors = 64 - (262269 & 63) = 3
1169 */
1170 const sector_t sect = bio->bi_sector;
1171 const int sps = 1 << HT_SHIFT; /* sectors per slot */
1172 const int mask = sps - 1;
1173 const sector_t first_sectors = sps - (sect & mask);
03567812 1174 bp = bio_split(bio, first_sectors);
b411b363
PR
1175
1176 /* we need to get a "reference count" (ap_bio_cnt)
1177 * to avoid races with the disconnect/reconnect/suspend code.
9a25a04c 1178 * In case we need to split the bio here, we need to get three references
b411b363
PR
1179 * atomically, otherwise we might deadlock when trying to submit the
1180 * second one! */
9a25a04c 1181 inc_ap_bio(mdev, 3);
b411b363
PR
1182
1183 D_ASSERT(e_enr == s_enr + 1);
1184
aeda1cd6 1185 while (drbd_make_request_common(mdev, &bp->bio1, start_time))
9a25a04c
PR
1186 inc_ap_bio(mdev, 1);
1187
aeda1cd6 1188 while (drbd_make_request_common(mdev, &bp->bio2, start_time))
9a25a04c
PR
1189 inc_ap_bio(mdev, 1);
1190
1191 dec_ap_bio(mdev);
1192
b411b363
PR
1193 bio_pair_release(bp);
1194 }
b411b363
PR
1195}
1196
1197/* This is called by bio_add_page(). With this function we reduce
1816a2b4 1198 * the number of BIOs that span over multiple DRBD_MAX_BIO_SIZEs
b411b363
PR
1199 * units (was AL_EXTENTs).
1200 *
1201 * we do the calculation within the lower 32bit of the byte offsets,
1202 * since we don't care for actual offset, but only check whether it
1203 * would cross "activity log extent" boundaries.
1204 *
1205 * As long as the BIO is empty we have to allow at least one bvec,
1206 * regardless of size and offset. so the resulting bio may still
1207 * cross extent boundaries. those are dealt with (bio_split) in
2f58dcfc 1208 * drbd_make_request.
b411b363
PR
1209 */
1210int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec)
1211{
1212 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
1213 unsigned int bio_offset =
1214 (unsigned int)bvm->bi_sector << 9; /* 32 bit */
1215 unsigned int bio_size = bvm->bi_size;
1216 int limit, backing_limit;
1217
1816a2b4
LE
1218 limit = DRBD_MAX_BIO_SIZE
1219 - ((bio_offset & (DRBD_MAX_BIO_SIZE-1)) + bio_size);
b411b363
PR
1220 if (limit < 0)
1221 limit = 0;
1222 if (bio_size == 0) {
1223 if (limit <= bvec->bv_len)
1224 limit = bvec->bv_len;
1225 } else if (limit && get_ldev(mdev)) {
1226 struct request_queue * const b =
1227 mdev->ldev->backing_bdev->bd_disk->queue;
a1c88d0d 1228 if (b->merge_bvec_fn) {
b411b363
PR
1229 backing_limit = b->merge_bvec_fn(b, bvm, bvec);
1230 limit = min(limit, backing_limit);
1231 }
1232 put_ldev(mdev);
1233 }
1234 return limit;
1235}
7fde2be9
PR
1236
1237void request_timer_fn(unsigned long data)
1238{
1239 struct drbd_conf *mdev = (struct drbd_conf *) data;
1240 struct drbd_request *req; /* oldest request */
1241 struct list_head *le;
dfa8bedb 1242 unsigned long ent = 0, dt = 0, et, nt; /* effective timeout = ko_count * timeout */
ba280c09 1243 unsigned long now;
7fde2be9
PR
1244
1245 if (get_net_conf(mdev)) {
ba280c09
LE
1246 if (mdev->state.conn >= C_WF_REPORT_PARAMS)
1247 ent = mdev->net_conf->timeout*HZ/10
1248 * mdev->net_conf->ko_count;
7fde2be9
PR
1249 put_net_conf(mdev);
1250 }
ba280c09 1251 if (get_ldev(mdev)) { /* implicit state.disk >= D_INCONSISTENT */
dfa8bedb
PR
1252 dt = mdev->ldev->dc.disk_timeout * HZ / 10;
1253 put_ldev(mdev);
1254 }
1255 et = min_not_zero(dt, ent);
1256
ba280c09 1257 if (!et)
7fde2be9
PR
1258 return; /* Recurring timer stopped */
1259
ba280c09
LE
1260 now = jiffies;
1261
7fde2be9
PR
1262 spin_lock_irq(&mdev->req_lock);
1263 le = &mdev->oldest_tle->requests;
1264 if (list_empty(le)) {
1265 spin_unlock_irq(&mdev->req_lock);
ba280c09 1266 mod_timer(&mdev->request_timer, now + et);
7fde2be9
PR
1267 return;
1268 }
1269
1270 le = le->prev;
1271 req = list_entry(le, struct drbd_request, tl_requests);
ba280c09
LE
1272
1273 /* The request is considered timed out, if
1274 * - we have some effective timeout from the configuration,
1275 * with above state restrictions applied,
1276 * - the oldest request is waiting for a response from the network
1277 * resp. the local disk,
1278 * - the oldest request is in fact older than the effective timeout,
1279 * - the connection was established (resp. disk was attached)
1280 * for longer than the timeout already.
1281 * Note that for 32bit jiffies and very stable connections/disks,
1282 * we may have a wrap around, which is catched by
1283 * !time_in_range(now, last_..._jif, last_..._jif + timeout).
1284 *
1285 * Side effect: once per 32bit wrap-around interval, which means every
1286 * ~198 days with 250 HZ, we have a window where the timeout would need
1287 * to expire twice (worst case) to become effective. Good enough.
1288 */
1289 if (ent && req->rq_state & RQ_NET_PENDING &&
1290 time_after(now, req->start_time + ent) &&
1291 !time_in_range(now, mdev->last_reconnect_jif, mdev->last_reconnect_jif + ent)) {
1292 dev_warn(DEV, "Remote failed to finish a request within ko-count * timeout\n");
1293 _drbd_set_state(_NS(mdev, conn, C_TIMEOUT), CS_VERBOSE | CS_HARD, NULL);
7fde2be9 1294 }
ba280c09
LE
1295 if (dt && req->rq_state & RQ_LOCAL_PENDING &&
1296 time_after(now, req->start_time + dt) &&
1297 !time_in_range(now, mdev->last_reattach_jif, mdev->last_reattach_jif + dt)) {
1298 dev_warn(DEV, "Local backing device failed to meet the disk-timeout\n");
383606e0 1299 __drbd_chk_io_error(mdev, DRBD_FORCE_DETACH);
dfa8bedb 1300 }
ba280c09 1301 nt = (time_after(now, req->start_time + et) ? now : req->start_time) + et;
7fde2be9 1302 spin_unlock_irq(&mdev->req_lock);
dfa8bedb 1303 mod_timer(&mdev->request_timer, nt);
7fde2be9 1304}
This page took 0.18414 seconds and 5 git commands to generate.