blob: 25fa87c95a10ea8d99938b0493fa01c03efb22d3 [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;
73 drbd_clear_interval(&req->i);
74 req->i.sector = bio_src->bi_sector;
75 req->i.size = bio_src->bi_size;
76 INIT_LIST_HEAD(&req->tl_requests);
77 INIT_LIST_HEAD(&req->w.list);
78
79 return req;
80}
81
82static void drbd_req_free(struct drbd_request *req)
83{
84 mempool_free(req, drbd_request_mempool);
85}
86
87/* rw is bio_data_dir(), only READ or WRITE */
Philipp Reisnerb411b362009-09-25 16:07:19 -070088static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
89{
90 const unsigned long s = req->rq_state;
Philipp Reisner288f4222010-05-27 15:07:43 +020091
92 /* remove it from the transfer log.
93 * well, only if it had been there in the first
94 * place... if it had not (local only or conflicting
95 * and never sent), it should still be "empty" as
96 * initialized in drbd_req_new(), so we can list_del() it
97 * here unconditionally */
98 list_del(&req->tl_requests);
99
Philipp Reisnerb411b362009-09-25 16:07:19 -0700100 /* if it was a write, we may have to set the corresponding
101 * bit(s) out-of-sync first. If it had a local part, we need to
102 * release the reference to the activity log. */
103 if (rw == WRITE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700104 /* Set out-of-sync unless both OK flags are set
105 * (local only or remote failed).
106 * Other places where we set out-of-sync:
107 * READ with local io-error */
108 if (!(s & RQ_NET_OK) || !(s & RQ_LOCAL_OK))
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100109 drbd_set_out_of_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700110
111 if ((s & RQ_NET_OK) && (s & RQ_LOCAL_OK) && (s & RQ_NET_SIS))
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100112 drbd_set_in_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700113
114 /* one might be tempted to move the drbd_al_complete_io
115 * to the local io completion callback drbd_endio_pri.
116 * but, if this was a mirror write, we may only
117 * drbd_al_complete_io after this is RQ_NET_DONE,
118 * otherwise the extent could be dropped from the al
119 * before it has actually been written on the peer.
120 * if we crash before our peer knows about the request,
121 * but after the extent has been dropped from the al,
122 * we would forget to resync the corresponding extent.
123 */
124 if (s & RQ_LOCAL_MASK) {
125 if (get_ldev_if_state(mdev, D_FAILED)) {
Philipp Reisner07782862010-08-31 12:00:50 +0200126 if (s & RQ_IN_ACT_LOG)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100127 drbd_al_complete_io(mdev, req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700128 put_ldev(mdev);
129 } else if (__ratelimit(&drbd_ratelimit_state)) {
130 dev_warn(DEV, "Should have called drbd_al_complete_io(, %llu), "
131 "but my Disk seems to have failed :(\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100132 (unsigned long long) req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700133 }
134 }
135 }
136
Philipp Reisner32fa7e92010-05-26 17:13:18 +0200137 drbd_req_free(req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700138}
139
140static void queue_barrier(struct drbd_conf *mdev)
141{
142 struct drbd_tl_epoch *b;
143
144 /* We are within the req_lock. Once we queued the barrier for sending,
145 * we set the CREATE_BARRIER bit. It is cleared as soon as a new
146 * barrier/epoch object is added. This is the only place this bit is
147 * set. It indicates that the barrier for this epoch is already queued,
148 * and no new epoch has been created yet. */
149 if (test_bit(CREATE_BARRIER, &mdev->flags))
150 return;
151
Philipp Reisner87eeee42011-01-19 14:16:30 +0100152 b = mdev->tconn->newest_tle;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700153 b->w.cb = w_send_barrier;
154 /* inc_ap_pending done here, so we won't
155 * get imbalanced on connection loss.
156 * dec_ap_pending will be done in got_BarrierAck
157 * or (on connection loss) in tl_clear. */
158 inc_ap_pending(mdev);
Philipp Reisnere42325a2011-01-19 13:55:45 +0100159 drbd_queue_work(&mdev->tconn->data.work, &b->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700160 set_bit(CREATE_BARRIER, &mdev->flags);
161}
162
163static void _about_to_complete_local_write(struct drbd_conf *mdev,
164 struct drbd_request *req)
165{
166 const unsigned long s = req->rq_state;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700167
Lars Ellenberg8a3c1042010-12-05 14:11:14 +0100168 /* Before we can signal completion to the upper layers,
169 * we may need to close the current epoch.
170 * We can skip this, if this request has not even been sent, because we
171 * did not have a fully established connection yet/anymore, during
172 * bitmap exchange, or while we are C_AHEAD due to congestion policy.
173 */
174 if (mdev->state.conn >= C_CONNECTED &&
175 (s & RQ_NET_SENT) != 0 &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100176 req->epoch == mdev->tconn->newest_tle->br_number)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700177 queue_barrier(mdev);
178
179 /* we need to do the conflict detection stuff,
Andreas Gruenbacherbb3bfe92011-01-21 15:59:23 +0100180 * if the epoch_entries tree is non-empty and
181 * this request has completed on the network */
182 if ((s & RQ_NET_DONE) && !RB_EMPTY_ROOT(&mdev->epoch_entries)) {
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100183 const sector_t sector = req->i.sector;
184 const int size = req->i.size;
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100185 struct drbd_interval *i;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700186
187 /* ASSERT:
188 * there must be no conflicting requests, since
189 * they must have been failed on the spot */
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100190
191 i = drbd_find_overlap(&mdev->write_requests, sector, size);
192 if (i) {
193 struct drbd_request *req2 =
194 container_of(i, struct drbd_request, i);
195
196 dev_alert(DEV, "LOGIC BUG: completed: %p %llus +%u; "
197 "other: %p %llus +%u\n",
198 req, (unsigned long long)sector, size,
199 i, (unsigned long long)req2->i.sector, req2->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700200 }
201
202 /* maybe "wake" those conflicting epoch entries
203 * that wait for this request to finish.
204 *
205 * currently, there can be only _one_ such ee
206 * (well, or some more, which would be pending
207 * P_DISCARD_ACK not yet sent by the asender...),
208 * since we block the receiver thread upon the
209 * first conflict detection, which will wait on
210 * misc_wait. maybe we want to assert that?
211 *
212 * anyways, if we found one,
213 * we just have to do a wake_up. */
Andreas Gruenbacher8b946252011-01-20 15:23:07 +0100214 i = drbd_find_overlap(&mdev->epoch_entries, sector, size);
215 if (i)
216 wake_up(&mdev->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700217 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700218}
219
220void complete_master_bio(struct drbd_conf *mdev,
221 struct bio_and_error *m)
222{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700223 bio_endio(m->bio, m->error);
224 dec_ap_bio(mdev);
225}
226
227/* Helper for __req_mod().
228 * Set m->bio to the master bio, if it is fit to be completed,
229 * or leave it alone (it is initialized to NULL in __req_mod),
230 * if it has already been completed, or cannot be completed yet.
231 * If m->bio is set, the error status to be returned is placed in m->error.
232 */
233void _req_may_be_done(struct drbd_request *req, struct bio_and_error *m)
234{
235 const unsigned long s = req->rq_state;
236 struct drbd_conf *mdev = req->mdev;
237 /* only WRITES may end up here without a master bio (on barrier ack) */
238 int rw = req->master_bio ? bio_data_dir(req->master_bio) : WRITE;
239
Philipp Reisnerb411b362009-09-25 16:07:19 -0700240 /* we must not complete the master bio, while it is
241 * still being processed by _drbd_send_zc_bio (drbd_send_dblock)
242 * not yet acknowledged by the peer
243 * not yet completed by the local io subsystem
244 * these flags may get cleared in any order by
245 * the worker,
246 * the receiver,
247 * the bio_endio completion callbacks.
248 */
249 if (s & RQ_NET_QUEUED)
250 return;
251 if (s & RQ_NET_PENDING)
252 return;
253 if (s & RQ_LOCAL_PENDING)
254 return;
255
256 if (req->master_bio) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100257 /* this is DATA_RECEIVED (remote read)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700258 * or protocol C P_WRITE_ACK
259 * or protocol B P_RECV_ACK
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100260 * or protocol A "HANDED_OVER_TO_NETWORK" (SendAck)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700261 * or canceled or failed,
262 * or killed from the transfer log due to connection loss.
263 */
264
265 /*
266 * figure out whether to report success or failure.
267 *
268 * report success when at least one of the operations succeeded.
269 * or, to put the other way,
270 * only report failure, when both operations failed.
271 *
272 * what to do about the failures is handled elsewhere.
273 * what we need to do here is just: complete the master_bio.
274 *
275 * local completion error, if any, has been stored as ERR_PTR
276 * in private_bio within drbd_endio_pri.
277 */
278 int ok = (s & RQ_LOCAL_OK) || (s & RQ_NET_OK);
279 int error = PTR_ERR(req->private_bio);
280
281 /* remove the request from the conflict detection
282 * respective block_id verification hash */
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100283 if (!drbd_interval_empty(&req->i)) {
284 struct rb_root *root;
285
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100286 if (rw == WRITE)
287 root = &mdev->write_requests;
288 else
289 root = &mdev->read_requests;
290 drbd_remove_interval(root, &req->i);
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100291 } else
Philipp Reisner8825f7c2010-10-21 17:21:19 +0200292 D_ASSERT((s & (RQ_NET_MASK & ~RQ_NET_DONE)) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700293
294 /* for writes we need to do some extra housekeeping */
295 if (rw == WRITE)
296 _about_to_complete_local_write(mdev, req);
297
298 /* Update disk stats */
299 _drbd_end_io_acct(mdev, req);
300
301 m->error = ok ? 0 : (error ?: -EIO);
302 m->bio = req->master_bio;
303 req->master_bio = NULL;
304 }
305
306 if ((s & RQ_NET_MASK) == 0 || (s & RQ_NET_DONE)) {
307 /* this is disconnected (local only) operation,
308 * or protocol C P_WRITE_ACK,
309 * or protocol A or B P_BARRIER_ACK,
310 * or killed from the transfer log due to connection loss. */
311 _req_is_done(mdev, req, rw);
312 }
313 /* else: network part and not DONE yet. that is
314 * protocol A or B, barrier ack still pending... */
315}
316
Philipp Reisnercfa03412010-06-23 17:18:51 +0200317static void _req_may_be_done_not_susp(struct drbd_request *req, struct bio_and_error *m)
318{
319 struct drbd_conf *mdev = req->mdev;
320
Philipp Reisnerfb22c402010-09-08 23:20:21 +0200321 if (!is_susp(mdev->state))
Philipp Reisnercfa03412010-06-23 17:18:51 +0200322 _req_may_be_done(req, m);
323}
324
Philipp Reisnerb411b362009-09-25 16:07:19 -0700325/*
326 * checks whether there was an overlapping request
327 * or ee already registered.
328 *
329 * if so, return 1, in which case this request is completed on the spot,
330 * without ever being submitted or send.
331 *
332 * return 0 if it is ok to submit this request.
333 *
334 * NOTE:
335 * paranoia: assume something above us is broken, and issues different write
336 * requests for the same block simultaneously...
337 *
338 * To ensure these won't be reordered differently on both nodes, resulting in
339 * diverging data sets, we discard the later one(s). Not that this is supposed
340 * to happen, but this is the rationale why we also have to check for
341 * conflicting requests with local origin, and why we have to do so regardless
342 * of whether we allowed multiple primaries.
343 *
Andreas Gruenbacherbb3bfe92011-01-21 15:59:23 +0100344 * In case we only have one primary, the epoch_entries tree is empty.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700345 */
346static int _req_conflicts(struct drbd_request *req)
347{
348 struct drbd_conf *mdev = req->mdev;
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100349 const sector_t sector = req->i.sector;
350 const int size = req->i.size;
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100351 struct drbd_interval *i;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700352
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100353 D_ASSERT(drbd_interval_empty(&req->i));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700354
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +0100355 if (!get_net_conf(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700356 return 0;
357
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100358 i = drbd_find_overlap(&mdev->write_requests, sector, size);
359 if (i) {
360 struct drbd_request *req2 =
361 container_of(i, struct drbd_request, i);
362
363 dev_alert(DEV, "%s[%u] Concurrent local write detected! "
364 "[DISCARD L] new: %llus +%u; "
365 "pending: %llus +%u\n",
366 current->comm, current->pid,
367 (unsigned long long)sector, size,
368 (unsigned long long)req2->i.sector, req2->i.size);
369 goto out_conflict;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700370 }
371
Andreas Gruenbacherbb3bfe92011-01-21 15:59:23 +0100372 if (!RB_EMPTY_ROOT(&mdev->epoch_entries)) {
373 /* check for overlapping requests with remote origin */
Andreas Gruenbacher8b946252011-01-20 15:23:07 +0100374 i = drbd_find_overlap(&mdev->epoch_entries, sector, size);
375 if (i) {
376 struct drbd_epoch_entry *e =
377 container_of(i, struct drbd_epoch_entry, i);
378
379 dev_alert(DEV, "%s[%u] Concurrent remote write detected!"
380 " [DISCARD L] new: %llus +%u; "
381 "pending: %llus +%u\n",
382 current->comm, current->pid,
383 (unsigned long long)sector, size,
384 (unsigned long long)e->i.sector, e->i.size);
385 goto out_conflict;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700386 }
387 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700388
Philipp Reisnerb411b362009-09-25 16:07:19 -0700389 /* this is like it should be, and what we expected.
390 * our users do behave after all... */
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +0100391 put_net_conf(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700392 return 0;
393
394out_conflict:
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +0100395 put_net_conf(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700396 return 1;
397}
398
399/* obviously this could be coded as many single functions
400 * instead of one huge switch,
401 * or by putting the code directly in the respective locations
402 * (as it has been before).
403 *
404 * but having it this way
405 * enforces that it is all in this one place, where it is easier to audit,
406 * it makes it obvious that whatever "event" "happens" to a request should
407 * happen "atomically" within the req_lock,
408 * and it enforces that we have to think in a very structured manner
409 * about the "events" that may happen to a request during its life time ...
410 */
Philipp Reisner2a806992010-06-09 14:07:43 +0200411int __req_mod(struct drbd_request *req, enum drbd_req_event what,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700412 struct bio_and_error *m)
413{
414 struct drbd_conf *mdev = req->mdev;
Philipp Reisner2a806992010-06-09 14:07:43 +0200415 int rv = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700416 m->bio = NULL;
417
Philipp Reisnerb411b362009-09-25 16:07:19 -0700418 switch (what) {
419 default:
420 dev_err(DEV, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__);
421 break;
422
423 /* does not happen...
424 * initialization done in drbd_req_new
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100425 case CREATED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700426 break;
427 */
428
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100429 case TO_BE_SENT: /* via network */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700430 /* reached via drbd_make_request_common
431 * and from w_read_retry_remote */
432 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
433 req->rq_state |= RQ_NET_PENDING;
434 inc_ap_pending(mdev);
435 break;
436
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100437 case TO_BE_SUBMITTED: /* locally */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700438 /* reached via drbd_make_request_common */
439 D_ASSERT(!(req->rq_state & RQ_LOCAL_MASK));
440 req->rq_state |= RQ_LOCAL_PENDING;
441 break;
442
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100443 case COMPLETED_OK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700444 if (bio_data_dir(req->master_bio) == WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100445 mdev->writ_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700446 else
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100447 mdev->read_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700448
449 req->rq_state |= (RQ_LOCAL_COMPLETED|RQ_LOCAL_OK);
450 req->rq_state &= ~RQ_LOCAL_PENDING;
451
Philipp Reisnercfa03412010-06-23 17:18:51 +0200452 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700453 put_ldev(mdev);
454 break;
455
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100456 case WRITE_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700457 req->rq_state |= RQ_LOCAL_COMPLETED;
458 req->rq_state &= ~RQ_LOCAL_PENDING;
459
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100460 __drbd_chk_io_error(mdev, false);
Philipp Reisnercfa03412010-06-23 17:18:51 +0200461 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700462 put_ldev(mdev);
463 break;
464
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100465 case READ_AHEAD_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700466 /* it is legal to fail READA */
467 req->rq_state |= RQ_LOCAL_COMPLETED;
468 req->rq_state &= ~RQ_LOCAL_PENDING;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200469 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700470 put_ldev(mdev);
471 break;
472
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100473 case READ_COMPLETED_WITH_ERROR:
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100474 drbd_set_out_of_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700475
476 req->rq_state |= RQ_LOCAL_COMPLETED;
477 req->rq_state &= ~RQ_LOCAL_PENDING;
478
Philipp Reisnerb411b362009-09-25 16:07:19 -0700479 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700480
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100481 __drbd_chk_io_error(mdev, false);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700482 put_ldev(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700483
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200484 /* no point in retrying if there is no good remote data,
485 * or we have no connection. */
486 if (mdev->state.pdsk != D_UP_TO_DATE) {
Philipp Reisnercfa03412010-06-23 17:18:51 +0200487 _req_may_be_done_not_susp(req, m);
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200488 break;
489 }
490
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100491 /* _req_mod(req,TO_BE_SENT); oops, recursion... */
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200492 req->rq_state |= RQ_NET_PENDING;
493 inc_ap_pending(mdev);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100494 /* fall through: _req_mod(req,QUEUE_FOR_NET_READ); */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700495
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100496 case QUEUE_FOR_NET_READ:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700497 /* READ or READA, and
498 * no local disk,
499 * or target area marked as invalid,
500 * or just got an io-error. */
501 /* from drbd_make_request_common
502 * or from bio_endio during read io-error recovery */
503
504 /* so we can verify the handle in the answer packet
505 * corresponding hlist_del is in _req_may_be_done() */
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100506 drbd_insert_interval(&mdev->read_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700507
Lars Ellenberg83c38832009-11-03 02:22:06 +0100508 set_bit(UNPLUG_REMOTE, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700509
510 D_ASSERT(req->rq_state & RQ_NET_PENDING);
511 req->rq_state |= RQ_NET_QUEUED;
512 req->w.cb = (req->rq_state & RQ_LOCAL_MASK)
513 ? w_read_retry_remote
514 : w_send_read_req;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100515 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700516 break;
517
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100518 case QUEUE_FOR_NET_WRITE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700519 /* assert something? */
520 /* from drbd_make_request_common only */
521
Philipp Reisnerb411b362009-09-25 16:07:19 -0700522 /* corresponding hlist_del is in _req_may_be_done() */
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100523 drbd_insert_interval(&mdev->write_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700524
525 /* NOTE
526 * In case the req ended up on the transfer log before being
527 * queued on the worker, it could lead to this request being
528 * missed during cleanup after connection loss.
529 * So we have to do both operations here,
530 * within the same lock that protects the transfer log.
531 *
532 * _req_add_to_epoch(req); this has to be after the
533 * _maybe_start_new_epoch(req); which happened in
534 * drbd_make_request_common, because we now may set the bit
535 * again ourselves to close the current epoch.
536 *
537 * Add req to the (now) current epoch (barrier). */
538
Lars Ellenberg83c38832009-11-03 02:22:06 +0100539 /* otherwise we may lose an unplug, which may cause some remote
540 * io-scheduler timeout to expire, increasing maximum latency,
541 * hurting performance. */
542 set_bit(UNPLUG_REMOTE, &mdev->flags);
543
Philipp Reisnerb411b362009-09-25 16:07:19 -0700544 /* see drbd_make_request_common,
545 * just after it grabs the req_lock */
546 D_ASSERT(test_bit(CREATE_BARRIER, &mdev->flags) == 0);
547
Philipp Reisner87eeee42011-01-19 14:16:30 +0100548 req->epoch = mdev->tconn->newest_tle->br_number;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700549
550 /* increment size of current epoch */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100551 mdev->tconn->newest_tle->n_writes++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700552
553 /* queue work item to send data */
554 D_ASSERT(req->rq_state & RQ_NET_PENDING);
555 req->rq_state |= RQ_NET_QUEUED;
556 req->w.cb = w_send_dblock;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100557 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700558
559 /* close the epoch, in case it outgrew the limit */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100560 if (mdev->tconn->newest_tle->n_writes >= mdev->tconn->net_conf->max_epoch_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700561 queue_barrier(mdev);
562
563 break;
564
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100565 case QUEUE_FOR_SEND_OOS:
Philipp Reisner73a01a12010-10-27 14:33:00 +0200566 req->rq_state |= RQ_NET_QUEUED;
567 req->w.cb = w_send_oos;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100568 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200569 break;
570
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100571 case OOS_HANDED_TO_NETWORK:
Philipp Reisner73a01a12010-10-27 14:33:00 +0200572 /* actually the same */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100573 case SEND_CANCELED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700574 /* treat it the same */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100575 case SEND_FAILED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700576 /* 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! */
Philipp Reisnercfa03412010-06-23 17:18:51 +0200581 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700582 break;
583
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100584 case HANDED_OVER_TO_NETWORK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700585 /* assert something? */
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200586 if (bio_data_dir(req->master_bio) == WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100587 atomic_add(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200588
Philipp Reisnerb411b362009-09-25 16:07:19 -0700589 if (bio_data_dir(req->master_bio) == WRITE &&
Philipp Reisner89e58e72011-01-19 13:12:45 +0100590 mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700591 /* 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;
604 /* because _drbd_send_zc_bio could sleep, and may want to
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100605 * dereference the bio even after the "WRITE_ACKED_BY_PEER" and
606 * "COMPLETED_OK" events came in, once we return from
Philipp Reisnerb411b362009-09-25 16:07:19 -0700607 * _drbd_send_zc_bio (drbd_send_dblock), we have to check
608 * whether it is done already, and end it. */
Philipp Reisnercfa03412010-06-23 17:18:51 +0200609 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700610 break;
611
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100612 case READ_RETRY_REMOTE_CANCELED:
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200613 req->rq_state &= ~RQ_NET_QUEUED;
614 /* fall through, in case we raced with drbd_disconnect */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100615 case CONNECTION_LOST_WHILE_PENDING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700616 /* 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;
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200622 if (req->rq_state & RQ_NET_SENT && req->rq_state & RQ_WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100623 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200624
Philipp Reisnerb411b362009-09-25 16:07:19 -0700625 /* 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))
Philipp Reisnercfa03412010-06-23 17:18:51 +0200628 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700629 break;
630
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100631 case WRITE_ACKED_BY_PEER_AND_SIS:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700632 req->rq_state |= RQ_NET_SIS;
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100633 case CONFLICT_DISCARDED_BY_PEER:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700634 /* for discarded conflicting writes of multiple primaries,
635 * there is no need to keep anything in the tl, potential
636 * node crashes are covered by the activity log. */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100637 if (what == CONFLICT_DISCARDED_BY_PEER)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700638 dev_alert(DEV, "Got DiscardAck packet %llus +%u!"
639 " DRBD is not a random data generator!\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100640 (unsigned long long)req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700641 req->rq_state |= RQ_NET_DONE;
642 /* fall through */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100643 case WRITE_ACKED_BY_PEER:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700644 /* protocol C; successfully written on peer.
645 * Nothing to do here.
646 * We want to keep the tl in place for all protocols, to cater
647 * for volatile write-back caches on lower level devices.
648 *
649 * A barrier request is expected to have forced all prior
650 * requests onto stable storage, so completion of a barrier
651 * request could set NET_DONE right here, and not wait for the
652 * P_BARRIER_ACK, but that is an unnecessary optimization. */
653
654 /* this makes it effectively the same as for: */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100655 case RECV_ACKED_BY_PEER:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700656 /* protocol B; pretends to be successfully written on peer.
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100657 * see also notes above in HANDED_OVER_TO_NETWORK about
Philipp Reisnerb411b362009-09-25 16:07:19 -0700658 * protocol != C */
659 req->rq_state |= RQ_NET_OK;
660 D_ASSERT(req->rq_state & RQ_NET_PENDING);
661 dec_ap_pending(mdev);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100662 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700663 req->rq_state &= ~RQ_NET_PENDING;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200664 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700665 break;
666
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100667 case NEG_ACKED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700668 /* assert something? */
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200669 if (req->rq_state & RQ_NET_PENDING) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700670 dec_ap_pending(mdev);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100671 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200672 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700673 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
674
675 req->rq_state |= RQ_NET_DONE;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200676 _req_may_be_done_not_susp(req, m);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100677 /* else: done by HANDED_OVER_TO_NETWORK */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700678 break;
679
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100680 case FAIL_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200681 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
682 break;
683
Philipp Reisnercfa03412010-06-23 17:18:51 +0200684 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisner265be2d2010-05-31 10:14:17 +0200685 break;
686
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100687 case RESTART_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200688 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
689 break;
690
691 req->rq_state &= ~RQ_LOCAL_COMPLETED;
692
693 rv = MR_READ;
694 if (bio_data_dir(req->master_bio) == WRITE)
695 rv = MR_WRITE;
696
697 get_ldev(mdev);
698 req->w.cb = w_restart_disk_io;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100699 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200700 break;
701
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100702 case RESEND:
Philipp Reisner11b58e72010-05-12 17:08:26 +0200703 /* If RQ_NET_OK is already set, we got a P_WRITE_ACK or P_RECV_ACK
Philipp Reisner47ff2d02010-06-18 13:56:57 +0200704 before the connection loss (B&C only); only P_BARRIER_ACK was missing.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200705 Trowing them out of the TL here by pretending we got a BARRIER_ACK
Philipp Reisner481c6f52010-06-22 14:03:27 +0200706 We ensure that the peer was not rebooted */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200707 if (!(req->rq_state & RQ_NET_OK)) {
708 if (req->w.cb) {
Philipp Reisnere42325a2011-01-19 13:55:45 +0100709 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200710 rv = req->rq_state & RQ_WRITE ? MR_WRITE : MR_READ;
711 }
712 break;
713 }
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100714 /* else, fall through to BARRIER_ACKED */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200715
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100716 case BARRIER_ACKED:
Philipp Reisner288f4222010-05-27 15:07:43 +0200717 if (!(req->rq_state & RQ_WRITE))
718 break;
719
Philipp Reisnerb411b362009-09-25 16:07:19 -0700720 if (req->rq_state & RQ_NET_PENDING) {
721 /* barrier came in before all requests have been acked.
722 * this is bad, because if the connection is lost now,
723 * we won't be able to clean them up... */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100724 dev_err(DEV, "FIXME (BARRIER_ACKED but pending)\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +0100725 list_move(&req->tl_requests, &mdev->tconn->out_of_sequence_requests);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700726 }
Lars Ellenberge636db52011-01-21 17:10:37 +0100727 if ((req->rq_state & RQ_NET_MASK) != 0) {
728 req->rq_state |= RQ_NET_DONE;
Philipp Reisner89e58e72011-01-19 13:12:45 +0100729 if (mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A)
730 atomic_sub(req->i.size>>9, &mdev->ap_in_flight);
Lars Ellenberge636db52011-01-21 17:10:37 +0100731 }
Philipp Reisnercfa03412010-06-23 17:18:51 +0200732 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700733 break;
734
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100735 case DATA_RECEIVED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700736 D_ASSERT(req->rq_state & RQ_NET_PENDING);
737 dec_ap_pending(mdev);
738 req->rq_state &= ~RQ_NET_PENDING;
739 req->rq_state |= (RQ_NET_OK|RQ_NET_DONE);
Philipp Reisnercfa03412010-06-23 17:18:51 +0200740 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700741 break;
742 };
Philipp Reisner2a806992010-06-09 14:07:43 +0200743
744 return rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700745}
746
747/* we may do a local read if:
748 * - we are consistent (of course),
749 * - or we are generally inconsistent,
750 * BUT we are still/already IN SYNC for this area.
751 * since size may be bigger than BM_BLOCK_SIZE,
752 * we may need to check several bits.
753 */
754static int drbd_may_do_local_read(struct drbd_conf *mdev, sector_t sector, int size)
755{
756 unsigned long sbnr, ebnr;
757 sector_t esector, nr_sectors;
758
759 if (mdev->state.disk == D_UP_TO_DATE)
760 return 1;
761 if (mdev->state.disk >= D_OUTDATED)
762 return 0;
763 if (mdev->state.disk < D_INCONSISTENT)
764 return 0;
765 /* state.disk == D_INCONSISTENT We will have a look at the BitMap */
766 nr_sectors = drbd_get_capacity(mdev->this_bdev);
767 esector = sector + (size >> 9) - 1;
768
769 D_ASSERT(sector < nr_sectors);
770 D_ASSERT(esector < nr_sectors);
771
772 sbnr = BM_SECT_TO_BIT(sector);
773 ebnr = BM_SECT_TO_BIT(esector);
774
775 return 0 == drbd_bm_count_bits(mdev, sbnr, ebnr);
776}
777
Philipp Reisneraeda1cd62010-11-09 17:45:06 +0100778static int drbd_make_request_common(struct drbd_conf *mdev, struct bio *bio, unsigned long start_time)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700779{
780 const int rw = bio_rw(bio);
781 const int size = bio->bi_size;
782 const sector_t sector = bio->bi_sector;
783 struct drbd_tl_epoch *b = NULL;
784 struct drbd_request *req;
Philipp Reisner73a01a12010-10-27 14:33:00 +0200785 int local, remote, send_oos = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700786 int err = -EIO;
Philipp Reisner9a25a042010-05-10 16:42:23 +0200787 int ret = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700788
789 /* allocate outside of all locks; */
790 req = drbd_req_new(mdev, bio);
791 if (!req) {
792 dec_ap_bio(mdev);
793 /* only pass the error to the upper layers.
794 * if user cannot handle io errors, that's not our business. */
795 dev_err(DEV, "could not kmalloc() req\n");
796 bio_endio(bio, -ENOMEM);
797 return 0;
798 }
Philipp Reisneraeda1cd62010-11-09 17:45:06 +0100799 req->start_time = start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700800
Philipp Reisnerb411b362009-09-25 16:07:19 -0700801 local = get_ldev(mdev);
802 if (!local) {
803 bio_put(req->private_bio); /* or we get a bio leak */
804 req->private_bio = NULL;
805 }
806 if (rw == WRITE) {
807 remote = 1;
808 } else {
809 /* READ || READA */
810 if (local) {
811 if (!drbd_may_do_local_read(mdev, sector, size)) {
812 /* we could kick the syncer to
813 * sync this extent asap, wait for
814 * it, then continue locally.
815 * Or just issue the request remotely.
816 */
817 local = 0;
818 bio_put(req->private_bio);
819 req->private_bio = NULL;
820 put_ldev(mdev);
821 }
822 }
823 remote = !local && mdev->state.pdsk >= D_UP_TO_DATE;
824 }
825
826 /* If we have a disk, but a READA request is mapped to remote,
827 * we are R_PRIMARY, D_INCONSISTENT, SyncTarget.
828 * Just fail that READA request right here.
829 *
830 * THINK: maybe fail all READA when not local?
831 * or make this configurable...
832 * if network is slow, READA won't do any good.
833 */
834 if (rw == READA && mdev->state.disk >= D_INCONSISTENT && !local) {
835 err = -EWOULDBLOCK;
836 goto fail_and_free_req;
837 }
838
839 /* For WRITES going to the local disk, grab a reference on the target
840 * extent. This waits for any resync activity in the corresponding
841 * resync extent to finish, and, if necessary, pulls in the target
842 * extent into the activity log, which involves further disk io because
843 * of transactional on-disk meta data updates. */
Philipp Reisner07782862010-08-31 12:00:50 +0200844 if (rw == WRITE && local && !test_bit(AL_SUSPENDED, &mdev->flags)) {
845 req->rq_state |= RQ_IN_ACT_LOG;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700846 drbd_al_begin_io(mdev, sector);
Philipp Reisner07782862010-08-31 12:00:50 +0200847 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700848
Philipp Reisner6a35c452011-01-17 20:27:30 +0100849 remote = remote && drbd_should_do_remote(mdev->state);
850 send_oos = rw == WRITE && drbd_should_send_oos(mdev->state);
Philipp Reisner37190942010-11-10 12:08:37 +0100851 D_ASSERT(!(remote && send_oos));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700852
Philipp Reisnerfb22c402010-09-08 23:20:21 +0200853 if (!(local || remote) && !is_susp(mdev->state)) {
Lars Ellenbergfb2c7a12010-10-19 12:08:13 +0200854 if (__ratelimit(&drbd_ratelimit_state))
855 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700856 goto fail_free_complete;
857 }
858
859 /* For WRITE request, we have to make sure that we have an
860 * unused_spare_tle, in case we need to start a new epoch.
861 * I try to be smart and avoid to pre-allocate always "just in case",
862 * but there is a race between testing the bit and pointer outside the
863 * spinlock, and grabbing the spinlock.
864 * if we lost that race, we retry. */
Philipp Reisner73a01a12010-10-27 14:33:00 +0200865 if (rw == WRITE && (remote || send_oos) &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100866 mdev->tconn->unused_spare_tle == NULL &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700867 test_bit(CREATE_BARRIER, &mdev->flags)) {
868allocate_barrier:
869 b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_NOIO);
870 if (!b) {
871 dev_err(DEV, "Failed to alloc barrier.\n");
872 err = -ENOMEM;
873 goto fail_free_complete;
874 }
875 }
876
877 /* GOOD, everything prepared, grab the spin_lock */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100878 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700879
Philipp Reisnerfb22c402010-09-08 23:20:21 +0200880 if (is_susp(mdev->state)) {
Philipp Reisner9a25a042010-05-10 16:42:23 +0200881 /* If we got suspended, use the retry mechanism of
882 generic_make_request() to restart processing of this
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +0100883 bio. In the next call to drbd_make_request
Philipp Reisner9a25a042010-05-10 16:42:23 +0200884 we sleep in inc_ap_bio() */
885 ret = 1;
Philipp Reisner87eeee42011-01-19 14:16:30 +0100886 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner9a25a042010-05-10 16:42:23 +0200887 goto fail_free_complete;
888 }
889
Philipp Reisner73a01a12010-10-27 14:33:00 +0200890 if (remote || send_oos) {
Philipp Reisner6a35c452011-01-17 20:27:30 +0100891 remote = drbd_should_do_remote(mdev->state);
892 send_oos = rw == WRITE && drbd_should_send_oos(mdev->state);
Philipp Reisner37190942010-11-10 12:08:37 +0100893 D_ASSERT(!(remote && send_oos));
Philipp Reisner73a01a12010-10-27 14:33:00 +0200894
895 if (!(remote || send_oos))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700896 dev_warn(DEV, "lost connection while grabbing the req_lock!\n");
897 if (!(local || remote)) {
898 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +0100899 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700900 goto fail_free_complete;
901 }
902 }
903
Philipp Reisner87eeee42011-01-19 14:16:30 +0100904 if (b && mdev->tconn->unused_spare_tle == NULL) {
905 mdev->tconn->unused_spare_tle = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700906 b = NULL;
907 }
Philipp Reisner73a01a12010-10-27 14:33:00 +0200908 if (rw == WRITE && (remote || send_oos) &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100909 mdev->tconn->unused_spare_tle == NULL &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700910 test_bit(CREATE_BARRIER, &mdev->flags)) {
911 /* someone closed the current epoch
912 * while we were grabbing the spinlock */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100913 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700914 goto allocate_barrier;
915 }
916
917
918 /* Update disk stats */
919 _drbd_start_io_acct(mdev, req, bio);
920
921 /* _maybe_start_new_epoch(mdev);
922 * If we need to generate a write barrier packet, we have to add the
923 * new epoch (barrier) object, and queue the barrier packet for sending,
924 * and queue the req's data after it _within the same lock_, otherwise
925 * we have race conditions were the reorder domains could be mixed up.
926 *
927 * Even read requests may start a new epoch and queue the corresponding
928 * barrier packet. To get the write ordering right, we only have to
929 * make sure that, if this is a write request and it triggered a
930 * barrier packet, this request is queued within the same spinlock. */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100931 if ((remote || send_oos) && mdev->tconn->unused_spare_tle &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700932 test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) {
Philipp Reisner87eeee42011-01-19 14:16:30 +0100933 _tl_add_barrier(mdev, mdev->tconn->unused_spare_tle);
934 mdev->tconn->unused_spare_tle = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700935 } else {
936 D_ASSERT(!(remote && rw == WRITE &&
937 test_bit(CREATE_BARRIER, &mdev->flags)));
938 }
939
940 /* NOTE
941 * Actually, 'local' may be wrong here already, since we may have failed
942 * to write to the meta data, and may become wrong anytime because of
943 * local io-error for some other request, which would lead to us
944 * "detaching" the local disk.
945 *
946 * 'remote' may become wrong any time because the network could fail.
947 *
948 * This is a harmless race condition, though, since it is handled
949 * correctly at the appropriate places; so it just defers the failure
950 * of the respective operation.
951 */
952
953 /* mark them early for readability.
954 * this just sets some state flags. */
955 if (remote)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100956 _req_mod(req, TO_BE_SENT);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700957 if (local)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100958 _req_mod(req, TO_BE_SUBMITTED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700959
960 /* check this request on the collision detection hash tables.
961 * if we have a conflict, just complete it here.
962 * THINK do we want to check reads, too? (I don't think so...) */
Lars Ellenbergd28fd092010-07-09 23:28:10 +0200963 if (rw == WRITE && _req_conflicts(req))
964 goto fail_conflicting;
Philipp Reisner288f4222010-05-27 15:07:43 +0200965
Philipp Reisner87eeee42011-01-19 14:16:30 +0100966 list_add_tail(&req->tl_requests, &mdev->tconn->newest_tle->requests);
Philipp Reisner288f4222010-05-27 15:07:43 +0200967
Philipp Reisnerb411b362009-09-25 16:07:19 -0700968 /* NOTE remote first: to get the concurrent write detection right,
969 * we must register the request before start of local IO. */
970 if (remote) {
971 /* either WRITE and C_CONNECTED,
972 * or READ, and no local disk,
973 * or READ, but not in sync.
974 */
975 _req_mod(req, (rw == WRITE)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100976 ? QUEUE_FOR_NET_WRITE
977 : QUEUE_FOR_NET_READ);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700978 }
Philipp Reisner73a01a12010-10-27 14:33:00 +0200979 if (send_oos && drbd_set_out_of_sync(mdev, sector, size))
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100980 _req_mod(req, QUEUE_FOR_SEND_OOS);
Philipp Reisner67531712010-10-27 12:21:30 +0200981
Philipp Reisner73a01a12010-10-27 14:33:00 +0200982 if (remote &&
Philipp Reisner31890f42011-01-19 14:12:51 +0100983 mdev->tconn->net_conf->on_congestion != OC_BLOCK && mdev->tconn->agreed_pro_version >= 96) {
Philipp Reisner67531712010-10-27 12:21:30 +0200984 int congested = 0;
985
Philipp Reisner89e58e72011-01-19 13:12:45 +0100986 if (mdev->tconn->net_conf->cong_fill &&
987 atomic_read(&mdev->ap_in_flight) >= mdev->tconn->net_conf->cong_fill) {
Philipp Reisner67531712010-10-27 12:21:30 +0200988 dev_info(DEV, "Congestion-fill threshold reached\n");
989 congested = 1;
990 }
991
Philipp Reisner89e58e72011-01-19 13:12:45 +0100992 if (mdev->act_log->used >= mdev->tconn->net_conf->cong_extents) {
Philipp Reisner67531712010-10-27 12:21:30 +0200993 dev_info(DEV, "Congestion-extents threshold reached\n");
994 congested = 1;
995 }
996
Philipp Reisner71c78cf2011-01-14 19:20:34 +0100997 if (congested) {
Philipp Reisner039312b2011-01-21 14:13:22 +0100998 queue_barrier(mdev); /* last barrier, after mirrored writes */
Philipp Reisner73a01a12010-10-27 14:33:00 +0200999
Philipp Reisner89e58e72011-01-19 13:12:45 +01001000 if (mdev->tconn->net_conf->on_congestion == OC_PULL_AHEAD)
Philipp Reisner67531712010-10-27 12:21:30 +02001001 _drbd_set_state(_NS(mdev, conn, C_AHEAD), 0, NULL);
Philipp Reisner89e58e72011-01-19 13:12:45 +01001002 else /*mdev->tconn->net_conf->on_congestion == OC_DISCONNECT */
Philipp Reisner67531712010-10-27 12:21:30 +02001003 _drbd_set_state(_NS(mdev, conn, C_DISCONNECTING), 0, NULL);
1004 }
1005 }
1006
Philipp Reisner87eeee42011-01-19 14:16:30 +01001007 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001008 kfree(b); /* if someone else has beaten us to it... */
1009
1010 if (local) {
1011 req->private_bio->bi_bdev = mdev->ldev->backing_bdev;
1012
Lars Ellenberg6719fb02010-10-18 23:04:07 +02001013 /* State may have changed since we grabbed our reference on the
1014 * mdev->ldev member. Double check, and short-circuit to endio.
1015 * In case the last activity log transaction failed to get on
1016 * stable storage, and this is a WRITE, we may not even submit
1017 * this bio. */
1018 if (get_ldev(mdev)) {
Andreas Gruenbacher0cf9d272010-12-07 10:43:29 +01001019 if (drbd_insert_fault(mdev, rw == WRITE ? DRBD_FAULT_DT_WR
1020 : rw == READ ? DRBD_FAULT_DT_RD
1021 : DRBD_FAULT_DT_RA))
Lars Ellenberg6719fb02010-10-18 23:04:07 +02001022 bio_endio(req->private_bio, -EIO);
1023 else
1024 generic_make_request(req->private_bio);
1025 put_ldev(mdev);
1026 } else
Philipp Reisnerb411b362009-09-25 16:07:19 -07001027 bio_endio(req->private_bio, -EIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001028 }
1029
Philipp Reisnerb411b362009-09-25 16:07:19 -07001030 return 0;
1031
Lars Ellenbergd28fd092010-07-09 23:28:10 +02001032fail_conflicting:
1033 /* this is a conflicting request.
1034 * even though it may have been only _partially_
1035 * overlapping with one of the currently pending requests,
1036 * without even submitting or sending it, we will
1037 * pretend that it was successfully served right now.
1038 */
1039 _drbd_end_io_acct(mdev, req);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001040 spin_unlock_irq(&mdev->tconn->req_lock);
Lars Ellenbergd28fd092010-07-09 23:28:10 +02001041 if (remote)
1042 dec_ap_pending(mdev);
1043 /* THINK: do we want to fail it (-EIO), or pretend success?
1044 * this pretends success. */
1045 err = 0;
1046
Philipp Reisnerb411b362009-09-25 16:07:19 -07001047fail_free_complete:
Lars Ellenberg76727f62011-05-16 15:31:45 +02001048 if (req->rq_state & RQ_IN_ACT_LOG)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001049 drbd_al_complete_io(mdev, sector);
1050fail_and_free_req:
1051 if (local) {
1052 bio_put(req->private_bio);
1053 req->private_bio = NULL;
1054 put_ldev(mdev);
1055 }
Philipp Reisner9a25a042010-05-10 16:42:23 +02001056 if (!ret)
1057 bio_endio(bio, err);
1058
Philipp Reisnerb411b362009-09-25 16:07:19 -07001059 drbd_req_free(req);
1060 dec_ap_bio(mdev);
1061 kfree(b);
1062
Philipp Reisner9a25a042010-05-10 16:42:23 +02001063 return ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001064}
1065
1066/* helper function for drbd_make_request
1067 * if we can determine just by the mdev (state) that this request will fail,
1068 * return 1
1069 * otherwise return 0
1070 */
1071static int drbd_fail_request_early(struct drbd_conf *mdev, int is_write)
1072{
Philipp Reisnerb411b362009-09-25 16:07:19 -07001073 if (mdev->state.role != R_PRIMARY &&
1074 (!allow_oos || is_write)) {
1075 if (__ratelimit(&drbd_ratelimit_state)) {
1076 dev_err(DEV, "Process %s[%u] tried to %s; "
1077 "since we are not in Primary state, "
1078 "we cannot allow this\n",
1079 current->comm, current->pid,
1080 is_write ? "WRITE" : "READ");
1081 }
1082 return 1;
1083 }
1084
Philipp Reisnerb411b362009-09-25 16:07:19 -07001085 return 0;
1086}
1087
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01001088int drbd_make_request(struct request_queue *q, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001089{
1090 unsigned int s_enr, e_enr;
1091 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001092 unsigned long start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001093
1094 if (drbd_fail_request_early(mdev, bio_data_dir(bio) & WRITE)) {
1095 bio_endio(bio, -EPERM);
1096 return 0;
1097 }
1098
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001099 start_time = jiffies;
1100
Philipp Reisnerb411b362009-09-25 16:07:19 -07001101 /*
1102 * what we "blindly" assume:
1103 */
1104 D_ASSERT(bio->bi_size > 0);
1105 D_ASSERT((bio->bi_size & 0x1ff) == 0);
1106 D_ASSERT(bio->bi_idx == 0);
1107
1108 /* to make some things easier, force alignment of requests within the
1109 * granularity of our hash tables */
1110 s_enr = bio->bi_sector >> HT_SHIFT;
1111 e_enr = (bio->bi_sector+(bio->bi_size>>9)-1) >> HT_SHIFT;
1112
1113 if (likely(s_enr == e_enr)) {
1114 inc_ap_bio(mdev, 1);
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001115 return drbd_make_request_common(mdev, bio, start_time);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001116 }
1117
1118 /* can this bio be split generically?
1119 * Maybe add our own split-arbitrary-bios function. */
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001120 if (bio->bi_vcnt != 1 || bio->bi_idx != 0 || bio->bi_size > DRBD_MAX_BIO_SIZE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001121 /* rather error out here than BUG in bio_split */
1122 dev_err(DEV, "bio would need to, but cannot, be split: "
1123 "(vcnt=%u,idx=%u,size=%u,sector=%llu)\n",
1124 bio->bi_vcnt, bio->bi_idx, bio->bi_size,
1125 (unsigned long long)bio->bi_sector);
1126 bio_endio(bio, -EINVAL);
1127 } else {
1128 /* This bio crosses some boundary, so we have to split it. */
1129 struct bio_pair *bp;
1130 /* works for the "do not cross hash slot boundaries" case
1131 * e.g. sector 262269, size 4096
1132 * s_enr = 262269 >> 6 = 4097
1133 * e_enr = (262269+8-1) >> 6 = 4098
1134 * HT_SHIFT = 6
1135 * sps = 64, mask = 63
1136 * first_sectors = 64 - (262269 & 63) = 3
1137 */
1138 const sector_t sect = bio->bi_sector;
1139 const int sps = 1 << HT_SHIFT; /* sectors per slot */
1140 const int mask = sps - 1;
1141 const sector_t first_sectors = sps - (sect & mask);
Or Gerlitz03567812011-01-13 10:43:40 +01001142 bp = bio_split(bio, first_sectors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001143
1144 /* we need to get a "reference count" (ap_bio_cnt)
1145 * to avoid races with the disconnect/reconnect/suspend code.
Philipp Reisner9a25a042010-05-10 16:42:23 +02001146 * In case we need to split the bio here, we need to get three references
Philipp Reisnerb411b362009-09-25 16:07:19 -07001147 * atomically, otherwise we might deadlock when trying to submit the
1148 * second one! */
Philipp Reisner9a25a042010-05-10 16:42:23 +02001149 inc_ap_bio(mdev, 3);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001150
1151 D_ASSERT(e_enr == s_enr + 1);
1152
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001153 while (drbd_make_request_common(mdev, &bp->bio1, start_time))
Philipp Reisner9a25a042010-05-10 16:42:23 +02001154 inc_ap_bio(mdev, 1);
1155
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001156 while (drbd_make_request_common(mdev, &bp->bio2, start_time))
Philipp Reisner9a25a042010-05-10 16:42:23 +02001157 inc_ap_bio(mdev, 1);
1158
1159 dec_ap_bio(mdev);
1160
Philipp Reisnerb411b362009-09-25 16:07:19 -07001161 bio_pair_release(bp);
1162 }
1163 return 0;
1164}
1165
1166/* This is called by bio_add_page(). With this function we reduce
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001167 * the number of BIOs that span over multiple DRBD_MAX_BIO_SIZEs
Philipp Reisnerb411b362009-09-25 16:07:19 -07001168 * units (was AL_EXTENTs).
1169 *
1170 * we do the calculation within the lower 32bit of the byte offsets,
1171 * since we don't care for actual offset, but only check whether it
1172 * would cross "activity log extent" boundaries.
1173 *
1174 * As long as the BIO is empty we have to allow at least one bvec,
1175 * regardless of size and offset. so the resulting bio may still
1176 * cross extent boundaries. those are dealt with (bio_split) in
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01001177 * drbd_make_request.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001178 */
1179int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec)
1180{
1181 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
1182 unsigned int bio_offset =
1183 (unsigned int)bvm->bi_sector << 9; /* 32 bit */
1184 unsigned int bio_size = bvm->bi_size;
1185 int limit, backing_limit;
1186
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001187 limit = DRBD_MAX_BIO_SIZE
1188 - ((bio_offset & (DRBD_MAX_BIO_SIZE-1)) + bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001189 if (limit < 0)
1190 limit = 0;
1191 if (bio_size == 0) {
1192 if (limit <= bvec->bv_len)
1193 limit = bvec->bv_len;
1194 } else if (limit && get_ldev(mdev)) {
1195 struct request_queue * const b =
1196 mdev->ldev->backing_bdev->bd_disk->queue;
Lars Ellenberga1c88d02010-05-14 19:16:41 +02001197 if (b->merge_bvec_fn) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001198 backing_limit = b->merge_bvec_fn(b, bvm, bvec);
1199 limit = min(limit, backing_limit);
1200 }
1201 put_ldev(mdev);
1202 }
1203 return limit;
1204}
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001205
1206void request_timer_fn(unsigned long data)
1207{
1208 struct drbd_conf *mdev = (struct drbd_conf *) data;
1209 struct drbd_request *req; /* oldest request */
1210 struct list_head *le;
1211 unsigned long et = 0; /* effective timeout = ko_count * timeout */
1212
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01001213 if (get_net_conf(mdev->tconn)) {
Philipp Reisner89e58e72011-01-19 13:12:45 +01001214 et = mdev->tconn->net_conf->timeout*HZ/10 * mdev->tconn->net_conf->ko_count;
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01001215 put_net_conf(mdev->tconn);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001216 }
1217 if (!et || mdev->state.conn < C_WF_REPORT_PARAMS)
1218 return; /* Recurring timer stopped */
1219
Philipp Reisner87eeee42011-01-19 14:16:30 +01001220 spin_lock_irq(&mdev->tconn->req_lock);
1221 le = &mdev->tconn->oldest_tle->requests;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001222 if (list_empty(le)) {
Philipp Reisner87eeee42011-01-19 14:16:30 +01001223 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001224 mod_timer(&mdev->request_timer, jiffies + et);
1225 return;
1226 }
1227
1228 le = le->prev;
1229 req = list_entry(le, struct drbd_request, tl_requests);
1230 if (time_is_before_eq_jiffies(req->start_time + et)) {
1231 if (req->rq_state & RQ_NET_PENDING) {
1232 dev_warn(DEV, "Remote failed to finish a request within ko-count * timeout\n");
1233 _drbd_set_state(_NS(mdev, conn, C_TIMEOUT), CS_VERBOSE, NULL);
1234 } else {
1235 dev_warn(DEV, "Local backing block device frozen?\n");
1236 mod_timer(&mdev->request_timer, jiffies + et);
1237 }
1238 } else {
1239 mod_timer(&mdev->request_timer, req->start_time + et);
1240 }
1241
Philipp Reisner87eeee42011-01-19 14:16:30 +01001242 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001243}