blob: 60fc186d0a3de74d4db1673210c82f85b9240cdc [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;
Philipp Reisnera21e9292011-02-08 15:08:49 +010070 req->w.mdev = mdev;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010071 req->master_bio = bio_src;
72 req->epoch = 0;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010073
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010074 drbd_clear_interval(&req->i);
75 req->i.sector = bio_src->bi_sector;
76 req->i.size = bio_src->bi_size;
Andreas Gruenbacher5e472262011-01-27 14:42:51 +010077 req->i.local = true;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010078 req->i.waiting = false;
79
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010080 INIT_LIST_HEAD(&req->tl_requests);
81 INIT_LIST_HEAD(&req->w.list);
82
83 return req;
84}
85
86static void drbd_req_free(struct drbd_request *req)
87{
88 mempool_free(req, drbd_request_mempool);
89}
90
91/* rw is bio_data_dir(), only READ or WRITE */
Philipp Reisnerb411b362009-09-25 16:07:19 -070092static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
93{
94 const unsigned long s = req->rq_state;
Philipp Reisner288f4222010-05-27 15:07:43 +020095
96 /* remove it from the transfer log.
97 * well, only if it had been there in the first
98 * place... if it had not (local only or conflicting
99 * and never sent), it should still be "empty" as
100 * initialized in drbd_req_new(), so we can list_del() it
101 * here unconditionally */
102 list_del(&req->tl_requests);
103
Philipp Reisnerb411b362009-09-25 16:07:19 -0700104 /* if it was a write, we may have to set the corresponding
105 * bit(s) out-of-sync first. If it had a local part, we need to
106 * release the reference to the activity log. */
107 if (rw == WRITE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700108 /* Set out-of-sync unless both OK flags are set
109 * (local only or remote failed).
110 * Other places where we set out-of-sync:
111 * READ with local io-error */
112 if (!(s & RQ_NET_OK) || !(s & RQ_LOCAL_OK))
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100113 drbd_set_out_of_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700114
115 if ((s & RQ_NET_OK) && (s & RQ_LOCAL_OK) && (s & RQ_NET_SIS))
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100116 drbd_set_in_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700117
118 /* one might be tempted to move the drbd_al_complete_io
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +0100119 * to the local io completion callback drbd_request_endio.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700120 * but, if this was a mirror write, we may only
121 * drbd_al_complete_io after this is RQ_NET_DONE,
122 * otherwise the extent could be dropped from the al
123 * before it has actually been written on the peer.
124 * if we crash before our peer knows about the request,
125 * but after the extent has been dropped from the al,
126 * we would forget to resync the corresponding extent.
127 */
128 if (s & RQ_LOCAL_MASK) {
129 if (get_ldev_if_state(mdev, D_FAILED)) {
Philipp Reisner07782862010-08-31 12:00:50 +0200130 if (s & RQ_IN_ACT_LOG)
Lars Ellenberg181286a2011-03-31 15:18:56 +0200131 drbd_al_complete_io(mdev, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700132 put_ldev(mdev);
133 } else if (__ratelimit(&drbd_ratelimit_state)) {
Lars Ellenberg181286a2011-03-31 15:18:56 +0200134 dev_warn(DEV, "Should have called drbd_al_complete_io(, %llu, %u), "
135 "but my Disk seems to have failed :(\n",
136 (unsigned long long) req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700137 }
138 }
139 }
140
Philipp Reisner32fa7e92010-05-26 17:13:18 +0200141 drbd_req_free(req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700142}
143
144static void queue_barrier(struct drbd_conf *mdev)
145{
146 struct drbd_tl_epoch *b;
147
148 /* We are within the req_lock. Once we queued the barrier for sending,
149 * we set the CREATE_BARRIER bit. It is cleared as soon as a new
150 * barrier/epoch object is added. This is the only place this bit is
151 * set. It indicates that the barrier for this epoch is already queued,
152 * and no new epoch has been created yet. */
153 if (test_bit(CREATE_BARRIER, &mdev->flags))
154 return;
155
Philipp Reisner87eeee42011-01-19 14:16:30 +0100156 b = mdev->tconn->newest_tle;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700157 b->w.cb = w_send_barrier;
Philipp Reisnera21e9292011-02-08 15:08:49 +0100158 b->w.mdev = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700159 /* inc_ap_pending done here, so we won't
160 * get imbalanced on connection loss.
161 * dec_ap_pending will be done in got_BarrierAck
162 * or (on connection loss) in tl_clear. */
163 inc_ap_pending(mdev);
Philipp Reisnere42325a2011-01-19 13:55:45 +0100164 drbd_queue_work(&mdev->tconn->data.work, &b->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700165 set_bit(CREATE_BARRIER, &mdev->flags);
166}
167
168static void _about_to_complete_local_write(struct drbd_conf *mdev,
169 struct drbd_request *req)
170{
171 const unsigned long s = req->rq_state;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700172
Lars Ellenberg8a3c1042010-12-05 14:11:14 +0100173 /* Before we can signal completion to the upper layers,
174 * we may need to close the current epoch.
175 * We can skip this, if this request has not even been sent, because we
176 * did not have a fully established connection yet/anymore, during
177 * bitmap exchange, or while we are C_AHEAD due to congestion policy.
178 */
179 if (mdev->state.conn >= C_CONNECTED &&
180 (s & RQ_NET_SENT) != 0 &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100181 req->epoch == mdev->tconn->newest_tle->br_number)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700182 queue_barrier(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700183}
184
185void complete_master_bio(struct drbd_conf *mdev,
186 struct bio_and_error *m)
187{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700188 bio_endio(m->bio, m->error);
189 dec_ap_bio(mdev);
190}
191
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100192
193static void drbd_remove_request_interval(struct rb_root *root,
194 struct drbd_request *req)
195{
Philipp Reisnera21e9292011-02-08 15:08:49 +0100196 struct drbd_conf *mdev = req->w.mdev;
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100197 struct drbd_interval *i = &req->i;
198
199 drbd_remove_interval(root, i);
200
201 /* Wake up any processes waiting for this request to complete. */
202 if (i->waiting)
203 wake_up(&mdev->misc_wait);
204}
205
Philipp Reisnerb411b362009-09-25 16:07:19 -0700206/* Helper for __req_mod().
207 * Set m->bio to the master bio, if it is fit to be completed,
208 * or leave it alone (it is initialized to NULL in __req_mod),
209 * if it has already been completed, or cannot be completed yet.
210 * If m->bio is set, the error status to be returned is placed in m->error.
211 */
212void _req_may_be_done(struct drbd_request *req, struct bio_and_error *m)
213{
214 const unsigned long s = req->rq_state;
Philipp Reisnera21e9292011-02-08 15:08:49 +0100215 struct drbd_conf *mdev = req->w.mdev;
Philipp Reisnercdfda632011-07-05 15:38:59 +0200216 int rw = req->rq_state & RQ_WRITE ? WRITE : READ;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700217
Philipp Reisnerb411b362009-09-25 16:07:19 -0700218 /* we must not complete the master bio, while it is
219 * still being processed by _drbd_send_zc_bio (drbd_send_dblock)
220 * not yet acknowledged by the peer
221 * not yet completed by the local io subsystem
222 * these flags may get cleared in any order by
223 * the worker,
224 * the receiver,
225 * the bio_endio completion callbacks.
226 */
Philipp Reisnercdfda632011-07-05 15:38:59 +0200227 if (s & RQ_LOCAL_PENDING && !(s & RQ_LOCAL_ABORTED))
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100228 return;
229 if (req->i.waiting) {
230 /* Retry all conflicting peer requests. */
231 wake_up(&mdev->misc_wait);
232 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700233 if (s & RQ_NET_QUEUED)
234 return;
235 if (s & RQ_NET_PENDING)
236 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700237
238 if (req->master_bio) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100239 /* this is DATA_RECEIVED (remote read)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700240 * or protocol C P_WRITE_ACK
241 * or protocol B P_RECV_ACK
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100242 * or protocol A "HANDED_OVER_TO_NETWORK" (SendAck)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700243 * or canceled or failed,
244 * or killed from the transfer log due to connection loss.
245 */
246
247 /*
248 * figure out whether to report success or failure.
249 *
250 * report success when at least one of the operations succeeded.
251 * or, to put the other way,
252 * only report failure, when both operations failed.
253 *
254 * what to do about the failures is handled elsewhere.
255 * what we need to do here is just: complete the master_bio.
256 *
257 * local completion error, if any, has been stored as ERR_PTR
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +0100258 * in private_bio within drbd_request_endio.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700259 */
260 int ok = (s & RQ_LOCAL_OK) || (s & RQ_NET_OK);
261 int error = PTR_ERR(req->private_bio);
262
263 /* remove the request from the conflict detection
264 * respective block_id verification hash */
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100265 if (!drbd_interval_empty(&req->i)) {
266 struct rb_root *root;
267
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100268 if (rw == WRITE)
269 root = &mdev->write_requests;
270 else
271 root = &mdev->read_requests;
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100272 drbd_remove_request_interval(root, req);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100273 } else if (!(s & RQ_POSTPONED))
Philipp Reisner8825f7c2010-10-21 17:21:19 +0200274 D_ASSERT((s & (RQ_NET_MASK & ~RQ_NET_DONE)) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700275
276 /* for writes we need to do some extra housekeeping */
277 if (rw == WRITE)
278 _about_to_complete_local_write(mdev, req);
279
280 /* Update disk stats */
281 _drbd_end_io_acct(mdev, req);
282
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100283 if (!(s & RQ_POSTPONED)) {
284 m->error = ok ? 0 : (error ?: -EIO);
285 m->bio = req->master_bio;
286 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700287 req->master_bio = NULL;
288 }
289
Philipp Reisnercdfda632011-07-05 15:38:59 +0200290 if (s & RQ_LOCAL_PENDING)
291 return;
292
Philipp Reisnerb411b362009-09-25 16:07:19 -0700293 if ((s & RQ_NET_MASK) == 0 || (s & RQ_NET_DONE)) {
294 /* this is disconnected (local only) operation,
295 * or protocol C P_WRITE_ACK,
296 * or protocol A or B P_BARRIER_ACK,
297 * or killed from the transfer log due to connection loss. */
298 _req_is_done(mdev, req, rw);
299 }
300 /* else: network part and not DONE yet. that is
301 * protocol A or B, barrier ack still pending... */
302}
303
Philipp Reisnercfa03412010-06-23 17:18:51 +0200304static void _req_may_be_done_not_susp(struct drbd_request *req, struct bio_and_error *m)
305{
Philipp Reisnera21e9292011-02-08 15:08:49 +0100306 struct drbd_conf *mdev = req->w.mdev;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200307
Philipp Reisner2aebfab2011-03-28 16:48:11 +0200308 if (!drbd_suspended(mdev))
Philipp Reisnercfa03412010-06-23 17:18:51 +0200309 _req_may_be_done(req, m);
310}
311
Philipp Reisnerb411b362009-09-25 16:07:19 -0700312/* obviously this could be coded as many single functions
313 * instead of one huge switch,
314 * or by putting the code directly in the respective locations
315 * (as it has been before).
316 *
317 * but having it this way
318 * enforces that it is all in this one place, where it is easier to audit,
319 * it makes it obvious that whatever "event" "happens" to a request should
320 * happen "atomically" within the req_lock,
321 * and it enforces that we have to think in a very structured manner
322 * about the "events" that may happen to a request during its life time ...
323 */
Philipp Reisner2a806992010-06-09 14:07:43 +0200324int __req_mod(struct drbd_request *req, enum drbd_req_event what,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700325 struct bio_and_error *m)
326{
Philipp Reisnera21e9292011-02-08 15:08:49 +0100327 struct drbd_conf *mdev = req->w.mdev;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200328 struct net_conf *nc;
Philipp Reisner303d1442011-04-13 16:24:47 -0700329 int p, rv = 0;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100330
331 if (m)
332 m->bio = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700333
Philipp Reisnerb411b362009-09-25 16:07:19 -0700334 switch (what) {
335 default:
336 dev_err(DEV, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__);
337 break;
338
339 /* does not happen...
340 * initialization done in drbd_req_new
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100341 case CREATED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700342 break;
343 */
344
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100345 case TO_BE_SENT: /* via network */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100346 /* reached via __drbd_make_request
Philipp Reisnerb411b362009-09-25 16:07:19 -0700347 * and from w_read_retry_remote */
348 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
349 req->rq_state |= RQ_NET_PENDING;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200350 rcu_read_lock();
351 nc = rcu_dereference(mdev->tconn->net_conf);
352 p = nc->wire_protocol;
353 rcu_read_unlock();
Philipp Reisner303d1442011-04-13 16:24:47 -0700354 req->rq_state |=
355 p == DRBD_PROT_C ? RQ_EXP_WRITE_ACK :
356 p == DRBD_PROT_B ? RQ_EXP_RECEIVE_ACK : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700357 inc_ap_pending(mdev);
358 break;
359
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100360 case TO_BE_SUBMITTED: /* locally */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100361 /* reached via __drbd_make_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700362 D_ASSERT(!(req->rq_state & RQ_LOCAL_MASK));
363 req->rq_state |= RQ_LOCAL_PENDING;
364 break;
365
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100366 case COMPLETED_OK:
Philipp Reisnercdfda632011-07-05 15:38:59 +0200367 if (req->rq_state & RQ_WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100368 mdev->writ_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700369 else
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100370 mdev->read_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700371
372 req->rq_state |= (RQ_LOCAL_COMPLETED|RQ_LOCAL_OK);
373 req->rq_state &= ~RQ_LOCAL_PENDING;
374
Philipp Reisnercfa03412010-06-23 17:18:51 +0200375 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700376 put_ldev(mdev);
377 break;
378
Philipp Reisnercdfda632011-07-05 15:38:59 +0200379 case ABORT_DISK_IO:
380 req->rq_state |= RQ_LOCAL_ABORTED;
381 if (req->rq_state & RQ_WRITE)
382 _req_may_be_done_not_susp(req, m);
383 else
384 goto goto_queue_for_net_read;
385 break;
386
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100387 case WRITE_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700388 req->rq_state |= RQ_LOCAL_COMPLETED;
389 req->rq_state &= ~RQ_LOCAL_PENDING;
390
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100391 __drbd_chk_io_error(mdev, false);
Philipp Reisnercfa03412010-06-23 17:18:51 +0200392 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700393 put_ldev(mdev);
394 break;
395
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100396 case READ_AHEAD_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700397 /* it is legal to fail READA */
398 req->rq_state |= RQ_LOCAL_COMPLETED;
399 req->rq_state &= ~RQ_LOCAL_PENDING;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200400 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700401 put_ldev(mdev);
402 break;
403
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100404 case READ_COMPLETED_WITH_ERROR:
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100405 drbd_set_out_of_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700406
407 req->rq_state |= RQ_LOCAL_COMPLETED;
408 req->rq_state &= ~RQ_LOCAL_PENDING;
409
Philipp Reisnerb411b362009-09-25 16:07:19 -0700410 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700411
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100412 __drbd_chk_io_error(mdev, false);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700413 put_ldev(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700414
Philipp Reisnercdfda632011-07-05 15:38:59 +0200415 goto_queue_for_net_read:
416
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200417 /* no point in retrying if there is no good remote data,
418 * or we have no connection. */
419 if (mdev->state.pdsk != D_UP_TO_DATE) {
Philipp Reisnercfa03412010-06-23 17:18:51 +0200420 _req_may_be_done_not_susp(req, m);
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200421 break;
422 }
423
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100424 /* _req_mod(req,TO_BE_SENT); oops, recursion... */
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200425 req->rq_state |= RQ_NET_PENDING;
426 inc_ap_pending(mdev);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100427 /* fall through: _req_mod(req,QUEUE_FOR_NET_READ); */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700428
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100429 case QUEUE_FOR_NET_READ:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700430 /* READ or READA, and
431 * no local disk,
432 * or target area marked as invalid,
433 * or just got an io-error. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100434 /* from __drbd_make_request
Philipp Reisnerb411b362009-09-25 16:07:19 -0700435 * or from bio_endio during read io-error recovery */
436
437 /* so we can verify the handle in the answer packet
438 * corresponding hlist_del is in _req_may_be_done() */
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200439 D_ASSERT(drbd_interval_empty(&req->i));
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100440 drbd_insert_interval(&mdev->read_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700441
Lars Ellenberg83c38832009-11-03 02:22:06 +0100442 set_bit(UNPLUG_REMOTE, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700443
444 D_ASSERT(req->rq_state & RQ_NET_PENDING);
445 req->rq_state |= RQ_NET_QUEUED;
446 req->w.cb = (req->rq_state & RQ_LOCAL_MASK)
447 ? w_read_retry_remote
448 : w_send_read_req;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100449 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700450 break;
451
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100452 case QUEUE_FOR_NET_WRITE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700453 /* assert something? */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100454 /* from __drbd_make_request only */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700455
Philipp Reisnerb411b362009-09-25 16:07:19 -0700456 /* corresponding hlist_del is in _req_may_be_done() */
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200457 D_ASSERT(drbd_interval_empty(&req->i));
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100458 drbd_insert_interval(&mdev->write_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700459
460 /* NOTE
461 * In case the req ended up on the transfer log before being
462 * queued on the worker, it could lead to this request being
463 * missed during cleanup after connection loss.
464 * So we have to do both operations here,
465 * within the same lock that protects the transfer log.
466 *
467 * _req_add_to_epoch(req); this has to be after the
468 * _maybe_start_new_epoch(req); which happened in
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100469 * __drbd_make_request, because we now may set the bit
Philipp Reisnerb411b362009-09-25 16:07:19 -0700470 * again ourselves to close the current epoch.
471 *
472 * Add req to the (now) current epoch (barrier). */
473
Lars Ellenberg83c38832009-11-03 02:22:06 +0100474 /* otherwise we may lose an unplug, which may cause some remote
475 * io-scheduler timeout to expire, increasing maximum latency,
476 * hurting performance. */
477 set_bit(UNPLUG_REMOTE, &mdev->flags);
478
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100479 /* see __drbd_make_request,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700480 * just after it grabs the req_lock */
481 D_ASSERT(test_bit(CREATE_BARRIER, &mdev->flags) == 0);
482
Philipp Reisner87eeee42011-01-19 14:16:30 +0100483 req->epoch = mdev->tconn->newest_tle->br_number;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700484
485 /* increment size of current epoch */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100486 mdev->tconn->newest_tle->n_writes++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700487
488 /* queue work item to send data */
489 D_ASSERT(req->rq_state & RQ_NET_PENDING);
490 req->rq_state |= RQ_NET_QUEUED;
491 req->w.cb = w_send_dblock;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100492 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700493
494 /* close the epoch, in case it outgrew the limit */
Philipp Reisner44ed1672011-04-19 17:10:19 +0200495 rcu_read_lock();
496 nc = rcu_dereference(mdev->tconn->net_conf);
497 p = nc->max_epoch_size;
498 rcu_read_unlock();
499 if (mdev->tconn->newest_tle->n_writes >= p)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700500 queue_barrier(mdev);
501
502 break;
503
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100504 case QUEUE_FOR_SEND_OOS:
Philipp Reisner73a01a12010-10-27 14:33:00 +0200505 req->rq_state |= RQ_NET_QUEUED;
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +0100506 req->w.cb = w_send_out_of_sync;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100507 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200508 break;
509
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100510 case OOS_HANDED_TO_NETWORK:
Philipp Reisner73a01a12010-10-27 14:33:00 +0200511 /* actually the same */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100512 case SEND_CANCELED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700513 /* treat it the same */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100514 case SEND_FAILED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700515 /* real cleanup will be done from tl_clear. just update flags
516 * so it is no longer marked as on the worker queue */
517 req->rq_state &= ~RQ_NET_QUEUED;
518 /* if we did it right, tl_clear should be scheduled only after
519 * this, so this should not be necessary! */
Philipp Reisnercfa03412010-06-23 17:18:51 +0200520 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700521 break;
522
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100523 case HANDED_OVER_TO_NETWORK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700524 /* assert something? */
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200525 if (bio_data_dir(req->master_bio) == WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100526 atomic_add(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200527
Philipp Reisnerb411b362009-09-25 16:07:19 -0700528 if (bio_data_dir(req->master_bio) == WRITE &&
Philipp Reisner303d1442011-04-13 16:24:47 -0700529 !(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK))) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700530 /* this is what is dangerous about protocol A:
531 * pretend it was successfully written on the peer. */
532 if (req->rq_state & RQ_NET_PENDING) {
533 dec_ap_pending(mdev);
534 req->rq_state &= ~RQ_NET_PENDING;
535 req->rq_state |= RQ_NET_OK;
536 } /* else: neg-ack was faster... */
537 /* it is still not yet RQ_NET_DONE until the
538 * corresponding epoch barrier got acked as well,
539 * so we know what to dirty on connection loss */
540 }
541 req->rq_state &= ~RQ_NET_QUEUED;
542 req->rq_state |= RQ_NET_SENT;
543 /* because _drbd_send_zc_bio could sleep, and may want to
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100544 * dereference the bio even after the "WRITE_ACKED_BY_PEER" and
545 * "COMPLETED_OK" events came in, once we return from
Philipp Reisnerb411b362009-09-25 16:07:19 -0700546 * _drbd_send_zc_bio (drbd_send_dblock), we have to check
547 * whether it is done already, and end it. */
Philipp Reisnercfa03412010-06-23 17:18:51 +0200548 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700549 break;
550
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100551 case READ_RETRY_REMOTE_CANCELED:
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200552 req->rq_state &= ~RQ_NET_QUEUED;
553 /* fall through, in case we raced with drbd_disconnect */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100554 case CONNECTION_LOST_WHILE_PENDING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700555 /* transfer log cleanup after connection loss */
556 /* assert something? */
557 if (req->rq_state & RQ_NET_PENDING)
558 dec_ap_pending(mdev);
559 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
560 req->rq_state |= RQ_NET_DONE;
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200561 if (req->rq_state & RQ_NET_SENT && req->rq_state & RQ_WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100562 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200563
Philipp Reisnerb411b362009-09-25 16:07:19 -0700564 /* if it is still queued, we may not complete it here.
565 * it will be canceled soon. */
566 if (!(req->rq_state & RQ_NET_QUEUED))
Philipp Reisnercfa03412010-06-23 17:18:51 +0200567 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700568 break;
569
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100570 case WRITE_ACKED_BY_PEER_AND_SIS:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700571 req->rq_state |= RQ_NET_SIS;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100572 case DISCARD_WRITE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700573 /* for discarded conflicting writes of multiple primaries,
574 * there is no need to keep anything in the tl, potential
575 * node crashes are covered by the activity log. */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700576 req->rq_state |= RQ_NET_DONE;
577 /* fall through */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100578 case WRITE_ACKED_BY_PEER:
Philipp Reisner303d1442011-04-13 16:24:47 -0700579 D_ASSERT(req->rq_state & RQ_EXP_WRITE_ACK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700580 /* protocol C; successfully written on peer.
581 * Nothing to do here.
582 * We want to keep the tl in place for all protocols, to cater
583 * for volatile write-back caches on lower level devices.
584 *
585 * A barrier request is expected to have forced all prior
586 * requests onto stable storage, so completion of a barrier
587 * request could set NET_DONE right here, and not wait for the
588 * P_BARRIER_ACK, but that is an unnecessary optimization. */
589
Philipp Reisner303d1442011-04-13 16:24:47 -0700590 goto ack_common;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700591 /* this makes it effectively the same as for: */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100592 case RECV_ACKED_BY_PEER:
Philipp Reisner303d1442011-04-13 16:24:47 -0700593 D_ASSERT(req->rq_state & RQ_EXP_RECEIVE_ACK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700594 /* protocol B; pretends to be successfully written on peer.
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100595 * see also notes above in HANDED_OVER_TO_NETWORK about
Philipp Reisnerb411b362009-09-25 16:07:19 -0700596 * protocol != C */
Philipp Reisner303d1442011-04-13 16:24:47 -0700597 ack_common:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700598 req->rq_state |= RQ_NET_OK;
599 D_ASSERT(req->rq_state & RQ_NET_PENDING);
600 dec_ap_pending(mdev);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100601 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700602 req->rq_state &= ~RQ_NET_PENDING;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200603 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700604 break;
605
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100606 case POSTPONE_WRITE:
Philipp Reisner303d1442011-04-13 16:24:47 -0700607 D_ASSERT(req->rq_state & RQ_EXP_WRITE_ACK);
608 /* If this node has already detected the write conflict, the
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100609 * worker will be waiting on misc_wait. Wake it up once this
610 * request has completed locally.
611 */
612 D_ASSERT(req->rq_state & RQ_NET_PENDING);
613 req->rq_state |= RQ_POSTPONED;
614 _req_may_be_done_not_susp(req, m);
615 break;
616
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100617 case NEG_ACKED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700618 /* assert something? */
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200619 if (req->rq_state & RQ_NET_PENDING) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700620 dec_ap_pending(mdev);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100621 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200622 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700623 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
624
625 req->rq_state |= RQ_NET_DONE;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200626 _req_may_be_done_not_susp(req, m);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100627 /* else: done by HANDED_OVER_TO_NETWORK */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700628 break;
629
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100630 case FAIL_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200631 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
632 break;
633
Philipp Reisnercfa03412010-06-23 17:18:51 +0200634 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisner265be2d2010-05-31 10:14:17 +0200635 break;
636
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100637 case RESTART_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200638 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
639 break;
640
641 req->rq_state &= ~RQ_LOCAL_COMPLETED;
642
643 rv = MR_READ;
644 if (bio_data_dir(req->master_bio) == WRITE)
645 rv = MR_WRITE;
646
647 get_ldev(mdev);
648 req->w.cb = w_restart_disk_io;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100649 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200650 break;
651
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100652 case RESEND:
Philipp Reisner11b58e72010-05-12 17:08:26 +0200653 /* If RQ_NET_OK is already set, we got a P_WRITE_ACK or P_RECV_ACK
Philipp Reisner47ff2d02010-06-18 13:56:57 +0200654 before the connection loss (B&C only); only P_BARRIER_ACK was missing.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200655 Trowing them out of the TL here by pretending we got a BARRIER_ACK
Philipp Reisner481c6f52010-06-22 14:03:27 +0200656 We ensure that the peer was not rebooted */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200657 if (!(req->rq_state & RQ_NET_OK)) {
658 if (req->w.cb) {
Philipp Reisnere42325a2011-01-19 13:55:45 +0100659 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200660 rv = req->rq_state & RQ_WRITE ? MR_WRITE : MR_READ;
661 }
662 break;
663 }
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100664 /* else, fall through to BARRIER_ACKED */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200665
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100666 case BARRIER_ACKED:
Philipp Reisner288f4222010-05-27 15:07:43 +0200667 if (!(req->rq_state & RQ_WRITE))
668 break;
669
Philipp Reisnerb411b362009-09-25 16:07:19 -0700670 if (req->rq_state & RQ_NET_PENDING) {
671 /* barrier came in before all requests have been acked.
672 * this is bad, because if the connection is lost now,
673 * we won't be able to clean them up... */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100674 dev_err(DEV, "FIXME (BARRIER_ACKED but pending)\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +0100675 list_move(&req->tl_requests, &mdev->tconn->out_of_sequence_requests);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700676 }
Lars Ellenberge636db52011-01-21 17:10:37 +0100677 if ((req->rq_state & RQ_NET_MASK) != 0) {
678 req->rq_state |= RQ_NET_DONE;
Philipp Reisner303d1442011-04-13 16:24:47 -0700679 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)))
Philipp Reisner89e58e72011-01-19 13:12:45 +0100680 atomic_sub(req->i.size>>9, &mdev->ap_in_flight);
Lars Ellenberge636db52011-01-21 17:10:37 +0100681 }
Philipp Reisnercfa03412010-06-23 17:18:51 +0200682 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700683 break;
684
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100685 case DATA_RECEIVED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700686 D_ASSERT(req->rq_state & RQ_NET_PENDING);
687 dec_ap_pending(mdev);
688 req->rq_state &= ~RQ_NET_PENDING;
689 req->rq_state |= (RQ_NET_OK|RQ_NET_DONE);
Philipp Reisnercfa03412010-06-23 17:18:51 +0200690 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700691 break;
692 };
Philipp Reisner2a806992010-06-09 14:07:43 +0200693
694 return rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700695}
696
697/* we may do a local read if:
698 * - we are consistent (of course),
699 * - or we are generally inconsistent,
700 * BUT we are still/already IN SYNC for this area.
701 * since size may be bigger than BM_BLOCK_SIZE,
702 * we may need to check several bits.
703 */
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100704static bool drbd_may_do_local_read(struct drbd_conf *mdev, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700705{
706 unsigned long sbnr, ebnr;
707 sector_t esector, nr_sectors;
708
709 if (mdev->state.disk == D_UP_TO_DATE)
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100710 return true;
Lars Ellenberg8c387de2011-02-18 14:13:07 +0100711 if (mdev->state.disk != D_INCONSISTENT)
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100712 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700713 esector = sector + (size >> 9) - 1;
Andreas Gruenbacher8ca98442011-02-21 12:34:58 +0100714 nr_sectors = drbd_get_capacity(mdev->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700715 D_ASSERT(sector < nr_sectors);
716 D_ASSERT(esector < nr_sectors);
717
718 sbnr = BM_SECT_TO_BIT(sector);
719 ebnr = BM_SECT_TO_BIT(esector);
720
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100721 return drbd_bm_count_bits(mdev, sbnr, ebnr) == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700722}
723
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100724/*
725 * complete_conflicting_writes - wait for any conflicting write requests
726 *
727 * The write_requests tree contains all active write requests which we
728 * currently know about. Wait for any requests to complete which conflict with
729 * the new one.
730 */
731static int complete_conflicting_writes(struct drbd_conf *mdev,
732 sector_t sector, int size)
733{
734 for(;;) {
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100735 struct drbd_interval *i;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100736 int err;
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100737
738 i = drbd_find_overlap(&mdev->write_requests, sector, size);
739 if (!i)
740 return 0;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100741 err = drbd_wait_misc(mdev, i);
742 if (err)
743 return err;
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100744 }
745}
746
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100747int __drbd_make_request(struct drbd_conf *mdev, struct bio *bio, unsigned long start_time)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700748{
749 const int rw = bio_rw(bio);
750 const int size = bio->bi_size;
751 const sector_t sector = bio->bi_sector;
752 struct drbd_tl_epoch *b = NULL;
753 struct drbd_request *req;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200754 struct net_conf *nc;
Philipp Reisner73a01a12010-10-27 14:33:00 +0200755 int local, remote, send_oos = 0;
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100756 int err;
Philipp Reisner9a25a042010-05-10 16:42:23 +0200757 int ret = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700758
759 /* allocate outside of all locks; */
760 req = drbd_req_new(mdev, bio);
761 if (!req) {
762 dec_ap_bio(mdev);
763 /* only pass the error to the upper layers.
764 * if user cannot handle io errors, that's not our business. */
765 dev_err(DEV, "could not kmalloc() req\n");
766 bio_endio(bio, -ENOMEM);
767 return 0;
768 }
Philipp Reisneraeda1cd62010-11-09 17:45:06 +0100769 req->start_time = start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700770
Philipp Reisnerb411b362009-09-25 16:07:19 -0700771 local = get_ldev(mdev);
772 if (!local) {
773 bio_put(req->private_bio); /* or we get a bio leak */
774 req->private_bio = NULL;
775 }
776 if (rw == WRITE) {
777 remote = 1;
778 } else {
779 /* READ || READA */
780 if (local) {
781 if (!drbd_may_do_local_read(mdev, sector, size)) {
782 /* we could kick the syncer to
783 * sync this extent asap, wait for
784 * it, then continue locally.
785 * Or just issue the request remotely.
786 */
787 local = 0;
788 bio_put(req->private_bio);
789 req->private_bio = NULL;
790 put_ldev(mdev);
791 }
792 }
793 remote = !local && mdev->state.pdsk >= D_UP_TO_DATE;
794 }
795
796 /* If we have a disk, but a READA request is mapped to remote,
797 * we are R_PRIMARY, D_INCONSISTENT, SyncTarget.
798 * Just fail that READA request right here.
799 *
800 * THINK: maybe fail all READA when not local?
801 * or make this configurable...
802 * if network is slow, READA won't do any good.
803 */
804 if (rw == READA && mdev->state.disk >= D_INCONSISTENT && !local) {
805 err = -EWOULDBLOCK;
806 goto fail_and_free_req;
807 }
808
809 /* For WRITES going to the local disk, grab a reference on the target
810 * extent. This waits for any resync activity in the corresponding
811 * resync extent to finish, and, if necessary, pulls in the target
812 * extent into the activity log, which involves further disk io because
813 * of transactional on-disk meta data updates. */
Philipp Reisner07782862010-08-31 12:00:50 +0200814 if (rw == WRITE && local && !test_bit(AL_SUSPENDED, &mdev->flags)) {
815 req->rq_state |= RQ_IN_ACT_LOG;
Lars Ellenberg181286a2011-03-31 15:18:56 +0200816 drbd_al_begin_io(mdev, &req->i);
Philipp Reisner07782862010-08-31 12:00:50 +0200817 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700818
Philipp Reisner6a35c452011-01-17 20:27:30 +0100819 remote = remote && drbd_should_do_remote(mdev->state);
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +0100820 send_oos = rw == WRITE && drbd_should_send_out_of_sync(mdev->state);
Philipp Reisner37190942010-11-10 12:08:37 +0100821 D_ASSERT(!(remote && send_oos));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700822
Philipp Reisner2aebfab2011-03-28 16:48:11 +0200823 if (!(local || remote) && !drbd_suspended(mdev)) {
Lars Ellenbergfb2c7a12010-10-19 12:08:13 +0200824 if (__ratelimit(&drbd_ratelimit_state))
825 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100826 err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700827 goto fail_free_complete;
828 }
829
830 /* For WRITE request, we have to make sure that we have an
831 * unused_spare_tle, in case we need to start a new epoch.
832 * I try to be smart and avoid to pre-allocate always "just in case",
833 * but there is a race between testing the bit and pointer outside the
834 * spinlock, and grabbing the spinlock.
835 * if we lost that race, we retry. */
Philipp Reisner73a01a12010-10-27 14:33:00 +0200836 if (rw == WRITE && (remote || send_oos) &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100837 mdev->tconn->unused_spare_tle == NULL &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700838 test_bit(CREATE_BARRIER, &mdev->flags)) {
839allocate_barrier:
840 b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_NOIO);
841 if (!b) {
842 dev_err(DEV, "Failed to alloc barrier.\n");
843 err = -ENOMEM;
844 goto fail_free_complete;
845 }
846 }
847
848 /* GOOD, everything prepared, grab the spin_lock */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100849 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700850
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100851 if (rw == WRITE) {
852 err = complete_conflicting_writes(mdev, sector, size);
853 if (err) {
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100854 if (err != -ERESTARTSYS)
855 _conn_request_state(mdev->tconn,
856 NS(conn, C_TIMEOUT),
857 CS_HARD);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100858 spin_unlock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100859 err = -EIO;
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100860 goto fail_free_complete;
861 }
862 }
863
Philipp Reisner2aebfab2011-03-28 16:48:11 +0200864 if (drbd_suspended(mdev)) {
Philipp Reisner9a25a042010-05-10 16:42:23 +0200865 /* If we got suspended, use the retry mechanism of
866 generic_make_request() to restart processing of this
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +0100867 bio. In the next call to drbd_make_request
Philipp Reisner9a25a042010-05-10 16:42:23 +0200868 we sleep in inc_ap_bio() */
869 ret = 1;
Philipp Reisner87eeee42011-01-19 14:16:30 +0100870 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner9a25a042010-05-10 16:42:23 +0200871 goto fail_free_complete;
872 }
873
Philipp Reisner73a01a12010-10-27 14:33:00 +0200874 if (remote || send_oos) {
Philipp Reisner6a35c452011-01-17 20:27:30 +0100875 remote = drbd_should_do_remote(mdev->state);
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +0100876 send_oos = rw == WRITE && drbd_should_send_out_of_sync(mdev->state);
Philipp Reisner37190942010-11-10 12:08:37 +0100877 D_ASSERT(!(remote && send_oos));
Philipp Reisner73a01a12010-10-27 14:33:00 +0200878
879 if (!(remote || send_oos))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700880 dev_warn(DEV, "lost connection while grabbing the req_lock!\n");
881 if (!(local || remote)) {
882 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +0100883 spin_unlock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100884 err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700885 goto fail_free_complete;
886 }
887 }
888
Philipp Reisner87eeee42011-01-19 14:16:30 +0100889 if (b && mdev->tconn->unused_spare_tle == NULL) {
890 mdev->tconn->unused_spare_tle = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700891 b = NULL;
892 }
Philipp Reisner73a01a12010-10-27 14:33:00 +0200893 if (rw == WRITE && (remote || send_oos) &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100894 mdev->tconn->unused_spare_tle == NULL &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700895 test_bit(CREATE_BARRIER, &mdev->flags)) {
896 /* someone closed the current epoch
897 * while we were grabbing the spinlock */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100898 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700899 goto allocate_barrier;
900 }
901
902
903 /* Update disk stats */
904 _drbd_start_io_acct(mdev, req, bio);
905
906 /* _maybe_start_new_epoch(mdev);
907 * If we need to generate a write barrier packet, we have to add the
908 * new epoch (barrier) object, and queue the barrier packet for sending,
909 * and queue the req's data after it _within the same lock_, otherwise
910 * we have race conditions were the reorder domains could be mixed up.
911 *
912 * Even read requests may start a new epoch and queue the corresponding
913 * barrier packet. To get the write ordering right, we only have to
914 * make sure that, if this is a write request and it triggered a
915 * barrier packet, this request is queued within the same spinlock. */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100916 if ((remote || send_oos) && mdev->tconn->unused_spare_tle &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700917 test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100918 _tl_add_barrier(mdev->tconn, mdev->tconn->unused_spare_tle);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100919 mdev->tconn->unused_spare_tle = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700920 } else {
921 D_ASSERT(!(remote && rw == WRITE &&
922 test_bit(CREATE_BARRIER, &mdev->flags)));
923 }
924
925 /* NOTE
926 * Actually, 'local' may be wrong here already, since we may have failed
927 * to write to the meta data, and may become wrong anytime because of
928 * local io-error for some other request, which would lead to us
929 * "detaching" the local disk.
930 *
931 * 'remote' may become wrong any time because the network could fail.
932 *
933 * This is a harmless race condition, though, since it is handled
934 * correctly at the appropriate places; so it just defers the failure
935 * of the respective operation.
936 */
937
938 /* mark them early for readability.
939 * this just sets some state flags. */
940 if (remote)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100941 _req_mod(req, TO_BE_SENT);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700942 if (local)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100943 _req_mod(req, TO_BE_SUBMITTED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700944
Philipp Reisner87eeee42011-01-19 14:16:30 +0100945 list_add_tail(&req->tl_requests, &mdev->tconn->newest_tle->requests);
Philipp Reisner288f4222010-05-27 15:07:43 +0200946
Philipp Reisnerb411b362009-09-25 16:07:19 -0700947 /* NOTE remote first: to get the concurrent write detection right,
948 * we must register the request before start of local IO. */
949 if (remote) {
950 /* either WRITE and C_CONNECTED,
951 * or READ, and no local disk,
952 * or READ, but not in sync.
953 */
954 _req_mod(req, (rw == WRITE)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100955 ? QUEUE_FOR_NET_WRITE
956 : QUEUE_FOR_NET_READ);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700957 }
Philipp Reisner73a01a12010-10-27 14:33:00 +0200958 if (send_oos && drbd_set_out_of_sync(mdev, sector, size))
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100959 _req_mod(req, QUEUE_FOR_SEND_OOS);
Philipp Reisner67531712010-10-27 12:21:30 +0200960
Philipp Reisner44ed1672011-04-19 17:10:19 +0200961 rcu_read_lock();
962 nc = rcu_dereference(mdev->tconn->net_conf);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200963 if (remote &&
Philipp Reisner44ed1672011-04-19 17:10:19 +0200964 nc->on_congestion != OC_BLOCK && mdev->tconn->agreed_pro_version >= 96) {
Philipp Reisner67531712010-10-27 12:21:30 +0200965 int congested = 0;
966
Philipp Reisner44ed1672011-04-19 17:10:19 +0200967 if (nc->cong_fill &&
968 atomic_read(&mdev->ap_in_flight) >= nc->cong_fill) {
Philipp Reisner67531712010-10-27 12:21:30 +0200969 dev_info(DEV, "Congestion-fill threshold reached\n");
970 congested = 1;
971 }
972
Philipp Reisner44ed1672011-04-19 17:10:19 +0200973 if (mdev->act_log->used >= nc->cong_extents) {
Philipp Reisner67531712010-10-27 12:21:30 +0200974 dev_info(DEV, "Congestion-extents threshold reached\n");
975 congested = 1;
976 }
977
Philipp Reisner71c78cf2011-01-14 19:20:34 +0100978 if (congested) {
Philipp Reisner039312b2011-01-21 14:13:22 +0100979 queue_barrier(mdev); /* last barrier, after mirrored writes */
Philipp Reisner73a01a12010-10-27 14:33:00 +0200980
Philipp Reisner44ed1672011-04-19 17:10:19 +0200981 if (nc->on_congestion == OC_PULL_AHEAD)
Philipp Reisner67531712010-10-27 12:21:30 +0200982 _drbd_set_state(_NS(mdev, conn, C_AHEAD), 0, NULL);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200983 else /*nc->on_congestion == OC_DISCONNECT */
Philipp Reisner67531712010-10-27 12:21:30 +0200984 _drbd_set_state(_NS(mdev, conn, C_DISCONNECTING), 0, NULL);
985 }
986 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200987 rcu_read_unlock();
Philipp Reisner67531712010-10-27 12:21:30 +0200988
Philipp Reisner87eeee42011-01-19 14:16:30 +0100989 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700990 kfree(b); /* if someone else has beaten us to it... */
991
992 if (local) {
993 req->private_bio->bi_bdev = mdev->ldev->backing_bdev;
994
Lars Ellenberg6719fb02010-10-18 23:04:07 +0200995 /* State may have changed since we grabbed our reference on the
996 * mdev->ldev member. Double check, and short-circuit to endio.
997 * In case the last activity log transaction failed to get on
998 * stable storage, and this is a WRITE, we may not even submit
999 * this bio. */
1000 if (get_ldev(mdev)) {
Andreas Gruenbacher0cf9d272010-12-07 10:43:29 +01001001 if (drbd_insert_fault(mdev, rw == WRITE ? DRBD_FAULT_DT_WR
1002 : rw == READ ? DRBD_FAULT_DT_RD
1003 : DRBD_FAULT_DT_RA))
Lars Ellenberg6719fb02010-10-18 23:04:07 +02001004 bio_endio(req->private_bio, -EIO);
1005 else
1006 generic_make_request(req->private_bio);
1007 put_ldev(mdev);
1008 } else
Philipp Reisnerb411b362009-09-25 16:07:19 -07001009 bio_endio(req->private_bio, -EIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001010 }
1011
Philipp Reisnerb411b362009-09-25 16:07:19 -07001012 return 0;
1013
1014fail_free_complete:
Lars Ellenberg76727f62011-05-16 15:31:45 +02001015 if (req->rq_state & RQ_IN_ACT_LOG)
Lars Ellenberg181286a2011-03-31 15:18:56 +02001016 drbd_al_complete_io(mdev, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001017fail_and_free_req:
1018 if (local) {
1019 bio_put(req->private_bio);
1020 req->private_bio = NULL;
1021 put_ldev(mdev);
1022 }
Philipp Reisner9a25a042010-05-10 16:42:23 +02001023 if (!ret)
1024 bio_endio(bio, err);
1025
Philipp Reisnerb411b362009-09-25 16:07:19 -07001026 drbd_req_free(req);
1027 dec_ap_bio(mdev);
1028 kfree(b);
1029
Philipp Reisner9a25a042010-05-10 16:42:23 +02001030 return ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001031}
1032
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01001033int drbd_make_request(struct request_queue *q, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001034{
Philipp Reisnerb411b362009-09-25 16:07:19 -07001035 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001036 unsigned long start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001037
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001038 start_time = jiffies;
1039
Philipp Reisnerb411b362009-09-25 16:07:19 -07001040 /*
1041 * what we "blindly" assume:
1042 */
1043 D_ASSERT(bio->bi_size > 0);
Andreas Gruenbacherc670a392011-02-21 12:41:39 +01001044 D_ASSERT(IS_ALIGNED(bio->bi_size, 512));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001045
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001046 inc_ap_bio(mdev);
1047 return __drbd_make_request(mdev, bio, start_time);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001048}
1049
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001050/* This is called by bio_add_page().
Philipp Reisnerb411b362009-09-25 16:07:19 -07001051 *
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001052 * q->max_hw_sectors and other global limits are already enforced there.
1053 *
1054 * We need to call down to our lower level device,
1055 * in case it has special restrictions.
1056 *
1057 * We also may need to enforce configured max-bio-bvecs limits.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001058 *
1059 * As long as the BIO is empty we have to allow at least one bvec,
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001060 * regardless of size and offset, so no need to ask lower levels.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001061 */
1062int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec)
1063{
1064 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001065 unsigned int bio_size = bvm->bi_size;
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001066 int limit = DRBD_MAX_BIO_SIZE;
1067 int backing_limit;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001068
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001069 if (bio_size && get_ldev(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001070 struct request_queue * const b =
1071 mdev->ldev->backing_bdev->bd_disk->queue;
Lars Ellenberga1c88d02010-05-14 19:16:41 +02001072 if (b->merge_bvec_fn) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001073 backing_limit = b->merge_bvec_fn(b, bvm, bvec);
1074 limit = min(limit, backing_limit);
1075 }
1076 put_ldev(mdev);
1077 }
1078 return limit;
1079}
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001080
1081void request_timer_fn(unsigned long data)
1082{
1083 struct drbd_conf *mdev = (struct drbd_conf *) data;
Philipp Reisner8b924f12011-03-01 11:08:28 +01001084 struct drbd_tconn *tconn = mdev->tconn;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001085 struct drbd_request *req; /* oldest request */
1086 struct list_head *le;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001087 struct net_conf *nc;
Philipp Reisner3b03ad52011-07-15 13:53:06 +02001088 unsigned long ent = 0, dt = 0, et, nt; /* effective timeout = ko_count * timeout */
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001089
Philipp Reisner44ed1672011-04-19 17:10:19 +02001090 rcu_read_lock();
1091 nc = rcu_dereference(tconn->net_conf);
Philipp Reisnercdfda632011-07-05 15:38:59 +02001092 ent = nc ? nc->timeout * HZ/10 * nc->ko_count : 0;
1093
1094 if (get_ldev(mdev)) {
1095 dt = rcu_dereference(mdev->ldev->disk_conf)->disk_timeout * HZ / 10;
1096 put_ldev(mdev);
1097 }
Philipp Reisner44ed1672011-04-19 17:10:19 +02001098 rcu_read_unlock();
1099
Philipp Reisnercdfda632011-07-05 15:38:59 +02001100 et = min_not_zero(dt, ent);
1101
1102 if (!et || (mdev->state.conn < C_WF_REPORT_PARAMS && mdev->state.disk <= D_FAILED))
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001103 return; /* Recurring timer stopped */
1104
Philipp Reisner8b924f12011-03-01 11:08:28 +01001105 spin_lock_irq(&tconn->req_lock);
1106 le = &tconn->oldest_tle->requests;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001107 if (list_empty(le)) {
Philipp Reisner8b924f12011-03-01 11:08:28 +01001108 spin_unlock_irq(&tconn->req_lock);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001109 mod_timer(&mdev->request_timer, jiffies + et);
1110 return;
1111 }
1112
1113 le = le->prev;
1114 req = list_entry(le, struct drbd_request, tl_requests);
Philipp Reisnercdfda632011-07-05 15:38:59 +02001115 if (ent && req->rq_state & RQ_NET_PENDING) {
1116 if (time_is_before_eq_jiffies(req->start_time + ent)) {
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001117 dev_warn(DEV, "Remote failed to finish a request within ko-count * timeout\n");
Philipp Reisnercdfda632011-07-05 15:38:59 +02001118 _drbd_set_state(_NS(mdev, conn, C_TIMEOUT), CS_VERBOSE | CS_HARD, NULL);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001119 }
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001120 }
Philipp Reisnercdfda632011-07-05 15:38:59 +02001121 if (dt && req->rq_state & RQ_LOCAL_PENDING) {
1122 if (time_is_before_eq_jiffies(req->start_time + dt)) {
1123 dev_warn(DEV, "Local backing device failed to meet the disk-timeout\n");
1124 __drbd_chk_io_error(mdev, 1);
1125 }
1126 }
Philipp Reisner3b03ad52011-07-15 13:53:06 +02001127 nt = (time_is_before_eq_jiffies(req->start_time + et) ? jiffies : req->start_time) + et;
Philipp Reisner8b924f12011-03-01 11:08:28 +01001128 spin_unlock_irq(&tconn->req_lock);
Philipp Reisner3b03ad52011-07-15 13:53:06 +02001129 mod_timer(&mdev->request_timer, nt);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001130}