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