blob: 6bac415358d76a13b0591a1dfa4ba1b2132a98d1 [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
Philipp Reisner57bcb6c2011-12-03 11:18:56 +010034static bool drbd_may_do_local_read(struct drbd_conf *mdev, sector_t sector, int size);
35
Philipp Reisnerb411b362009-09-25 16:07:19 -070036/* Update disk stats at start of I/O request */
37static void _drbd_start_io_acct(struct drbd_conf *mdev, struct drbd_request *req, struct bio *bio)
38{
39 const int rw = bio_data_dir(bio);
40 int cpu;
41 cpu = part_stat_lock();
Philipp Reisner72585d22012-02-23 12:56:26 +010042 part_round_stats(cpu, &mdev->vdisk->part0);
Philipp Reisnerb411b362009-09-25 16:07:19 -070043 part_stat_inc(cpu, &mdev->vdisk->part0, ios[rw]);
44 part_stat_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio));
Philipp Reisner376694a2011-11-07 10:54:28 +010045 (void) cpu; /* The macro invocations above want the cpu argument, I do not like
46 the compiler warning about cpu only assigned but never used... */
Philipp Reisner753c8912009-11-18 15:52:51 +010047 part_inc_in_flight(&mdev->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070048 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070049}
50
51/* Update disk stats when completing request upwards */
52static void _drbd_end_io_acct(struct drbd_conf *mdev, struct drbd_request *req)
53{
54 int rw = bio_data_dir(req->master_bio);
55 unsigned long duration = jiffies - req->start_time;
56 int cpu;
57 cpu = part_stat_lock();
58 part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration);
59 part_round_stats(cpu, &mdev->vdisk->part0);
Philipp Reisner753c8912009-11-18 15:52:51 +010060 part_dec_in_flight(&mdev->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070061 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070062}
63
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010064static struct drbd_request *drbd_req_new(struct drbd_conf *mdev,
65 struct bio *bio_src)
66{
67 struct drbd_request *req;
68
69 req = mempool_alloc(drbd_request_mempool, GFP_NOIO);
70 if (!req)
71 return NULL;
72
73 drbd_req_make_private_bio(req, bio_src);
74 req->rq_state = bio_data_dir(bio_src) == WRITE ? RQ_WRITE : 0;
Philipp Reisnera21e9292011-02-08 15:08:49 +010075 req->w.mdev = mdev;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010076 req->master_bio = bio_src;
77 req->epoch = 0;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010078
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010079 drbd_clear_interval(&req->i);
80 req->i.sector = bio_src->bi_sector;
81 req->i.size = bio_src->bi_size;
Andreas Gruenbacher5e472262011-01-27 14:42:51 +010082 req->i.local = true;
Andreas Gruenbacher53840642011-01-28 10:31:04 +010083 req->i.waiting = false;
84
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +010085 INIT_LIST_HEAD(&req->tl_requests);
86 INIT_LIST_HEAD(&req->w.list);
87
88 return req;
89}
90
91static void drbd_req_free(struct drbd_request *req)
92{
93 mempool_free(req, drbd_request_mempool);
94}
95
96/* rw is bio_data_dir(), only READ or WRITE */
Philipp Reisnerb411b362009-09-25 16:07:19 -070097static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
98{
99 const unsigned long s = req->rq_state;
Philipp Reisner288f4222010-05-27 15:07:43 +0200100
101 /* remove it from the transfer log.
102 * well, only if it had been there in the first
103 * place... if it had not (local only or conflicting
104 * and never sent), it should still be "empty" as
105 * initialized in drbd_req_new(), so we can list_del() it
106 * here unconditionally */
Lars Ellenberg2312f0b32011-11-24 10:36:25 +0100107 list_del_init(&req->tl_requests);
Philipp Reisner288f4222010-05-27 15:07:43 +0200108
Philipp Reisnerb411b362009-09-25 16:07:19 -0700109 /* if it was a write, we may have to set the corresponding
110 * bit(s) out-of-sync first. If it had a local part, we need to
111 * release the reference to the activity log. */
112 if (rw == WRITE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700113 /* Set out-of-sync unless both OK flags are set
114 * (local only or remote failed).
115 * Other places where we set out-of-sync:
116 * READ with local io-error */
117 if (!(s & RQ_NET_OK) || !(s & RQ_LOCAL_OK))
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100118 drbd_set_out_of_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700119
120 if ((s & RQ_NET_OK) && (s & RQ_LOCAL_OK) && (s & RQ_NET_SIS))
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100121 drbd_set_in_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700122
123 /* one might be tempted to move the drbd_al_complete_io
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +0100124 * to the local io completion callback drbd_request_endio.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700125 * but, if this was a mirror write, we may only
126 * drbd_al_complete_io after this is RQ_NET_DONE,
127 * otherwise the extent could be dropped from the al
128 * before it has actually been written on the peer.
129 * if we crash before our peer knows about the request,
130 * but after the extent has been dropped from the al,
131 * we would forget to resync the corresponding extent.
132 */
133 if (s & RQ_LOCAL_MASK) {
134 if (get_ldev_if_state(mdev, D_FAILED)) {
Philipp Reisner07782862010-08-31 12:00:50 +0200135 if (s & RQ_IN_ACT_LOG)
Lars Ellenberg181286a2011-03-31 15:18:56 +0200136 drbd_al_complete_io(mdev, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700137 put_ldev(mdev);
138 } else if (__ratelimit(&drbd_ratelimit_state)) {
Lars Ellenberg181286a2011-03-31 15:18:56 +0200139 dev_warn(DEV, "Should have called drbd_al_complete_io(, %llu, %u), "
140 "but my Disk seems to have failed :(\n",
141 (unsigned long long) req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700142 }
143 }
144 }
145
Lars Ellenberg2312f0b32011-11-24 10:36:25 +0100146 if (s & RQ_POSTPONED)
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +0200147 drbd_restart_request(req);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +0100148 else
149 drbd_req_free(req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700150}
151
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100152static void wake_all_senders(struct drbd_tconn *tconn) {
153 wake_up(&tconn->sender_work.q_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700154}
155
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100156/* must hold resource->req_lock */
157static void start_new_tl_epoch(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700158{
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100159 tconn->current_tle_writes = 0;
160 atomic_inc(&tconn->current_tle_nr);
161 wake_all_senders(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700162}
163
164void complete_master_bio(struct drbd_conf *mdev,
165 struct bio_and_error *m)
166{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700167 bio_endio(m->bio, m->error);
168 dec_ap_bio(mdev);
169}
170
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100171
172static void drbd_remove_request_interval(struct rb_root *root,
173 struct drbd_request *req)
174{
Philipp Reisnera21e9292011-02-08 15:08:49 +0100175 struct drbd_conf *mdev = req->w.mdev;
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100176 struct drbd_interval *i = &req->i;
177
178 drbd_remove_interval(root, i);
179
180 /* Wake up any processes waiting for this request to complete. */
181 if (i->waiting)
182 wake_up(&mdev->misc_wait);
183}
184
Lars Ellenberg8d6cdd72012-03-26 16:55:46 +0200185static void maybe_wakeup_conflicting_requests(struct drbd_request *req)
186{
187 const unsigned long s = req->rq_state;
188 if (s & RQ_LOCAL_PENDING && !(s & RQ_LOCAL_ABORTED))
189 return;
190 if (req->i.waiting)
191 /* Retry all conflicting peer requests. */
192 wake_up(&req->w.mdev->misc_wait);
193}
194
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200195static
196void req_may_be_done(struct drbd_request *req)
197{
198 const unsigned long s = req->rq_state;
199 struct drbd_conf *mdev = req->w.mdev;
200 int rw = req->rq_state & RQ_WRITE ? WRITE : READ;
201
202 /* req->master_bio still present means: Not yet completed.
203 *
204 * Unless this is RQ_POSTPONED, which will cause _req_is_done() to
205 * queue it on the retry workqueue instead of destroying it.
206 */
207 if (req->master_bio && !(s & RQ_POSTPONED))
208 return;
209
210 /* Local still pending, even though master_bio is already completed?
211 * may happen for RQ_LOCAL_ABORTED requests. */
212 if (s & RQ_LOCAL_PENDING)
213 return;
214
215 if ((s & RQ_NET_MASK) == 0 || (s & RQ_NET_DONE)) {
216 /* this is disconnected (local only) operation,
217 * or protocol A, B, or C P_BARRIER_ACK,
218 * or killed from the transfer log due to connection loss. */
219 _req_is_done(mdev, req, rw);
220 }
221 /* else: network part and not DONE yet. that is
222 * protocol A, B, or C, barrier ack still pending... */
223}
224
Philipp Reisnerb411b362009-09-25 16:07:19 -0700225/* Helper for __req_mod().
226 * Set m->bio to the master bio, if it is fit to be completed,
227 * or leave it alone (it is initialized to NULL in __req_mod),
228 * if it has already been completed, or cannot be completed yet.
229 * If m->bio is set, the error status to be returned is placed in m->error.
230 */
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200231static
232void req_may_be_completed(struct drbd_request *req, struct bio_and_error *m)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700233{
234 const unsigned long s = req->rq_state;
Philipp Reisnera21e9292011-02-08 15:08:49 +0100235 struct drbd_conf *mdev = req->w.mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700236
Philipp Reisnerb411b362009-09-25 16:07:19 -0700237 /* we must not complete the master bio, while it is
238 * still being processed by _drbd_send_zc_bio (drbd_send_dblock)
239 * not yet acknowledged by the peer
240 * not yet completed by the local io subsystem
241 * these flags may get cleared in any order by
242 * the worker,
243 * the receiver,
244 * the bio_endio completion callbacks.
245 */
Philipp Reisnercdfda632011-07-05 15:38:59 +0200246 if (s & RQ_LOCAL_PENDING && !(s & RQ_LOCAL_ABORTED))
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100247 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700248 if (s & RQ_NET_QUEUED)
249 return;
250 if (s & RQ_NET_PENDING)
251 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700252
253 if (req->master_bio) {
Lars Ellenberg4439c402012-03-26 17:29:30 +0200254 int rw = bio_rw(req->master_bio);
255
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100256 /* this is DATA_RECEIVED (remote read)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700257 * or protocol C P_WRITE_ACK
258 * or protocol B P_RECV_ACK
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100259 * or protocol A "HANDED_OVER_TO_NETWORK" (SendAck)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700260 * or canceled or failed,
261 * or killed from the transfer log due to connection loss.
262 */
263
264 /*
265 * figure out whether to report success or failure.
266 *
267 * report success when at least one of the operations succeeded.
268 * or, to put the other way,
269 * only report failure, when both operations failed.
270 *
271 * what to do about the failures is handled elsewhere.
272 * what we need to do here is just: complete the master_bio.
273 *
274 * local completion error, if any, has been stored as ERR_PTR
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +0100275 * in private_bio within drbd_request_endio.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700276 */
277 int ok = (s & RQ_LOCAL_OK) || (s & RQ_NET_OK);
278 int error = PTR_ERR(req->private_bio);
279
280 /* remove the request from the conflict detection
281 * respective block_id verification hash */
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100282 if (!drbd_interval_empty(&req->i)) {
283 struct rb_root *root;
284
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100285 if (rw == WRITE)
286 root = &mdev->write_requests;
287 else
288 root = &mdev->read_requests;
Andreas Gruenbacher53840642011-01-28 10:31:04 +0100289 drbd_remove_request_interval(root, req);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100290 } else if (!(s & RQ_POSTPONED))
Philipp Reisner8825f7c2010-10-21 17:21:19 +0200291 D_ASSERT((s & (RQ_NET_MASK & ~RQ_NET_DONE)) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700292
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100293 /* Before we can signal completion to the upper layers,
294 * we may need to close the current transfer log epoch.
295 * We are within the request lock, so we can simply compare
296 * the request epoch number with the current transfer log
297 * epoch number. If they match, increase the current_tle_nr,
298 * and reset the transfer log epoch write_cnt.
299 */
300 if (rw == WRITE &&
301 req->epoch == atomic_read(&mdev->tconn->current_tle_nr))
302 start_new_tl_epoch(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700303
304 /* Update disk stats */
305 _drbd_end_io_acct(mdev, req);
306
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200307 /* If READ failed,
Lars Ellenberg4439c402012-03-26 17:29:30 +0200308 * have it be pushed back to the retry work queue,
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200309 * so it will re-enter __drbd_make_request(),
Lars Ellenberg4439c402012-03-26 17:29:30 +0200310 * and be re-assigned to a suitable local or remote path,
311 * or failed if we do not have access to good data anymore.
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200312 *
313 * Unless it was failed early by __drbd_make_request(),
314 * because no path was available, in which case
315 * it was not even added to the transfer_log.
316 *
317 * READA may fail, and will not be retried.
318 *
Lars Ellenberg4439c402012-03-26 17:29:30 +0200319 * WRITE should have used all available paths already.
320 */
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200321 if (!ok && rw == READ && !list_empty(&req->tl_requests))
Lars Ellenberg4439c402012-03-26 17:29:30 +0200322 req->rq_state |= RQ_POSTPONED;
323
324 if (!(req->rq_state & RQ_POSTPONED)) {
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100325 m->error = ok ? 0 : (error ?: -EIO);
326 m->bio = req->master_bio;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +0100327 req->master_bio = NULL;
328 } else {
329 /* Assert that this will be _req_is_done()
330 * with this very invokation. */
331 /* FIXME:
332 * what about (RQ_LOCAL_PENDING | RQ_LOCAL_ABORTED)?
333 */
334 D_ASSERT(!(s & RQ_LOCAL_PENDING));
Lars Ellenberg629663c2012-06-08 16:39:24 +0200335 D_ASSERT((s & RQ_NET_MASK) == 0 || (s & RQ_NET_DONE));
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100336 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700337 }
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200338 req_may_be_done(req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700339}
340
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200341static void req_may_be_completed_not_susp(struct drbd_request *req, struct bio_and_error *m)
Philipp Reisnercfa03412010-06-23 17:18:51 +0200342{
Philipp Reisnera21e9292011-02-08 15:08:49 +0100343 struct drbd_conf *mdev = req->w.mdev;
Philipp Reisnercfa03412010-06-23 17:18:51 +0200344
Philipp Reisner2aebfab2011-03-28 16:48:11 +0200345 if (!drbd_suspended(mdev))
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200346 req_may_be_completed(req, m);
Philipp Reisnercfa03412010-06-23 17:18:51 +0200347}
348
Philipp Reisnerb411b362009-09-25 16:07:19 -0700349/* obviously this could be coded as many single functions
350 * instead of one huge switch,
351 * or by putting the code directly in the respective locations
352 * (as it has been before).
353 *
354 * but having it this way
355 * enforces that it is all in this one place, where it is easier to audit,
356 * it makes it obvious that whatever "event" "happens" to a request should
357 * happen "atomically" within the req_lock,
358 * and it enforces that we have to think in a very structured manner
359 * about the "events" that may happen to a request during its life time ...
360 */
Philipp Reisner2a806992010-06-09 14:07:43 +0200361int __req_mod(struct drbd_request *req, enum drbd_req_event what,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700362 struct bio_and_error *m)
363{
Philipp Reisnera21e9292011-02-08 15:08:49 +0100364 struct drbd_conf *mdev = req->w.mdev;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200365 struct net_conf *nc;
Philipp Reisner303d1442011-04-13 16:24:47 -0700366 int p, rv = 0;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100367
368 if (m)
369 m->bio = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700370
Philipp Reisnerb411b362009-09-25 16:07:19 -0700371 switch (what) {
372 default:
373 dev_err(DEV, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__);
374 break;
375
376 /* does not happen...
377 * initialization done in drbd_req_new
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100378 case CREATED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700379 break;
380 */
381
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100382 case TO_BE_SENT: /* via network */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100383 /* reached via __drbd_make_request
Philipp Reisnerb411b362009-09-25 16:07:19 -0700384 * and from w_read_retry_remote */
385 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
386 req->rq_state |= RQ_NET_PENDING;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200387 rcu_read_lock();
388 nc = rcu_dereference(mdev->tconn->net_conf);
389 p = nc->wire_protocol;
390 rcu_read_unlock();
Philipp Reisner303d1442011-04-13 16:24:47 -0700391 req->rq_state |=
392 p == DRBD_PROT_C ? RQ_EXP_WRITE_ACK :
393 p == DRBD_PROT_B ? RQ_EXP_RECEIVE_ACK : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700394 inc_ap_pending(mdev);
395 break;
396
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100397 case TO_BE_SUBMITTED: /* locally */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100398 /* reached via __drbd_make_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700399 D_ASSERT(!(req->rq_state & RQ_LOCAL_MASK));
400 req->rq_state |= RQ_LOCAL_PENDING;
401 break;
402
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100403 case COMPLETED_OK:
Philipp Reisnercdfda632011-07-05 15:38:59 +0200404 if (req->rq_state & RQ_WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100405 mdev->writ_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700406 else
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100407 mdev->read_cnt += req->i.size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700408
409 req->rq_state |= (RQ_LOCAL_COMPLETED|RQ_LOCAL_OK);
410 req->rq_state &= ~RQ_LOCAL_PENDING;
411
Lars Ellenberg8d6cdd72012-03-26 16:55:46 +0200412 maybe_wakeup_conflicting_requests(req);
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200413 req_may_be_completed_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700414 break;
415
Philipp Reisnercdfda632011-07-05 15:38:59 +0200416 case ABORT_DISK_IO:
417 req->rq_state |= RQ_LOCAL_ABORTED;
Lars Ellenberg4439c402012-03-26 17:29:30 +0200418 req_may_be_completed_not_susp(req, m);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200419 break;
420
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100421 case WRITE_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700422 req->rq_state |= RQ_LOCAL_COMPLETED;
423 req->rq_state &= ~RQ_LOCAL_PENDING;
424
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100425 __drbd_chk_io_error(mdev, false);
Lars Ellenberg8d6cdd72012-03-26 16:55:46 +0200426 maybe_wakeup_conflicting_requests(req);
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200427 req_may_be_completed_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700428 break;
429
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100430 case READ_AHEAD_COMPLETED_WITH_ERROR:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700431 /* it is legal to fail READA */
432 req->rq_state |= RQ_LOCAL_COMPLETED;
433 req->rq_state &= ~RQ_LOCAL_PENDING;
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200434 req_may_be_completed_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700435 break;
436
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100437 case READ_COMPLETED_WITH_ERROR:
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100438 drbd_set_out_of_sync(mdev, req->i.sector, req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700439
440 req->rq_state |= RQ_LOCAL_COMPLETED;
441 req->rq_state &= ~RQ_LOCAL_PENDING;
442
Philipp Reisnerb411b362009-09-25 16:07:19 -0700443 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700444
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100445 __drbd_chk_io_error(mdev, false);
Lars Ellenbergab53b902012-06-08 16:30:30 +0200446 req_may_be_completed_not_susp(req, m);
Lars Ellenberg4439c402012-03-26 17:29:30 +0200447 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700448
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100449 case QUEUE_FOR_NET_READ:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700450 /* READ or READA, and
451 * no local disk,
452 * or target area marked as invalid,
453 * or just got an io-error. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100454 /* from __drbd_make_request
Philipp Reisnerb411b362009-09-25 16:07:19 -0700455 * or from bio_endio during read io-error recovery */
456
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200457 /* So we can verify the handle in the answer packet.
458 * Corresponding drbd_remove_request_interval is in
459 * req_may_be_completed() */
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200460 D_ASSERT(drbd_interval_empty(&req->i));
Andreas Gruenbacherdac13892011-01-21 17:18:39 +0100461 drbd_insert_interval(&mdev->read_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700462
Lars Ellenberg83c38832009-11-03 02:22:06 +0100463 set_bit(UNPLUG_REMOTE, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700464
465 D_ASSERT(req->rq_state & RQ_NET_PENDING);
Lars Ellenberg4439c402012-03-26 17:29:30 +0200466 D_ASSERT((req->rq_state & RQ_LOCAL_MASK) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700467 req->rq_state |= RQ_NET_QUEUED;
Lars Ellenberg4439c402012-03-26 17:29:30 +0200468 req->w.cb = w_send_read_req;
Lars Ellenbergd5b27b02011-11-14 15:42:37 +0100469 drbd_queue_work(&mdev->tconn->sender_work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700470 break;
471
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100472 case QUEUE_FOR_NET_WRITE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700473 /* assert something? */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100474 /* from __drbd_make_request only */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700475
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200476 /* Corresponding drbd_remove_request_interval is in
477 * req_may_be_completed() */
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200478 D_ASSERT(drbd_interval_empty(&req->i));
Andreas Gruenbacherde696712011-01-20 15:00:24 +0100479 drbd_insert_interval(&mdev->write_requests, &req->i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700480
481 /* NOTE
482 * In case the req ended up on the transfer log before being
483 * queued on the worker, it could lead to this request being
484 * missed during cleanup after connection loss.
485 * So we have to do both operations here,
486 * within the same lock that protects the transfer log.
487 *
488 * _req_add_to_epoch(req); this has to be after the
489 * _maybe_start_new_epoch(req); which happened in
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100490 * __drbd_make_request, because we now may set the bit
Philipp Reisnerb411b362009-09-25 16:07:19 -0700491 * again ourselves to close the current epoch.
492 *
493 * Add req to the (now) current epoch (barrier). */
494
Lars Ellenberg83c38832009-11-03 02:22:06 +0100495 /* otherwise we may lose an unplug, which may cause some remote
496 * io-scheduler timeout to expire, increasing maximum latency,
497 * hurting performance. */
498 set_bit(UNPLUG_REMOTE, &mdev->flags);
499
Philipp Reisnerb411b362009-09-25 16:07:19 -0700500 /* queue work item to send data */
501 D_ASSERT(req->rq_state & RQ_NET_PENDING);
502 req->rq_state |= RQ_NET_QUEUED;
503 req->w.cb = w_send_dblock;
Lars Ellenbergd5b27b02011-11-14 15:42:37 +0100504 drbd_queue_work(&mdev->tconn->sender_work, &req->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700505
506 /* close the epoch, in case it outgrew the limit */
Philipp Reisner44ed1672011-04-19 17:10:19 +0200507 rcu_read_lock();
508 nc = rcu_dereference(mdev->tconn->net_conf);
509 p = nc->max_epoch_size;
510 rcu_read_unlock();
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100511 if (mdev->tconn->current_tle_writes >= p)
512 start_new_tl_epoch(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700513
514 break;
515
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100516 case QUEUE_FOR_SEND_OOS:
Philipp Reisner73a01a12010-10-27 14:33:00 +0200517 req->rq_state |= RQ_NET_QUEUED;
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +0100518 req->w.cb = w_send_out_of_sync;
Lars Ellenbergd5b27b02011-11-14 15:42:37 +0100519 drbd_queue_work(&mdev->tconn->sender_work, &req->w);
Philipp Reisner73a01a12010-10-27 14:33:00 +0200520 break;
521
Lars Ellenbergea9d6722012-03-26 16:46:39 +0200522 case READ_RETRY_REMOTE_CANCELED:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100523 case SEND_CANCELED:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100524 case SEND_FAILED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700525 /* real cleanup will be done from tl_clear. just update flags
526 * so it is no longer marked as on the worker queue */
527 req->rq_state &= ~RQ_NET_QUEUED;
528 /* if we did it right, tl_clear should be scheduled only after
529 * this, so this should not be necessary! */
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200530 req_may_be_completed_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700531 break;
532
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100533 case HANDED_OVER_TO_NETWORK:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700534 /* assert something? */
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200535 if (bio_data_dir(req->master_bio) == WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100536 atomic_add(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200537
Philipp Reisnerb411b362009-09-25 16:07:19 -0700538 if (bio_data_dir(req->master_bio) == WRITE &&
Philipp Reisner303d1442011-04-13 16:24:47 -0700539 !(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK))) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700540 /* this is what is dangerous about protocol A:
541 * pretend it was successfully written on the peer. */
542 if (req->rq_state & RQ_NET_PENDING) {
543 dec_ap_pending(mdev);
544 req->rq_state &= ~RQ_NET_PENDING;
545 req->rq_state |= RQ_NET_OK;
546 } /* else: neg-ack was faster... */
547 /* it is still not yet RQ_NET_DONE until the
548 * corresponding epoch barrier got acked as well,
549 * so we know what to dirty on connection loss */
550 }
551 req->rq_state &= ~RQ_NET_QUEUED;
552 req->rq_state |= RQ_NET_SENT;
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200553 req_may_be_completed_not_susp(req, m);
Lars Ellenberg27a434f2012-03-26 16:44:59 +0200554 break;
555
556 case OOS_HANDED_TO_NETWORK:
557 /* Was not set PENDING, no longer QUEUED, so is now DONE
558 * as far as this connection is concerned. */
559 req->rq_state &= ~RQ_NET_QUEUED;
560 req->rq_state |= RQ_NET_DONE;
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200561 req_may_be_completed_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700562 break;
563
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100564 case CONNECTION_LOST_WHILE_PENDING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700565 /* transfer log cleanup after connection loss */
566 /* assert something? */
567 if (req->rq_state & RQ_NET_PENDING)
568 dec_ap_pending(mdev);
Philipp Reisner57bcb6c2011-12-03 11:18:56 +0100569
570 p = !(req->rq_state & RQ_WRITE) && req->rq_state & RQ_NET_PENDING;
571
Philipp Reisnerb411b362009-09-25 16:07:19 -0700572 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
573 req->rq_state |= RQ_NET_DONE;
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200574 if (req->rq_state & RQ_NET_SENT && req->rq_state & RQ_WRITE)
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100575 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200576
Lars Ellenberg4439c402012-03-26 17:29:30 +0200577 req_may_be_completed(req, m); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700578 break;
579
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100580 case DISCARD_WRITE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700581 /* for discarded conflicting writes of multiple primaries,
582 * there is no need to keep anything in the tl, potential
583 * node crashes are covered by the activity log. */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700584 req->rq_state |= RQ_NET_DONE;
585 /* fall through */
Lars Ellenberg0afd5692012-03-26 16:51:11 +0200586 case WRITE_ACKED_BY_PEER_AND_SIS:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100587 case WRITE_ACKED_BY_PEER:
Lars Ellenberg0afd5692012-03-26 16:51:11 +0200588 if (what == WRITE_ACKED_BY_PEER_AND_SIS)
589 req->rq_state |= RQ_NET_SIS;
Philipp Reisner303d1442011-04-13 16:24:47 -0700590 D_ASSERT(req->rq_state & RQ_EXP_WRITE_ACK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700591 /* protocol C; successfully written on peer.
Lars Ellenberg0afd5692012-03-26 16:51:11 +0200592 * Nothing more to do here.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700593 * We want to keep the tl in place for all protocols, to cater
Lars Ellenberg0afd5692012-03-26 16:51:11 +0200594 * for volatile write-back caches on lower level devices. */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700595
Philipp Reisner303d1442011-04-13 16:24:47 -0700596 goto ack_common;
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100597 case RECV_ACKED_BY_PEER:
Philipp Reisner303d1442011-04-13 16:24:47 -0700598 D_ASSERT(req->rq_state & RQ_EXP_RECEIVE_ACK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700599 /* protocol B; pretends to be successfully written on peer.
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100600 * see also notes above in HANDED_OVER_TO_NETWORK about
Philipp Reisnerb411b362009-09-25 16:07:19 -0700601 * protocol != C */
Philipp Reisner303d1442011-04-13 16:24:47 -0700602 ack_common:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700603 req->rq_state |= RQ_NET_OK;
604 D_ASSERT(req->rq_state & RQ_NET_PENDING);
605 dec_ap_pending(mdev);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +0100606 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700607 req->rq_state &= ~RQ_NET_PENDING;
Lars Ellenberg8d6cdd72012-03-26 16:55:46 +0200608 maybe_wakeup_conflicting_requests(req);
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200609 req_may_be_completed_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700610 break;
611
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100612 case POSTPONE_WRITE:
Philipp Reisner303d1442011-04-13 16:24:47 -0700613 D_ASSERT(req->rq_state & RQ_EXP_WRITE_ACK);
614 /* If this node has already detected the write conflict, the
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100615 * worker will be waiting on misc_wait. Wake it up once this
616 * request has completed locally.
617 */
618 D_ASSERT(req->rq_state & RQ_NET_PENDING);
619 req->rq_state |= RQ_POSTPONED;
Lars Ellenberg8d6cdd72012-03-26 16:55:46 +0200620 maybe_wakeup_conflicting_requests(req);
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200621 req_may_be_completed_not_susp(req, m);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +0100622 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);
Philipp Reisnere8cdc342011-12-13 11:36:57 +0100628 if (req->rq_state & RQ_WRITE)
629 atomic_sub(req->i.size >> 9, &mdev->ap_in_flight);
Philipp Reisner759fbdf2010-10-26 16:02:27 +0200630 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700631 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
632
633 req->rq_state |= RQ_NET_DONE;
Philipp Reisner380207d2011-11-11 12:31:20 +0100634
Lars Ellenberg8d6cdd72012-03-26 16:55:46 +0200635 maybe_wakeup_conflicting_requests(req);
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200636 req_may_be_completed_not_susp(req, m);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100637 /* else: done by HANDED_OVER_TO_NETWORK */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700638 break;
639
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100640 case FAIL_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200641 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
642 break;
643
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200644 req_may_be_completed(req, m); /* Allowed while state.susp */
Philipp Reisner265be2d2010-05-31 10:14:17 +0200645 break;
646
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100647 case RESTART_FROZEN_DISK_IO:
Philipp Reisner265be2d2010-05-31 10:14:17 +0200648 if (!(req->rq_state & RQ_LOCAL_COMPLETED))
649 break;
650
651 req->rq_state &= ~RQ_LOCAL_COMPLETED;
652
653 rv = MR_READ;
654 if (bio_data_dir(req->master_bio) == WRITE)
655 rv = MR_WRITE;
656
657 get_ldev(mdev);
658 req->w.cb = w_restart_disk_io;
Lars Ellenbergd5b27b02011-11-14 15:42:37 +0100659 drbd_queue_work(&mdev->tconn->sender_work, &req->w);
Philipp Reisner265be2d2010-05-31 10:14:17 +0200660 break;
661
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100662 case RESEND:
Philipp Reisner11b58e72010-05-12 17:08:26 +0200663 /* If RQ_NET_OK is already set, we got a P_WRITE_ACK or P_RECV_ACK
Philipp Reisner47ff2d02010-06-18 13:56:57 +0200664 before the connection loss (B&C only); only P_BARRIER_ACK was missing.
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200665 Throwing them out of the TL here by pretending we got a BARRIER_ACK.
666 During connection handshake, we ensure that the peer was not rebooted. */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200667 if (!(req->rq_state & RQ_NET_OK)) {
668 if (req->w.cb) {
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100669 /* w.cb expected to be w_send_dblock, or w_send_read_req */
Lars Ellenbergd5b27b02011-11-14 15:42:37 +0100670 drbd_queue_work(&mdev->tconn->sender_work, &req->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200671 rv = req->rq_state & RQ_WRITE ? MR_WRITE : MR_READ;
672 }
673 break;
674 }
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100675 /* else, fall through to BARRIER_ACKED */
Philipp Reisner11b58e72010-05-12 17:08:26 +0200676
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100677 case BARRIER_ACKED:
Philipp Reisner288f4222010-05-27 15:07:43 +0200678 if (!(req->rq_state & RQ_WRITE))
679 break;
680
Philipp Reisnerb411b362009-09-25 16:07:19 -0700681 if (req->rq_state & RQ_NET_PENDING) {
Andreas Gruenbachera209b4a2011-08-17 12:43:25 +0200682 /* barrier came in before all requests were acked.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700683 * this is bad, because if the connection is lost now,
684 * we won't be able to clean them up... */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100685 dev_err(DEV, "FIXME (BARRIER_ACKED but pending)\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700686 }
Lars Ellenberge636db52011-01-21 17:10:37 +0100687 if ((req->rq_state & RQ_NET_MASK) != 0) {
688 req->rq_state |= RQ_NET_DONE;
Philipp Reisner303d1442011-04-13 16:24:47 -0700689 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)))
Philipp Reisner89e58e72011-01-19 13:12:45 +0100690 atomic_sub(req->i.size>>9, &mdev->ap_in_flight);
Lars Ellenberge636db52011-01-21 17:10:37 +0100691 }
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200692 req_may_be_done(req); /* Allowed while state.susp */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700693 break;
694
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100695 case DATA_RECEIVED:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700696 D_ASSERT(req->rq_state & RQ_NET_PENDING);
697 dec_ap_pending(mdev);
698 req->rq_state &= ~RQ_NET_PENDING;
699 req->rq_state |= (RQ_NET_OK|RQ_NET_DONE);
Lars Ellenberg6870ca62012-03-26 17:02:45 +0200700 req_may_be_completed_not_susp(req, m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700701 break;
702 };
Philipp Reisner2a806992010-06-09 14:07:43 +0200703
704 return rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700705}
706
707/* we may do a local read if:
708 * - we are consistent (of course),
709 * - or we are generally inconsistent,
710 * BUT we are still/already IN SYNC for this area.
711 * since size may be bigger than BM_BLOCK_SIZE,
712 * we may need to check several bits.
713 */
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100714static bool drbd_may_do_local_read(struct drbd_conf *mdev, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700715{
716 unsigned long sbnr, ebnr;
717 sector_t esector, nr_sectors;
718
719 if (mdev->state.disk == D_UP_TO_DATE)
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100720 return true;
Lars Ellenberg8c387de2011-02-18 14:13:07 +0100721 if (mdev->state.disk != D_INCONSISTENT)
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100722 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700723 esector = sector + (size >> 9) - 1;
Andreas Gruenbacher8ca98442011-02-21 12:34:58 +0100724 nr_sectors = drbd_get_capacity(mdev->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700725 D_ASSERT(sector < nr_sectors);
726 D_ASSERT(esector < nr_sectors);
727
728 sbnr = BM_SECT_TO_BIT(sector);
729 ebnr = BM_SECT_TO_BIT(esector);
730
Andreas Gruenbacher0da34df2010-12-19 20:48:29 +0100731 return drbd_bm_count_bits(mdev, sbnr, ebnr) == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700732}
733
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200734static bool remote_due_to_read_balancing(struct drbd_conf *mdev, sector_t sector,
735 enum drbd_read_balancing rbm)
Philipp Reisner380207d2011-11-11 12:31:20 +0100736{
Philipp Reisner380207d2011-11-11 12:31:20 +0100737 struct backing_dev_info *bdi;
Philipp Reisnerd60de032011-11-17 10:12:31 +0100738 int stripe_shift;
Philipp Reisner380207d2011-11-11 12:31:20 +0100739
Philipp Reisner380207d2011-11-11 12:31:20 +0100740 switch (rbm) {
741 case RB_CONGESTED_REMOTE:
742 bdi = &mdev->ldev->backing_bdev->bd_disk->queue->backing_dev_info;
743 return bdi_read_congested(bdi);
744 case RB_LEAST_PENDING:
745 return atomic_read(&mdev->local_cnt) >
746 atomic_read(&mdev->ap_pending_cnt) + atomic_read(&mdev->rs_pending_cnt);
Philipp Reisnerd60de032011-11-17 10:12:31 +0100747 case RB_32K_STRIPING: /* stripe_shift = 15 */
748 case RB_64K_STRIPING:
749 case RB_128K_STRIPING:
750 case RB_256K_STRIPING:
751 case RB_512K_STRIPING:
752 case RB_1M_STRIPING: /* stripe_shift = 20 */
753 stripe_shift = (rbm - RB_32K_STRIPING + 15);
754 return (sector >> (stripe_shift - 9)) & 1;
Philipp Reisner380207d2011-11-11 12:31:20 +0100755 case RB_ROUND_ROBIN:
756 return test_and_change_bit(READ_BALANCE_RR, &mdev->flags);
757 case RB_PREFER_REMOTE:
758 return true;
759 case RB_PREFER_LOCAL:
760 default:
761 return false;
762 }
763}
764
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100765/*
766 * complete_conflicting_writes - wait for any conflicting write requests
767 *
768 * The write_requests tree contains all active write requests which we
769 * currently know about. Wait for any requests to complete which conflict with
770 * the new one.
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200771 *
772 * Only way out: remove the conflicting intervals from the tree.
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100773 */
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200774static void complete_conflicting_writes(struct drbd_request *req)
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100775{
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200776 DEFINE_WAIT(wait);
777 struct drbd_conf *mdev = req->w.mdev;
778 struct drbd_interval *i;
779 sector_t sector = req->i.sector;
780 int size = req->i.size;
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100781
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200782 i = drbd_find_overlap(&mdev->write_requests, sector, size);
783 if (!i)
784 return;
785
786 for (;;) {
787 prepare_to_wait(&mdev->misc_wait, &wait, TASK_UNINTERRUPTIBLE);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100788 i = drbd_find_overlap(&mdev->write_requests, sector, size);
789 if (!i)
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200790 break;
791 /* Indicate to wake up device->misc_wait on progress. */
792 i->waiting = true;
793 spin_unlock_irq(&mdev->tconn->req_lock);
794 schedule();
795 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100796 }
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200797 finish_wait(&mdev->misc_wait, &wait);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100798}
799
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200800/* called within req_lock and rcu_read_lock() */
801static bool conn_check_congested(struct drbd_conf *mdev)
802{
803 struct drbd_tconn *tconn = mdev->tconn;
804 struct net_conf *nc;
805 bool congested = false;
806 enum drbd_on_congestion on_congestion;
807
808 nc = rcu_dereference(tconn->net_conf);
809 on_congestion = nc ? nc->on_congestion : OC_BLOCK;
810 if (on_congestion == OC_BLOCK ||
811 tconn->agreed_pro_version < 96)
812 return false;
813
814 if (nc->cong_fill &&
815 atomic_read(&mdev->ap_in_flight) >= nc->cong_fill) {
816 dev_info(DEV, "Congestion-fill threshold reached\n");
817 congested = true;
818 }
819
820 if (mdev->act_log->used >= nc->cong_extents) {
821 dev_info(DEV, "Congestion-extents threshold reached\n");
822 congested = true;
823 }
824
825 if (congested) {
826 if (mdev->tconn->current_tle_writes)
827 /* start a new epoch for non-mirrored writes */
828 start_new_tl_epoch(mdev->tconn);
829
830 if (on_congestion == OC_PULL_AHEAD)
831 _drbd_set_state(_NS(mdev, conn, C_AHEAD), 0, NULL);
832 else /*nc->on_congestion == OC_DISCONNECT */
833 _drbd_set_state(_NS(mdev, conn, C_DISCONNECTING), 0, NULL);
834 }
835
836 return congested;
837}
838
839/* If this returns false, and req->private_bio is still set,
840 * this should be submitted locally.
841 *
842 * If it returns false, but req->private_bio is not set,
843 * we do not have access to good data :(
844 *
845 * Otherwise, this destroys req->private_bio, if any,
846 * and returns true.
847 */
848static bool do_remote_read(struct drbd_request *req)
849{
850 struct drbd_conf *mdev = req->w.mdev;
851 enum drbd_read_balancing rbm;
852
853 if (req->private_bio) {
854 if (!drbd_may_do_local_read(mdev,
855 req->i.sector, req->i.size)) {
856 bio_put(req->private_bio);
857 req->private_bio = NULL;
858 put_ldev(mdev);
859 }
860 }
861
862 if (mdev->state.pdsk != D_UP_TO_DATE)
863 return false;
864
865 /* TODO: improve read balancing decisions, take into account drbd
866 * protocol, pending requests etc. */
867
868 rcu_read_lock();
869 rbm = rcu_dereference(mdev->ldev->disk_conf)->read_balancing;
870 rcu_read_unlock();
871
872 if (rbm == RB_PREFER_LOCAL && req->private_bio)
873 return false; /* submit locally */
874
875 if (req->private_bio == NULL)
876 return true;
877
878 if (remote_due_to_read_balancing(mdev, req->i.sector, rbm)) {
879 if (req->private_bio) {
880 bio_put(req->private_bio);
881 req->private_bio = NULL;
882 put_ldev(mdev);
883 }
884 return true;
885 }
886
887 return false;
888}
889
890/* returns number of connections (== 1, for drbd 8.4)
891 * expected to actually write this data,
892 * which does NOT include those that we are L_AHEAD for. */
893static int drbd_process_write_request(struct drbd_request *req)
894{
895 struct drbd_conf *mdev = req->w.mdev;
896 int remote, send_oos;
897
898 rcu_read_lock();
899 remote = drbd_should_do_remote(mdev->state);
900 if (remote) {
901 conn_check_congested(mdev);
902 remote = drbd_should_do_remote(mdev->state);
903 }
904 send_oos = drbd_should_send_out_of_sync(mdev->state);
905 rcu_read_unlock();
906
907 if (!remote && !send_oos)
908 return 0;
909
910 D_ASSERT(!(remote && send_oos));
911
912 if (remote) {
913 _req_mod(req, TO_BE_SENT);
914 _req_mod(req, QUEUE_FOR_NET_WRITE);
915 } else if (drbd_set_out_of_sync(mdev, req->i.sector, req->i.size))
916 _req_mod(req, QUEUE_FOR_SEND_OOS);
917
918 return remote;
919}
920
921static void
922drbd_submit_req_private_bio(struct drbd_request *req)
923{
924 struct drbd_conf *mdev = req->w.mdev;
925 struct bio *bio = req->private_bio;
926 const int rw = bio_rw(bio);
927
928 bio->bi_bdev = mdev->ldev->backing_bdev;
929
930 /* State may have changed since we grabbed our reference on the
931 * ->ldev member. Double check, and short-circuit to endio.
932 * In case the last activity log transaction failed to get on
933 * stable storage, and this is a WRITE, we may not even submit
934 * this bio. */
935 if (get_ldev(mdev)) {
936 if (drbd_insert_fault(mdev,
937 rw == WRITE ? DRBD_FAULT_DT_WR
938 : rw == READ ? DRBD_FAULT_DT_RD
939 : DRBD_FAULT_DT_RA))
940 bio_endio(bio, -EIO);
941 else
942 generic_make_request(bio);
943 put_ldev(mdev);
944 } else
945 bio_endio(bio, -EIO);
946}
947
Lars Ellenberg5df69ec2012-01-24 16:49:58 +0100948void __drbd_make_request(struct drbd_conf *mdev, struct bio *bio, unsigned long start_time)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700949{
950 const int rw = bio_rw(bio);
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200951 struct bio_and_error m = { NULL, };
Philipp Reisnerb411b362009-09-25 16:07:19 -0700952 struct drbd_request *req;
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200953 bool no_remote = false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700954
955 /* allocate outside of all locks; */
956 req = drbd_req_new(mdev, bio);
957 if (!req) {
958 dec_ap_bio(mdev);
959 /* only pass the error to the upper layers.
960 * if user cannot handle io errors, that's not our business. */
961 dev_err(DEV, "could not kmalloc() req\n");
962 bio_endio(bio, -ENOMEM);
Lars Ellenberg5df69ec2012-01-24 16:49:58 +0100963 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700964 }
Philipp Reisneraeda1cd62010-11-09 17:45:06 +0100965 req->start_time = start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700966
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200967 if (!get_ldev(mdev)) {
968 bio_put(req->private_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700969 req->private_bio = NULL;
970 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700971
972 /* For WRITES going to the local disk, grab a reference on the target
973 * extent. This waits for any resync activity in the corresponding
974 * resync extent to finish, and, if necessary, pulls in the target
975 * extent into the activity log, which involves further disk io because
976 * of transactional on-disk meta data updates. */
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200977 if (rw == WRITE && req->private_bio
978 && !test_bit(AL_SUSPENDED, &mdev->flags)) {
Philipp Reisner07782862010-08-31 12:00:50 +0200979 req->rq_state |= RQ_IN_ACT_LOG;
Lars Ellenberg181286a2011-03-31 15:18:56 +0200980 drbd_al_begin_io(mdev, &req->i);
Philipp Reisner07782862010-08-31 12:00:50 +0200981 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700982
Philipp Reisner87eeee42011-01-19 14:16:30 +0100983 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100984 if (rw == WRITE) {
Lars Ellenberg648e46b2012-03-26 20:12:24 +0200985 /* This may temporarily give up the req_lock,
986 * but will re-aquire it before it returns here.
987 * Needs to be before the check on drbd_suspended() */
988 complete_conflicting_writes(req);
Andreas Gruenbacher6024fec2011-01-28 15:53:51 +0100989 }
990
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200991 /* no more giving up req_lock from now on! */
992
Philipp Reisner2aebfab2011-03-28 16:48:11 +0200993 if (drbd_suspended(mdev)) {
Lars Ellenberg5da9c832012-03-29 17:04:14 +0200994 /* push back and retry: */
995 req->rq_state |= RQ_POSTPONED;
996 if (req->private_bio) {
997 bio_put(req->private_bio);
998 req->private_bio = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700999 }
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001000 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001001 }
1002
Philipp Reisnerb411b362009-09-25 16:07:19 -07001003 /* Update disk stats */
1004 _drbd_start_io_acct(mdev, req, bio);
1005
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001006 /* We fail READ/READA early, if we can not serve it.
1007 * We must do this before req is registered on any lists.
1008 * Otherwise, req_may_be_completed() will queue failed READ for retry. */
1009 if (rw != WRITE) {
1010 if (!do_remote_read(req) && !req->private_bio)
1011 goto nodata;
1012 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001013
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001014 /* which transfer log epoch does this belong to? */
1015 req->epoch = atomic_read(&mdev->tconn->current_tle_nr);
1016 if (rw == WRITE)
1017 mdev->tconn->current_tle_writes++;
1018
1019 list_add_tail(&req->tl_requests, &mdev->tconn->transfer_log);
Philipp Reisner288f4222010-05-27 15:07:43 +02001020
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001021 if (rw == WRITE) {
1022 if (!drbd_process_write_request(req))
1023 no_remote = true;
1024 } else {
1025 /* We either have a private_bio, or we can read from remote.
1026 * Otherwise we had done the goto nodata above. */
1027 if (req->private_bio == NULL) {
1028 _req_mod(req, TO_BE_SENT);
1029 _req_mod(req, QUEUE_FOR_NET_READ);
1030 } else
1031 no_remote = true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001032 }
Philipp Reisner67531712010-10-27 12:21:30 +02001033
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001034 if (req->private_bio) {
1035 /* needs to be marked within the same spinlock */
1036 _req_mod(req, TO_BE_SUBMITTED);
1037 /* but we need to give up the spinlock to submit */
1038 spin_unlock_irq(&mdev->tconn->req_lock);
1039 drbd_submit_req_private_bio(req);
1040 /* once we have submitted, we must no longer look at req,
1041 * it may already be destroyed. */
Lars Ellenberg5df69ec2012-01-24 16:49:58 +01001042 return;
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001043 } else if (no_remote) {
1044nodata:
1045 if (__ratelimit(&drbd_ratelimit_state))
1046 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
1047 /* A write may have been queued for send_oos, however.
1048 * So we can not simply free it, we must go through req_may_be_completed() */
Philipp Reisner67531712010-10-27 12:21:30 +02001049 }
1050
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001051out:
1052 req_may_be_completed(req, &m);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001053 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001054
Lars Ellenberg5da9c832012-03-29 17:04:14 +02001055 if (m.bio)
1056 complete_master_bio(mdev, &m);
Lars Ellenberg5df69ec2012-01-24 16:49:58 +01001057 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001058}
1059
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01001060int drbd_make_request(struct request_queue *q, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001061{
Philipp Reisnerb411b362009-09-25 16:07:19 -07001062 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001063 unsigned long start_time;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001064
Philipp Reisneraeda1cd62010-11-09 17:45:06 +01001065 start_time = jiffies;
1066
Philipp Reisnerb411b362009-09-25 16:07:19 -07001067 /*
1068 * what we "blindly" assume:
1069 */
1070 D_ASSERT(bio->bi_size > 0);
Andreas Gruenbacherc670a392011-02-21 12:41:39 +01001071 D_ASSERT(IS_ALIGNED(bio->bi_size, 512));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001072
Lars Ellenberg5df69ec2012-01-24 16:49:58 +01001073 inc_ap_bio(mdev);
1074 __drbd_make_request(mdev, bio, start_time);
Philipp Reisner69b6a3b2011-12-20 11:49:58 +01001075
1076 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001077}
1078
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001079/* This is called by bio_add_page().
Philipp Reisnerb411b362009-09-25 16:07:19 -07001080 *
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001081 * q->max_hw_sectors and other global limits are already enforced there.
1082 *
1083 * We need to call down to our lower level device,
1084 * in case it has special restrictions.
1085 *
1086 * We also may need to enforce configured max-bio-bvecs limits.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001087 *
1088 * As long as the BIO is empty we have to allow at least one bvec,
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001089 * regardless of size and offset, so no need to ask lower levels.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001090 */
1091int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec)
1092{
1093 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001094 unsigned int bio_size = bvm->bi_size;
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001095 int limit = DRBD_MAX_BIO_SIZE;
1096 int backing_limit;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001097
Lars Ellenberg23361cf2011-03-31 16:36:43 +02001098 if (bio_size && get_ldev(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001099 struct request_queue * const b =
1100 mdev->ldev->backing_bdev->bd_disk->queue;
Lars Ellenberga1c88d02010-05-14 19:16:41 +02001101 if (b->merge_bvec_fn) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001102 backing_limit = b->merge_bvec_fn(b, bvm, bvec);
1103 limit = min(limit, backing_limit);
1104 }
1105 put_ldev(mdev);
1106 }
1107 return limit;
1108}
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001109
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001110struct drbd_request *find_oldest_request(struct drbd_tconn *tconn)
1111{
1112 /* Walk the transfer log,
1113 * and find the oldest not yet completed request */
1114 struct drbd_request *r;
1115 list_for_each_entry(r, &tconn->transfer_log, tl_requests) {
1116 if (r->rq_state & (RQ_NET_PENDING|RQ_LOCAL_PENDING))
1117 return r;
1118 }
1119 return NULL;
1120}
1121
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001122void request_timer_fn(unsigned long data)
1123{
1124 struct drbd_conf *mdev = (struct drbd_conf *) data;
Philipp Reisner8b924f12011-03-01 11:08:28 +01001125 struct drbd_tconn *tconn = mdev->tconn;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001126 struct drbd_request *req; /* oldest request */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001127 struct net_conf *nc;
Philipp Reisner3b03ad52011-07-15 13:53:06 +02001128 unsigned long ent = 0, dt = 0, et, nt; /* effective timeout = ko_count * timeout */
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001129 unsigned long now;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001130
Philipp Reisner44ed1672011-04-19 17:10:19 +02001131 rcu_read_lock();
1132 nc = rcu_dereference(tconn->net_conf);
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001133 if (nc && mdev->state.conn >= C_WF_REPORT_PARAMS)
1134 ent = nc->timeout * HZ/10 * nc->ko_count;
Philipp Reisnercdfda632011-07-05 15:38:59 +02001135
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001136 if (get_ldev(mdev)) { /* implicit state.disk >= D_INCONSISTENT */
Philipp Reisnercdfda632011-07-05 15:38:59 +02001137 dt = rcu_dereference(mdev->ldev->disk_conf)->disk_timeout * HZ / 10;
1138 put_ldev(mdev);
1139 }
Philipp Reisner44ed1672011-04-19 17:10:19 +02001140 rcu_read_unlock();
1141
Philipp Reisnercdfda632011-07-05 15:38:59 +02001142 et = min_not_zero(dt, ent);
1143
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001144 if (!et)
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001145 return; /* Recurring timer stopped */
1146
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001147 now = jiffies;
1148
Philipp Reisner8b924f12011-03-01 11:08:28 +01001149 spin_lock_irq(&tconn->req_lock);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001150 req = find_oldest_request(tconn);
1151 if (!req) {
Philipp Reisner8b924f12011-03-01 11:08:28 +01001152 spin_unlock_irq(&tconn->req_lock);
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001153 mod_timer(&mdev->request_timer, now + et);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001154 return;
1155 }
1156
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001157 /* The request is considered timed out, if
1158 * - we have some effective timeout from the configuration,
1159 * with above state restrictions applied,
1160 * - the oldest request is waiting for a response from the network
1161 * resp. the local disk,
1162 * - the oldest request is in fact older than the effective timeout,
1163 * - the connection was established (resp. disk was attached)
1164 * for longer than the timeout already.
1165 * Note that for 32bit jiffies and very stable connections/disks,
1166 * we may have a wrap around, which is catched by
1167 * !time_in_range(now, last_..._jif, last_..._jif + timeout).
1168 *
1169 * Side effect: once per 32bit wrap-around interval, which means every
1170 * ~198 days with 250 HZ, we have a window where the timeout would need
1171 * to expire twice (worst case) to become effective. Good enough.
1172 */
1173 if (ent && req->rq_state & RQ_NET_PENDING &&
1174 time_after(now, req->start_time + ent) &&
1175 !time_in_range(now, tconn->last_reconnect_jif, tconn->last_reconnect_jif + ent)) {
1176 dev_warn(DEV, "Remote failed to finish a request within ko-count * timeout\n");
1177 _drbd_set_state(_NS(mdev, conn, C_TIMEOUT), CS_VERBOSE | CS_HARD, NULL);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001178 }
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001179 if (dt && req->rq_state & RQ_LOCAL_PENDING && req->w.mdev == mdev &&
1180 time_after(now, req->start_time + dt) &&
1181 !time_in_range(now, mdev->last_reattach_jif, mdev->last_reattach_jif + dt)) {
1182 dev_warn(DEV, "Local backing device failed to meet the disk-timeout\n");
1183 __drbd_chk_io_error(mdev, 1);
Philipp Reisnercdfda632011-07-05 15:38:59 +02001184 }
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001185 nt = (time_after(now, req->start_time + et) ? now : req->start_time) + et;
Philipp Reisner8b924f12011-03-01 11:08:28 +01001186 spin_unlock_irq(&tconn->req_lock);
Philipp Reisner3b03ad52011-07-15 13:53:06 +02001187 mod_timer(&mdev->request_timer, nt);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001188}