blob: df5f106273275160be69478193a70f60deec5c83 [file] [log] [blame]
Philipp Reisnerb411b362009-09-25 16:07:19 -07001/*
2 drbd_req.c
3
4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5
6 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
7 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
8 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
9
10 drbd is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 drbd is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with drbd; see the file COPYING. If not, write to
22 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 */
25
Philipp Reisnerb411b362009-09-25 16:07:19 -070026#include <linux/module.h>
27
28#include <linux/slab.h>
29#include <linux/drbd.h>
30#include "drbd_int.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070031#include "drbd_req.h"
32
33
34/* Update disk stats at start of I/O request */
35static void _drbd_start_io_acct(struct drbd_conf *mdev, struct drbd_request *req, struct bio *bio)
36{
37 const int rw = bio_data_dir(bio);
38 int cpu;
39 cpu = part_stat_lock();
40 part_stat_inc(cpu, &mdev->vdisk->part0, ios[rw]);
41 part_stat_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio));
Philipp Reisner753c8912009-11-18 15:52:51 +010042 part_inc_in_flight(&mdev->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070043 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070044}
45
46/* Update disk stats when completing request upwards */
47static void _drbd_end_io_acct(struct drbd_conf *mdev, struct drbd_request *req)
48{
49 int rw = bio_data_dir(req->master_bio);
50 unsigned long duration = jiffies - req->start_time;
51 int cpu;
52 cpu = part_stat_lock();
53 part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration);
54 part_round_stats(cpu, &mdev->vdisk->part0);
Philipp Reisner753c8912009-11-18 15:52:51 +010055 part_dec_in_flight(&mdev->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070056 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070057}
58
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010059static struct drbd_request *drbd_req_new(struct drbd_conf *mdev,
60 struct bio *bio_src)
61{
62 struct drbd_request *req;
63
64 req = mempool_alloc(drbd_request_mempool, GFP_NOIO);
65 if (!req)
66 return NULL;
67
68 drbd_req_make_private_bio(req, bio_src);
69 req->rq_state = bio_data_dir(bio_src) == WRITE ? RQ_WRITE : 0;
70 req->mdev = mdev;
71 req->master_bio = bio_src;
72 req->epoch = 0;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010073
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010074 drbd_clear_interval(&req->i);
75 req->i.sector = bio_src->bi_sector;
76 req->i.size = bio_src->bi_size;
Andreas 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
119 * to the local io completion callback drbd_endio_pri.
120 * 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)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100131 drbd_al_complete_io(mdev, req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700132 put_ldev(mdev);
133 } else if (__ratelimit(&drbd_ratelimit_state)) {
134 dev_warn(DEV, "Should have called drbd_al_complete_io(, %llu), "
135 "but my Disk seems to have failed :(\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100136 (unsigned long long) req->i.sector);
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;
158 /* inc_ap_pending done here, so we won't
159 * get imbalanced on connection loss.
160 * dec_ap_pending will be done in got_BarrierAck
161 * or (on connection loss) in tl_clear. */
162 inc_ap_pending(mdev);
Philipp Reisnere42325a2011-01-19 13:55:45 +0100163 drbd_queue_work(&mdev->tconn->data.work, &b->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700164 set_bit(CREATE_BARRIER, &mdev->flags);
165}
166
167static void _about_to_complete_local_write(struct drbd_conf *mdev,
168 struct drbd_request *req)
169{
170 const unsigned long s = req->rq_state;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700171
Lars Ellenberg8a3c1042010-12-05 14:11:14 +0100172 /* Before we can signal completion to the upper layers,
173 * we may need to close the current epoch.
174 * We can skip this, if this request has not even been sent, because we
175 * did not have a fully established connection yet/anymore, during
176 * bitmap exchange, or while we are C_AHEAD due to congestion policy.
177 */
178 if (mdev->state.conn >= C_CONNECTED &&
179 (s & RQ_NET_SENT) != 0 &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100180 req->epoch == mdev->tconn->newest_tle->br_number)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700181 queue_barrier(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700182}
183
184void complete_master_bio(struct drbd_conf *mdev,
185 struct bio_and_error *m)
186{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700187 bio_endio(m->bio, m->error);
188 dec_ap_bio(mdev);
189}
190
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100191
192static void drbd_remove_request_interval(struct rb_root *root,
193 struct drbd_request *req)
194{
195 struct drbd_conf *mdev = req->mdev;
196 struct drbd_interval *i = &req->i;
197
198 drbd_remove_interval(root, i);
199
200 /* Wake up any processes waiting for this request to complete. */
201 if (i->waiting)
202 wake_up(&mdev->misc_wait);
203}
204
Philipp Reisnerb411b362009-09-25 16:07:19 -0700205/* Helper for __req_mod().
206 * Set m->bio to the master bio, if it is fit to be completed,
207 * or leave it alone (it is initialized to NULL in __req_mod),
208 * if it has already been completed, or cannot be completed yet.
209 * If m->bio is set, the error status to be returned is placed in m->error.
210 */
211void _req_may_be_done(struct drbd_request *req, struct bio_and_error *m)
212{
213 const unsigned long s = req->rq_state;
214 struct drbd_conf *mdev = req->mdev;
215 /* only WRITES may end up here without a master bio (on barrier ack) */
216 int rw = req->master_bio ? bio_data_dir(req->master_bio) : WRITE;
217
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 */
227 if (s & RQ_NET_QUEUED)
228 return;
229 if (s & RQ_NET_PENDING)
230 return;
231 if (s & RQ_LOCAL_PENDING)
232 return;
233
234 if (req->master_bio) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100235 /* this is DATA_RECEIVED (remote read)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700236 * or protocol C P_WRITE_ACK
237 * or protocol B P_RECV_ACK
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100238 * or protocol A "HANDED_OVER_TO_NETWORK" (SendAck)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700239 * or canceled or failed,
240 * or killed from the transfer log due to connection loss.
241 */
242
243 /*
244 * figure out whether to report success or failure.
245 *
246 * report success when at least one of the operations succeeded.
247 * or, to put the other way,
248 * only report failure, when both operations failed.
249 *
250 * what to do about the failures is handled elsewhere.
251 * what we need to do here is just: complete the master_bio.
252 *
253 * local completion error, if any, has been stored as ERR_PTR
254 * in private_bio within drbd_endio_pri.
255 */
256 int ok = (s & RQ_LOCAL_OK) || (s & RQ_NET_OK);
257 int error = PTR_ERR(req->private_bio);
258
259 /* remove the request from the conflict detection
260 * respective block_id verification hash */
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100261 if (!drbd_interval_empty(&req->i)) {
262 struct rb_root *root;
263
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100264 if (rw == WRITE)
265 root = &mdev->write_requests;
266 else
267 root = &mdev->read_requests;
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100268 drbd_remove_request_interval(root, req);
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100269 } else
Philipp Reisner8825f7c2010-10-21 17:21:19 +0200270 D_ASSERT((s & (RQ_NET_MASK & ~RQ_NET_DONE)) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700271
272 /* for writes we need to do some extra housekeeping */
273 if (rw == WRITE)
274 _about_to_complete_local_write(mdev, req);
275
276 /* Update disk stats */
277 _drbd_end_io_acct(mdev, req);
278
279 m->error = ok ? 0 : (error ?: -EIO);
280 m->bio = req->master_bio;
281 req->master_bio = NULL;
282 }
283
284 if ((s & RQ_NET_MASK) == 0 || (s & RQ_NET_DONE)) {
285 /* this is disconnected (local only) operation,
286 * or protocol C P_WRITE_ACK,
287 * or protocol A or B P_BARRIER_ACK,
288 * or killed from the transfer log due to connection loss. */
289 _req_is_done(mdev, req, rw);
290 }
291 /* else: network part and not DONE yet. that is
292 * protocol A or B, barrier ack still pending... */
293}
294
Philipp Reisnercfa03412010-06-23 17:18:51 +0200295static void _req_may_be_done_not_susp(struct drbd_request *req, struct bio_and_error *m)
296{
297 struct drbd_conf *mdev = req->mdev;
298
Philipp Reisnerfb22c402010-09-08 23:20:21 +0200299 if (!is_susp(mdev->state))
Philipp Reisnercfa03412010-06-23 17:18:51 +0200300 _req_may_be_done(req, m);
301}
302
Philipp Reisnerb411b362009-09-25 16:07:19 -0700303/*
304 * checks whether there was an overlapping request
305 * or ee already registered.
306 *
307 * if so, return 1, in which case this request is completed on the spot,
308 * without ever being submitted or send.
309 *
310 * return 0 if it is ok to submit this request.
311 *
312 * NOTE:
313 * paranoia: assume something above us is broken, and issues different write
314 * requests for the same block simultaneously...
315 *
316 * To ensure these won't be reordered differently on both nodes, resulting in
317 * diverging data sets, we discard the later one(s). Not that this is supposed
318 * to happen, but this is the rationale why we also have to check for
319 * conflicting requests with local origin, and why we have to do so regardless
320 * of whether we allowed multiple primaries.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700321 */
322static int _req_conflicts(struct drbd_request *req)
323{
324 struct drbd_conf *mdev = req->mdev;
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100325 const sector_t sector = req->i.sector;
326 const int size = req->i.size;
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100327 struct drbd_interval *i;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700328
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100329 D_ASSERT(drbd_interval_empty(&req->i));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700330
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +0100331 if (!get_net_conf(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700332 return 0;
333
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100334 i = drbd_find_overlap(&mdev->write_requests, sector, size);
335 if (i) {
Andreas Gruenbacher5e472262011-01-27 14:42:51 +0100336 dev_alert(DEV, "%s[%u] Concurrent %s write detected! "
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100337 "[DISCARD L] new: %llus +%u; "
338 "pending: %llus +%u\n",
339 current->comm, current->pid,
Andreas Gruenbacher5e472262011-01-27 14:42:51 +0100340 i->local ? "local" : "remote",
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100341 (unsigned long long)sector, size,
Andreas Gruenbacher5e472262011-01-27 14:42:51 +0100342 (unsigned long long)i->sector, i->size);
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100343 goto out_conflict;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700344 }
345
Philipp Reisnerb411b362009-09-25 16:07:19 -0700346 /* this is like it should be, and what we expected.
347 * our users do behave after all... */
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +0100348 put_net_conf(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700349 return 0;
350
351out_conflict:
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +0100352 put_net_conf(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700353 return 1;
354}
355
356/* obviously this could be coded as many single functions
357 * instead of one huge switch,
358 * or by putting the code directly in the respective locations
359 * (as it has been before).
360 *
361 * but having it this way
362 * enforces that it is all in this one place, where it is easier to audit,
363 * it makes it obvious that whatever "event" "happens" to a request should
364 * happen "atomically" within the req_lock,
365 * and it enforces that we have to think in a very structured manner
366 * about the "events" that may happen to a request during its life time ...
367 */
Philipp Reisner2a806992010-06-09 14:07:43 +0200368int __req_mod(struct drbd_request *req, enum drbd_req_event what,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700369 struct bio_and_error *m)
370{
371 struct drbd_conf *mdev = req->mdev;
Philipp Reisner2a806992010-06-09 14:07:43 +0200372 int rv = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700373 m->bio = NULL;
374
Philipp Reisnerb411b362009-09-25 16:07:19 -0700375 switch (what) {
376 default:
377 dev_err(DEV, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__);
378 break;
379
380 /* does not happen...
381 * initialization done in drbd_req_new
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100382 case CREATED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700383 break;
384 */
385
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100386 case TO_BE_SENT: /* via network */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700387 /* reached via drbd_make_request_common
388 * and from w_read_retry_remote */
389 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
390 req->rq_state |= RQ_NET_PENDING;
391 inc_ap_pending(mdev);
392 break;
393
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100394 case TO_BE_SUBMITTED: /* locally */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700395 /* reached via drbd_make_request_common */
396 D_ASSERT(!(req->rq_state & RQ_LOCAL_MASK));
397 req->rq_state |= RQ_LOCAL_PENDING;
398 break;
399
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100400 case COMPLETED_OK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700401 if (bio_data_dir(req->master_bio) == WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100402 mdev->writ_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700403 else
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100404 mdev->read_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700405
406 req->rq_state |= (RQ_LOCAL_COMPLETED|RQ_LOCAL_OK);
407 req->rq_state &= ~RQ_LOCAL_PENDING;
408
Philipp Reisnercfa03412010-06-23 17:18:51 +0200409 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700410 put_ldev(mdev);
411 break;
412
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100413 case WRITE_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700414 req->rq_state |= RQ_LOCAL_COMPLETED;
415 req->rq_state &= ~RQ_LOCAL_PENDING;
416
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100417 __drbd_chk_io_error(mdev, false);
Philipp Reisnercfa03412010-06-23 17:18:51 +0200418 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700419 put_ldev(mdev);
420 break;
421
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100422 case READ_AHEAD_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700423 /* it is legal to fail READA */
424 req->rq_state |= RQ_LOCAL_COMPLETED;
425 req->rq_state &= ~RQ_LOCAL_PENDING;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200426 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700427 put_ldev(mdev);
428 break;
429
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100430 case READ_COMPLETED_WITH_ERROR:
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100431 drbd_set_out_of_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700432
433 req->rq_state |= RQ_LOCAL_COMPLETED;
434 req->rq_state &= ~RQ_LOCAL_PENDING;
435
Philipp Reisnerb411b362009-09-25 16:07:19 -0700436 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700437
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100438 __drbd_chk_io_error(mdev, false);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700439 put_ldev(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700440
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200441 /* no point in retrying if there is no good remote data,
442 * or we have no connection. */
443 if (mdev->state.pdsk != D_UP_TO_DATE) {
Philipp Reisnercfa03412010-06-23 17:18:51 +0200444 _req_may_be_done_not_susp(req, m);
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200445 break;
446 }
447
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100448 /* _req_mod(req,TO_BE_SENT); oops, recursion... */
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200449 req->rq_state |= RQ_NET_PENDING;
450 inc_ap_pending(mdev);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100451 /* fall through: _req_mod(req,QUEUE_FOR_NET_READ); */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700452
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100453 case QUEUE_FOR_NET_READ:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700454 /* READ or READA, and
455 * no local disk,
456 * or target area marked as invalid,
457 * or just got an io-error. */
458 /* from drbd_make_request_common
459 * or from bio_endio during read io-error recovery */
460
461 /* so we can verify the handle in the answer packet
462 * corresponding hlist_del is in _req_may_be_done() */
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100463 drbd_insert_interval(&mdev->read_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700464
Lars Ellenberg83c38832009-11-03 02:22:06 +0100465 set_bit(UNPLUG_REMOTE, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700466
467 D_ASSERT(req->rq_state & RQ_NET_PENDING);
468 req->rq_state |= RQ_NET_QUEUED;
469 req->w.cb = (req->rq_state & RQ_LOCAL_MASK)
470 ? w_read_retry_remote
471 : w_send_read_req;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100472 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700473 break;
474
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100475 case QUEUE_FOR_NET_WRITE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700476 /* assert something? */
477 /* from drbd_make_request_common only */
478
Philipp Reisnerb411b362009-09-25 16:07:19 -0700479 /* corresponding hlist_del is in _req_may_be_done() */
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100480 drbd_insert_interval(&mdev->write_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700481
482 /* NOTE
483 * In case the req ended up on the transfer log before being
484 * queued on the worker, it could lead to this request being
485 * missed during cleanup after connection loss.
486 * So we have to do both operations here,
487 * within the same lock that protects the transfer log.
488 *
489 * _req_add_to_epoch(req); this has to be after the
490 * _maybe_start_new_epoch(req); which happened in
491 * drbd_make_request_common, because we now may set the bit
492 * again ourselves to close the current epoch.
493 *
494 * Add req to the (now) current epoch (barrier). */
495
Lars Ellenberg83c38832009-11-03 02:22:06 +0100496 /* otherwise we may lose an unplug, which may cause some remote
497 * io-scheduler timeout to expire, increasing maximum latency,
498 * hurting performance. */
499 set_bit(UNPLUG_REMOTE, &mdev->flags);
500
Philipp Reisnerb411b362009-09-25 16:07:19 -0700501 /* see drbd_make_request_common,
502 * just after it grabs the req_lock */
503 D_ASSERT(test_bit(CREATE_BARRIER, &mdev->flags) == 0);
504
Philipp Reisner87eeee42011-01-19 14:16:30 +0100505 req->epoch = mdev->tconn->newest_tle->br_number;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700506
507 /* increment size of current epoch */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100508 mdev->tconn->newest_tle->n_writes++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700509
510 /* queue work item to send data */
511 D_ASSERT(req->rq_state & RQ_NET_PENDING);
512 req->rq_state |= RQ_NET_QUEUED;
513 req->w.cb = w_send_dblock;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100514 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700515
516 /* close the epoch, in case it outgrew the limit */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100517 if (mdev->tconn->newest_tle->n_writes >= mdev->tconn->net_conf->max_epoch_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700518 queue_barrier(mdev);
519
520 break;
521
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100522 case QUEUE_FOR_SEND_OOS:
Philipp Reisner73a01a12010-10-27 14:33:00 +0200523 req->rq_state |= RQ_NET_QUEUED;
524 req->w.cb = w_send_oos;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100525 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200526 break;
527
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100528 case OOS_HANDED_TO_NETWORK:
Philipp Reisner73a01a12010-10-27 14:33:00 +0200529 /* actually the same */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100530 case SEND_CANCELED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700531 /* treat it the same */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100532 case SEND_FAILED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700533 /* real cleanup will be done from tl_clear. just update flags
534 * so it is no longer marked as on the worker queue */
535 req->rq_state &= ~RQ_NET_QUEUED;
536 /* if we did it right, tl_clear should be scheduled only after
537 * this, so this should not be necessary! */
Philipp Reisnercfa03412010-06-23 17:18:51 +0200538 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700539 break;
540
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100541 case HANDED_OVER_TO_NETWORK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700542 /* assert something? */
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200543 if (bio_data_dir(req->master_bio) == WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100544 atomic_add(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200545
Philipp Reisnerb411b362009-09-25 16:07:19 -0700546 if (bio_data_dir(req->master_bio) == WRITE &&
Philipp Reisner89e58e72011-01-19 13:12:45 +0100547 mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700548 /* this is what is dangerous about protocol A:
549 * pretend it was successfully written on the peer. */
550 if (req->rq_state & RQ_NET_PENDING) {
551 dec_ap_pending(mdev);
552 req->rq_state &= ~RQ_NET_PENDING;
553 req->rq_state |= RQ_NET_OK;
554 } /* else: neg-ack was faster... */
555 /* it is still not yet RQ_NET_DONE until the
556 * corresponding epoch barrier got acked as well,
557 * so we know what to dirty on connection loss */
558 }
559 req->rq_state &= ~RQ_NET_QUEUED;
560 req->rq_state |= RQ_NET_SENT;
561 /* because _drbd_send_zc_bio could sleep, and may want to
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100562 * dereference the bio even after the "WRITE_ACKED_BY_PEER" and
563 * "COMPLETED_OK" events came in, once we return from
Philipp Reisnerb411b362009-09-25 16:07:19 -0700564 * _drbd_send_zc_bio (drbd_send_dblock), we have to check
565 * whether it is done already, and end it. */
Philipp Reisnercfa03412010-06-23 17:18:51 +0200566 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700567 break;
568
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100569 case READ_RETRY_REMOTE_CANCELED:
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200570 req->rq_state &= ~RQ_NET_QUEUED;
571 /* fall through, in case we raced with drbd_disconnect */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100572 case CONNECTION_LOST_WHILE_PENDING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700573 /* transfer log cleanup after connection loss */
574 /* assert something? */
575 if (req->rq_state & RQ_NET_PENDING)
576 dec_ap_pending(mdev);
577 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
578 req->rq_state |= RQ_NET_DONE;
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200579 if (req->rq_state & RQ_NET_SENT && req->rq_state & RQ_WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100580 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200581
Philipp Reisnerb411b362009-09-25 16:07:19 -0700582 /* if it is still queued, we may not complete it here.
583 * it will be canceled soon. */
584 if (!(req->rq_state & RQ_NET_QUEUED))
Philipp Reisnercfa03412010-06-23 17:18:51 +0200585 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700586 break;
587
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100588 case WRITE_ACKED_BY_PEER_AND_SIS:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700589 req->rq_state |= RQ_NET_SIS;
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100590 case CONFLICT_DISCARDED_BY_PEER:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700591 /* for discarded conflicting writes of multiple primaries,
592 * there is no need to keep anything in the tl, potential
593 * node crashes are covered by the activity log. */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100594 if (what == CONFLICT_DISCARDED_BY_PEER)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700595 dev_alert(DEV, "Got DiscardAck packet %llus +%u!"
596 " DRBD is not a random data generator!\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100597 (unsigned long long)req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700598 req->rq_state |= RQ_NET_DONE;
599 /* fall through */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100600 case WRITE_ACKED_BY_PEER:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700601 /* protocol C; successfully written on peer.
602 * Nothing to do here.
603 * We want to keep the tl in place for all protocols, to cater
604 * for volatile write-back caches on lower level devices.
605 *
606 * A barrier request is expected to have forced all prior
607 * requests onto stable storage, so completion of a barrier
608 * request could set NET_DONE right here, and not wait for the
609 * P_BARRIER_ACK, but that is an unnecessary optimization. */
610
611 /* this makes it effectively the same as for: */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100612 case RECV_ACKED_BY_PEER:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700613 /* protocol B; pretends to be successfully written on peer.
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100614 * see also notes above in HANDED_OVER_TO_NETWORK about
Philipp Reisnerb411b362009-09-25 16:07:19 -0700615 * protocol != C */
616 req->rq_state |= RQ_NET_OK;
617 D_ASSERT(req->rq_state & RQ_NET_PENDING);
618 dec_ap_pending(mdev);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100619 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700620 req->rq_state &= ~RQ_NET_PENDING;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200621 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700622 break;
623
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100624 case NEG_ACKED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700625 /* assert something? */
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200626 if (req->rq_state & RQ_NET_PENDING) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700627 dec_ap_pending(mdev);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100628 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200629 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700630 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
631
632 req->rq_state |= RQ_NET_DONE;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200633 _req_may_be_done_not_susp(req, m);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100634 /* else: done by HANDED_OVER_TO_NETWORK */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700635 break;
636
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100637 case FAIL_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200638 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
639 break;
640
Philipp Reisnercfa03412010-06-23 17:18:51 +0200641 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisner265be2d2010-05-31 10:14:17 +0200642 break;
643
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100644 case RESTART_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200645 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
646 break;
647
648 req->rq_state &= ~RQ_LOCAL_COMPLETED;
649
650 rv = MR_READ;
651 if (bio_data_dir(req->master_bio) == WRITE)
652 rv = MR_WRITE;
653
654 get_ldev(mdev);
655 req->w.cb = w_restart_disk_io;
Philipp Reisnere42325a2011-01-19 13:55:45 +0100656 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200657 break;
658
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100659 case RESEND:
Philipp Reisner11b58e72010-05-12 17:08:26 +0200660 /* If RQ_NET_OK is already set, we got a P_WRITE_ACK or P_RECV_ACK
Philipp Reisner47ff2d02010-06-18 13:56:57 +0200661 before the connection loss (B&C only); only P_BARRIER_ACK was missing.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200662 Trowing them out of the TL here by pretending we got a BARRIER_ACK
Philipp Reisner481c6f52010-06-22 14:03:27 +0200663 We ensure that the peer was not rebooted */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200664 if (!(req->rq_state & RQ_NET_OK)) {
665 if (req->w.cb) {
Philipp Reisnere42325a2011-01-19 13:55:45 +0100666 drbd_queue_work(&mdev->tconn->data.work, &req->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200667 rv = req->rq_state & RQ_WRITE ? MR_WRITE : MR_READ;
668 }
669 break;
670 }
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100671 /* else, fall through to BARRIER_ACKED */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200672
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100673 case BARRIER_ACKED:
Philipp Reisner288f4222010-05-27 15:07:43 +0200674 if (!(req->rq_state & RQ_WRITE))
675 break;
676
Philipp Reisnerb411b362009-09-25 16:07:19 -0700677 if (req->rq_state & RQ_NET_PENDING) {
678 /* barrier came in before all requests have been acked.
679 * this is bad, because if the connection is lost now,
680 * we won't be able to clean them up... */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100681 dev_err(DEV, "FIXME (BARRIER_ACKED but pending)\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +0100682 list_move(&req->tl_requests, &mdev->tconn->out_of_sequence_requests);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700683 }
Lars Ellenberge636db52011-01-21 17:10:37 +0100684 if ((req->rq_state & RQ_NET_MASK) != 0) {
685 req->rq_state |= RQ_NET_DONE;
Philipp Reisner89e58e72011-01-19 13:12:45 +0100686 if (mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A)
687 atomic_sub(req->i.size>>9, &mdev->ap_in_flight);
Lars Ellenberge636db52011-01-21 17:10:37 +0100688 }
Philipp Reisnercfa03412010-06-23 17:18:51 +0200689 _req_may_be_done(req, m); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700690 break;
691
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100692 case DATA_RECEIVED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700693 D_ASSERT(req->rq_state & RQ_NET_PENDING);
694 dec_ap_pending(mdev);
695 req->rq_state &= ~RQ_NET_PENDING;
696 req->rq_state |= (RQ_NET_OK|RQ_NET_DONE);
Philipp Reisnercfa03412010-06-23 17:18:51 +0200697 _req_may_be_done_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700698 break;
699 };
Philipp Reisner2a806992010-06-09 14:07:43 +0200700
701 return rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700702}
703
704/* we may do a local read if:
705 * - we are consistent (of course),
706 * - or we are generally inconsistent,
707 * BUT we are still/already IN SYNC for this area.
708 * since size may be bigger than BM_BLOCK_SIZE,
709 * we may need to check several bits.
710 */
711static int drbd_may_do_local_read(struct drbd_conf *mdev, sector_t sector, int size)
712{
713 unsigned long sbnr, ebnr;
714 sector_t esector, nr_sectors;
715
716 if (mdev->state.disk == D_UP_TO_DATE)
717 return 1;
718 if (mdev->state.disk >= D_OUTDATED)
719 return 0;
720 if (mdev->state.disk < D_INCONSISTENT)
721 return 0;
722 /* state.disk == D_INCONSISTENT We will have a look at the BitMap */
723 nr_sectors = drbd_get_capacity(mdev->this_bdev);
724 esector = sector + (size >> 9) - 1;
725
726 D_ASSERT(sector < nr_sectors);
727 D_ASSERT(esector < nr_sectors);
728
729 sbnr = BM_SECT_TO_BIT(sector);
730 ebnr = BM_SECT_TO_BIT(esector);
731
732 return 0 == drbd_bm_count_bits(mdev, sbnr, ebnr);
733}
734
Philipp Reisneraeda1cd62010-11-09 17:45:06 +0100735static int drbd_make_request_common(struct drbd_conf *mdev, struct bio *bio, unsigned long start_time)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700736{
737 const int rw = bio_rw(bio);
738 const int size = bio->bi_size;
739 const sector_t sector = bio->bi_sector;
740 struct drbd_tl_epoch *b = NULL;
741 struct drbd_request *req;
Philipp Reisner73a01a12010-10-27 14:33:00 +0200742 int local, remote, send_oos = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700743 int err = -EIO;
Philipp Reisner9a25a042010-05-10 16:42:23 +0200744 int ret = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700745
746 /* allocate outside of all locks; */
747 req = drbd_req_new(mdev, bio);
748 if (!req) {
749 dec_ap_bio(mdev);
750 /* only pass the error to the upper layers.
751 * if user cannot handle io errors, that's not our business. */
752 dev_err(DEV, "could not kmalloc() req\n");
753 bio_endio(bio, -ENOMEM);
754 return 0;
755 }
Philipp Reisneraeda1cd62010-11-09 17:45:06 +0100756 req->start_time = start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700757
Philipp Reisnerb411b362009-09-25 16:07:19 -0700758 local = get_ldev(mdev);
759 if (!local) {
760 bio_put(req->private_bio); /* or we get a bio leak */
761 req->private_bio = NULL;
762 }
763 if (rw == WRITE) {
764 remote = 1;
765 } else {
766 /* READ || READA */
767 if (local) {
768 if (!drbd_may_do_local_read(mdev, sector, size)) {
769 /* we could kick the syncer to
770 * sync this extent asap, wait for
771 * it, then continue locally.
772 * Or just issue the request remotely.
773 */
774 local = 0;
775 bio_put(req->private_bio);
776 req->private_bio = NULL;
777 put_ldev(mdev);
778 }
779 }
780 remote = !local && mdev->state.pdsk >= D_UP_TO_DATE;
781 }
782
783 /* If we have a disk, but a READA request is mapped to remote,
784 * we are R_PRIMARY, D_INCONSISTENT, SyncTarget.
785 * Just fail that READA request right here.
786 *
787 * THINK: maybe fail all READA when not local?
788 * or make this configurable...
789 * if network is slow, READA won't do any good.
790 */
791 if (rw == READA && mdev->state.disk >= D_INCONSISTENT && !local) {
792 err = -EWOULDBLOCK;
793 goto fail_and_free_req;
794 }
795
796 /* For WRITES going to the local disk, grab a reference on the target
797 * extent. This waits for any resync activity in the corresponding
798 * resync extent to finish, and, if necessary, pulls in the target
799 * extent into the activity log, which involves further disk io because
800 * of transactional on-disk meta data updates. */
Philipp Reisner07782862010-08-31 12:00:50 +0200801 if (rw == WRITE && local && !test_bit(AL_SUSPENDED, &mdev->flags)) {
802 req->rq_state |= RQ_IN_ACT_LOG;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700803 drbd_al_begin_io(mdev, sector);
Philipp Reisner07782862010-08-31 12:00:50 +0200804 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700805
Philipp Reisner6a35c452011-01-17 20:27:30 +0100806 remote = remote && drbd_should_do_remote(mdev->state);
807 send_oos = rw == WRITE && drbd_should_send_oos(mdev->state);
Philipp Reisner37190942010-11-10 12:08:37 +0100808 D_ASSERT(!(remote && send_oos));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700809
Philipp Reisnerfb22c402010-09-08 23:20:21 +0200810 if (!(local || remote) && !is_susp(mdev->state)) {
Lars Ellenbergfb2c7a12010-10-19 12:08:13 +0200811 if (__ratelimit(&drbd_ratelimit_state))
812 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700813 goto fail_free_complete;
814 }
815
816 /* For WRITE request, we have to make sure that we have an
817 * unused_spare_tle, in case we need to start a new epoch.
818 * I try to be smart and avoid to pre-allocate always "just in case",
819 * but there is a race between testing the bit and pointer outside the
820 * spinlock, and grabbing the spinlock.
821 * if we lost that race, we retry. */
Philipp Reisner73a01a12010-10-27 14:33:00 +0200822 if (rw == WRITE && (remote || send_oos) &&
Philipp Reisner87eeee42011-01-19 14:16:30 +0100823 mdev->tconn->unused_spare_tle == NULL &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700824 test_bit(CREATE_BARRIER, &mdev->flags)) {
825allocate_barrier:
826 b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_NOIO);
827 if (!b) {
828 dev_err(DEV, "Failed to alloc barrier.\n");
829 err = -ENOMEM;
830 goto fail_free_complete;
831 }
832 }
833
834 /* GOOD, everything prepared, grab the spin_lock */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100835 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700836
Philipp Reisnerfb22c402010-09-08 23:20:21 +0200837 if (is_susp(mdev->state)) {
Philipp Reisner9a25a042010-05-10 16:42:23 +0200838 /* If we got suspended, use the retry mechanism of
839 generic_make_request() to restart processing of this
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +0100840 bio. In the next call to drbd_make_request
Philipp Reisner9a25a042010-05-10 16:42:23 +0200841 we sleep in inc_ap_bio() */
842 ret = 1;
Philipp Reisner87eeee42011-01-19 14:16:30 +0100843 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner9a25a042010-05-10 16:42:23 +0200844 goto fail_free_complete;
845 }
846
Philipp Reisner73a01a12010-10-27 14:33:00 +0200847 if (remote || send_oos) {
Philipp Reisner6a35c452011-01-17 20:27:30 +0100848 remote = drbd_should_do_remote(mdev->state);
849 send_oos = rw == WRITE && drbd_should_send_oos(mdev->state);
Philipp Reisner37190942010-11-10 12:08:37 +0100850 D_ASSERT(!(remote && send_oos));
Philipp Reisner73a01a12010-10-27 14:33:00 +0200851
852 if (!(remote || send_oos))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700853 dev_warn(DEV, "lost connection while grabbing the req_lock!\n");
854 if (!(local || remote)) {
855 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +0100856 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700857 goto fail_free_complete;
858 }
859 }
860
Philipp Reisner87eeee42011-01-19 14:16:30 +0100861 if (b && mdev->tconn->unused_spare_tle == NULL) {
862 mdev->tconn->unused_spare_tle = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700863 b = NULL;
864 }
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)) {
868 /* someone closed the current epoch
869 * while we were grabbing the spinlock */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100870 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700871 goto allocate_barrier;
872 }
873
874
875 /* Update disk stats */
876 _drbd_start_io_acct(mdev, req, bio);
877
878 /* _maybe_start_new_epoch(mdev);
879 * If we need to generate a write barrier packet, we have to add the
880 * new epoch (barrier) object, and queue the barrier packet for sending,
881 * and queue the req's data after it _within the same lock_, otherwise
882 * we have race conditions were the reorder domains could be mixed up.
883 *
884 * Even read requests may start a new epoch and queue the corresponding
885 * barrier packet. To get the write ordering right, we only have to
886 * make sure that, if this is a write request and it triggered a
887 * barrier packet, this request is queued within the same spinlock. */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100888 if ((remote || send_oos) && mdev->tconn->unused_spare_tle &&
Philipp Reisnerb411b362009-09-25 16:07:19 -0700889 test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) {
Philipp Reisner87eeee42011-01-19 14:16:30 +0100890 _tl_add_barrier(mdev, mdev->tconn->unused_spare_tle);
891 mdev->tconn->unused_spare_tle = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700892 } else {
893 D_ASSERT(!(remote && rw == WRITE &&
894 test_bit(CREATE_BARRIER, &mdev->flags)));
895 }
896
897 /* NOTE
898 * Actually, 'local' may be wrong here already, since we may have failed
899 * to write to the meta data, and may become wrong anytime because of
900 * local io-error for some other request, which would lead to us
901 * "detaching" the local disk.
902 *
903 * 'remote' may become wrong any time because the network could fail.
904 *
905 * This is a harmless race condition, though, since it is handled
906 * correctly at the appropriate places; so it just defers the failure
907 * of the respective operation.
908 */
909
910 /* mark them early for readability.
911 * this just sets some state flags. */
912 if (remote)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100913 _req_mod(req, TO_BE_SENT);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700914 if (local)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100915 _req_mod(req, TO_BE_SUBMITTED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700916
917 /* check this request on the collision detection hash tables.
918 * if we have a conflict, just complete it here.
919 * THINK do we want to check reads, too? (I don't think so...) */
Lars Ellenbergd28fd092010-07-09 23:28:10 +0200920 if (rw == WRITE && _req_conflicts(req))
921 goto fail_conflicting;
Philipp Reisner288f4222010-05-27 15:07:43 +0200922
Philipp Reisner87eeee42011-01-19 14:16:30 +0100923 list_add_tail(&req->tl_requests, &mdev->tconn->newest_tle->requests);
Philipp Reisner288f4222010-05-27 15:07:43 +0200924
Philipp Reisnerb411b362009-09-25 16:07:19 -0700925 /* NOTE remote first: to get the concurrent write detection right,
926 * we must register the request before start of local IO. */
927 if (remote) {
928 /* either WRITE and C_CONNECTED,
929 * or READ, and no local disk,
930 * or READ, but not in sync.
931 */
932 _req_mod(req, (rw == WRITE)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100933 ? QUEUE_FOR_NET_WRITE
934 : QUEUE_FOR_NET_READ);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700935 }
Philipp Reisner73a01a12010-10-27 14:33:00 +0200936 if (send_oos && drbd_set_out_of_sync(mdev, sector, size))
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100937 _req_mod(req, QUEUE_FOR_SEND_OOS);
Philipp Reisner67531712010-10-27 12:21:30 +0200938
Philipp Reisner73a01a12010-10-27 14:33:00 +0200939 if (remote &&
Philipp Reisner31890f42011-01-19 14:12:51 +0100940 mdev->tconn->net_conf->on_congestion != OC_BLOCK && mdev->tconn->agreed_pro_version >= 96) {
Philipp Reisner67531712010-10-27 12:21:30 +0200941 int congested = 0;
942
Philipp Reisner89e58e72011-01-19 13:12:45 +0100943 if (mdev->tconn->net_conf->cong_fill &&
944 atomic_read(&mdev->ap_in_flight) >= mdev->tconn->net_conf->cong_fill) {
Philipp Reisner67531712010-10-27 12:21:30 +0200945 dev_info(DEV, "Congestion-fill threshold reached\n");
946 congested = 1;
947 }
948
Philipp Reisner89e58e72011-01-19 13:12:45 +0100949 if (mdev->act_log->used >= mdev->tconn->net_conf->cong_extents) {
Philipp Reisner67531712010-10-27 12:21:30 +0200950 dev_info(DEV, "Congestion-extents threshold reached\n");
951 congested = 1;
952 }
953
Philipp Reisner71c78cf2011-01-14 19:20:34 +0100954 if (congested) {
Philipp Reisner039312b2011-01-21 14:13:22 +0100955 queue_barrier(mdev); /* last barrier, after mirrored writes */
Philipp Reisner73a01a12010-10-27 14:33:00 +0200956
Philipp Reisner89e58e72011-01-19 13:12:45 +0100957 if (mdev->tconn->net_conf->on_congestion == OC_PULL_AHEAD)
Philipp Reisner67531712010-10-27 12:21:30 +0200958 _drbd_set_state(_NS(mdev, conn, C_AHEAD), 0, NULL);
Philipp Reisner89e58e72011-01-19 13:12:45 +0100959 else /*mdev->tconn->net_conf->on_congestion == OC_DISCONNECT */
Philipp Reisner67531712010-10-27 12:21:30 +0200960 _drbd_set_state(_NS(mdev, conn, C_DISCONNECTING), 0, NULL);
961 }
962 }
963
Philipp Reisner87eeee42011-01-19 14:16:30 +0100964 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700965 kfree(b); /* if someone else has beaten us to it... */
966
967 if (local) {
968 req->private_bio->bi_bdev = mdev->ldev->backing_bdev;
969
Lars Ellenberg6719fb02010-10-18 23:04:07 +0200970 /* State may have changed since we grabbed our reference on the
971 * mdev->ldev member. Double check, and short-circuit to endio.
972 * In case the last activity log transaction failed to get on
973 * stable storage, and this is a WRITE, we may not even submit
974 * this bio. */
975 if (get_ldev(mdev)) {
Andreas Gruenbacher0cf9d272010-12-07 10:43:29 +0100976 if (drbd_insert_fault(mdev, rw == WRITE ? DRBD_FAULT_DT_WR
977 : rw == READ ? DRBD_FAULT_DT_RD
978 : DRBD_FAULT_DT_RA))
Lars Ellenberg6719fb02010-10-18 23:04:07 +0200979 bio_endio(req->private_bio, -EIO);
980 else
981 generic_make_request(req->private_bio);
982 put_ldev(mdev);
983 } else
Philipp Reisnerb411b362009-09-25 16:07:19 -0700984 bio_endio(req->private_bio, -EIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700985 }
986
Philipp Reisnerb411b362009-09-25 16:07:19 -0700987 return 0;
988
Lars Ellenbergd28fd092010-07-09 23:28:10 +0200989fail_conflicting:
990 /* this is a conflicting request.
991 * even though it may have been only _partially_
992 * overlapping with one of the currently pending requests,
993 * without even submitting or sending it, we will
994 * pretend that it was successfully served right now.
995 */
996 _drbd_end_io_acct(mdev, req);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100997 spin_unlock_irq(&mdev->tconn->req_lock);
Lars Ellenbergd28fd092010-07-09 23:28:10 +0200998 if (remote)
999 dec_ap_pending(mdev);
1000 /* THINK: do we want to fail it (-EIO), or pretend success?
1001 * this pretends success. */
1002 err = 0;
1003
Philipp Reisnerb411b362009-09-25 16:07:19 -07001004fail_free_complete:
Lars Ellenberg76727f62011-05-16 15:31:45 +02001005 if (req->rq_state & RQ_IN_ACT_LOG)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001006 drbd_al_complete_io(mdev, sector);
1007fail_and_free_req:
1008 if (local) {
1009 bio_put(req->private_bio);
1010 req->private_bio = NULL;
1011 put_ldev(mdev);
1012 }
Philipp Reisner9a25a042010-05-10 16:42:23 +02001013 if (!ret)
1014 bio_endio(bio, err);
1015
Philipp Reisnerb411b362009-09-25 16:07:19 -07001016 drbd_req_free(req);
1017 dec_ap_bio(mdev);
1018 kfree(b);
1019
Philipp Reisner9a25a042010-05-10 16:42:23 +02001020 return ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001021}
1022
1023/* helper function for drbd_make_request
1024 * if we can determine just by the mdev (state) that this request will fail,
1025 * return 1
1026 * otherwise return 0
1027 */
1028static int drbd_fail_request_early(struct drbd_conf *mdev, int is_write)
1029{
Philipp Reisnerb411b362009-09-25 16:07:19 -07001030 if (mdev->state.role != R_PRIMARY &&
1031 (!allow_oos || is_write)) {
1032 if (__ratelimit(&drbd_ratelimit_state)) {
1033 dev_err(DEV, "Process %s[%u] tried to %s; "
1034 "since we are not in Primary state, "
1035 "we cannot allow this\n",
1036 current->comm, current->pid,
1037 is_write ? "WRITE" : "READ");
1038 }
1039 return 1;
1040 }
1041
Philipp Reisnerb411b362009-09-25 16:07:19 -07001042 return 0;
1043}
1044
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01001045int drbd_make_request(struct request_queue *q, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001046{
1047 unsigned int s_enr, e_enr;
1048 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001049 unsigned long start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001050
1051 if (drbd_fail_request_early(mdev, bio_data_dir(bio) & WRITE)) {
1052 bio_endio(bio, -EPERM);
1053 return 0;
1054 }
1055
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001056 start_time = jiffies;
1057
Philipp Reisnerb411b362009-09-25 16:07:19 -07001058 /*
1059 * what we "blindly" assume:
1060 */
1061 D_ASSERT(bio->bi_size > 0);
1062 D_ASSERT((bio->bi_size & 0x1ff) == 0);
1063 D_ASSERT(bio->bi_idx == 0);
1064
1065 /* to make some things easier, force alignment of requests within the
1066 * granularity of our hash tables */
1067 s_enr = bio->bi_sector >> HT_SHIFT;
1068 e_enr = (bio->bi_sector+(bio->bi_size>>9)-1) >> HT_SHIFT;
1069
1070 if (likely(s_enr == e_enr)) {
1071 inc_ap_bio(mdev, 1);
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001072 return drbd_make_request_common(mdev, bio, start_time);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001073 }
1074
1075 /* can this bio be split generically?
1076 * Maybe add our own split-arbitrary-bios function. */
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001077 if (bio->bi_vcnt != 1 || bio->bi_idx != 0 || bio->bi_size > DRBD_MAX_BIO_SIZE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001078 /* rather error out here than BUG in bio_split */
1079 dev_err(DEV, "bio would need to, but cannot, be split: "
1080 "(vcnt=%u,idx=%u,size=%u,sector=%llu)\n",
1081 bio->bi_vcnt, bio->bi_idx, bio->bi_size,
1082 (unsigned long long)bio->bi_sector);
1083 bio_endio(bio, -EINVAL);
1084 } else {
1085 /* This bio crosses some boundary, so we have to split it. */
1086 struct bio_pair *bp;
1087 /* works for the "do not cross hash slot boundaries" case
1088 * e.g. sector 262269, size 4096
1089 * s_enr = 262269 >> 6 = 4097
1090 * e_enr = (262269+8-1) >> 6 = 4098
1091 * HT_SHIFT = 6
1092 * sps = 64, mask = 63
1093 * first_sectors = 64 - (262269 & 63) = 3
1094 */
1095 const sector_t sect = bio->bi_sector;
1096 const int sps = 1 << HT_SHIFT; /* sectors per slot */
1097 const int mask = sps - 1;
1098 const sector_t first_sectors = sps - (sect & mask);
Or Gerlitz03567812011-01-13 10:43:40 +01001099 bp = bio_split(bio, first_sectors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001100
1101 /* we need to get a "reference count" (ap_bio_cnt)
1102 * to avoid races with the disconnect/reconnect/suspend code.
Philipp Reisner9a25a042010-05-10 16:42:23 +02001103 * In case we need to split the bio here, we need to get three references
Philipp Reisnerb411b362009-09-25 16:07:19 -07001104 * atomically, otherwise we might deadlock when trying to submit the
1105 * second one! */
Philipp Reisner9a25a042010-05-10 16:42:23 +02001106 inc_ap_bio(mdev, 3);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001107
1108 D_ASSERT(e_enr == s_enr + 1);
1109
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001110 while (drbd_make_request_common(mdev, &bp->bio1, start_time))
Philipp Reisner9a25a042010-05-10 16:42:23 +02001111 inc_ap_bio(mdev, 1);
1112
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001113 while (drbd_make_request_common(mdev, &bp->bio2, start_time))
Philipp Reisner9a25a042010-05-10 16:42:23 +02001114 inc_ap_bio(mdev, 1);
1115
1116 dec_ap_bio(mdev);
1117
Philipp Reisnerb411b362009-09-25 16:07:19 -07001118 bio_pair_release(bp);
1119 }
1120 return 0;
1121}
1122
1123/* This is called by bio_add_page(). With this function we reduce
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001124 * the number of BIOs that span over multiple DRBD_MAX_BIO_SIZEs
Philipp Reisnerb411b362009-09-25 16:07:19 -07001125 * units (was AL_EXTENTs).
1126 *
1127 * we do the calculation within the lower 32bit of the byte offsets,
1128 * since we don't care for actual offset, but only check whether it
1129 * would cross "activity log extent" boundaries.
1130 *
1131 * As long as the BIO is empty we have to allow at least one bvec,
1132 * regardless of size and offset. so the resulting bio may still
1133 * cross extent boundaries. those are dealt with (bio_split) in
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01001134 * drbd_make_request.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001135 */
1136int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec)
1137{
1138 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
1139 unsigned int bio_offset =
1140 (unsigned int)bvm->bi_sector << 9; /* 32 bit */
1141 unsigned int bio_size = bvm->bi_size;
1142 int limit, backing_limit;
1143
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001144 limit = DRBD_MAX_BIO_SIZE
1145 - ((bio_offset & (DRBD_MAX_BIO_SIZE-1)) + bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001146 if (limit < 0)
1147 limit = 0;
1148 if (bio_size == 0) {
1149 if (limit <= bvec->bv_len)
1150 limit = bvec->bv_len;
1151 } else if (limit && get_ldev(mdev)) {
1152 struct request_queue * const b =
1153 mdev->ldev->backing_bdev->bd_disk->queue;
Lars Ellenberga1c88d02010-05-14 19:16:41 +02001154 if (b->merge_bvec_fn) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001155 backing_limit = b->merge_bvec_fn(b, bvm, bvec);
1156 limit = min(limit, backing_limit);
1157 }
1158 put_ldev(mdev);
1159 }
1160 return limit;
1161}
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001162
1163void request_timer_fn(unsigned long data)
1164{
1165 struct drbd_conf *mdev = (struct drbd_conf *) data;
1166 struct drbd_request *req; /* oldest request */
1167 struct list_head *le;
1168 unsigned long et = 0; /* effective timeout = ko_count * timeout */
1169
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01001170 if (get_net_conf(mdev->tconn)) {
Philipp Reisner89e58e72011-01-19 13:12:45 +01001171 et = mdev->tconn->net_conf->timeout*HZ/10 * mdev->tconn->net_conf->ko_count;
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01001172 put_net_conf(mdev->tconn);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001173 }
1174 if (!et || mdev->state.conn < C_WF_REPORT_PARAMS)
1175 return; /* Recurring timer stopped */
1176
Philipp Reisner87eeee42011-01-19 14:16:30 +01001177 spin_lock_irq(&mdev->tconn->req_lock);
1178 le = &mdev->tconn->oldest_tle->requests;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001179 if (list_empty(le)) {
Philipp Reisner87eeee42011-01-19 14:16:30 +01001180 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001181 mod_timer(&mdev->request_timer, jiffies + et);
1182 return;
1183 }
1184
1185 le = le->prev;
1186 req = list_entry(le, struct drbd_request, tl_requests);
1187 if (time_is_before_eq_jiffies(req->start_time + et)) {
1188 if (req->rq_state & RQ_NET_PENDING) {
1189 dev_warn(DEV, "Remote failed to finish a request within ko-count * timeout\n");
1190 _drbd_set_state(_NS(mdev, conn, C_TIMEOUT), CS_VERBOSE, NULL);
1191 } else {
1192 dev_warn(DEV, "Local backing block device frozen?\n");
1193 mod_timer(&mdev->request_timer, jiffies + et);
1194 }
1195 } else {
1196 mod_timer(&mdev->request_timer, req->start_time + et);
1197 }
1198
Philipp Reisner87eeee42011-01-19 14:16:30 +01001199 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001200}