Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1 | /* |
| 2 | drbd_req.c |
| 3 | |
| 4 | This file is part of DRBD by Philipp Reisner and Lars Ellenberg. |
| 5 | |
| 6 | Copyright (C) 2001-2008, LINBIT Information Technologies GmbH. |
| 7 | Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>. |
| 8 | Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>. |
| 9 | |
| 10 | drbd is free software; you can redistribute it and/or modify |
| 11 | it under the terms of the GNU General Public License as published by |
| 12 | the Free Software Foundation; either version 2, or (at your option) |
| 13 | any later version. |
| 14 | |
| 15 | drbd is distributed in the hope that it will be useful, |
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | GNU General Public License for more details. |
| 19 | |
| 20 | You should have received a copy of the GNU General Public License |
| 21 | along with drbd; see the file COPYING. If not, write to |
| 22 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 23 | |
| 24 | */ |
| 25 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 26 | #include <linux/module.h> |
| 27 | |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/drbd.h> |
| 30 | #include "drbd_int.h" |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 31 | #include "drbd_req.h" |
| 32 | |
| 33 | |
| 34 | /* Update disk stats at start of I/O request */ |
| 35 | static 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 Reisner | 753c891 | 2009-11-18 15:52:51 +0100 | [diff] [blame] | 42 | part_inc_in_flight(&mdev->vdisk->part0, rw); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 43 | part_stat_unlock(); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | /* Update disk stats when completing request upwards */ |
| 47 | static 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 Reisner | 753c891 | 2009-11-18 15:52:51 +0100 | [diff] [blame] | 55 | part_dec_in_flight(&mdev->vdisk->part0, rw); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 56 | part_stat_unlock(); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Andreas Gruenbacher | 9e204cd | 2011-01-26 18:45:11 +0100 | [diff] [blame] | 59 | static 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 Gruenbacher | 5384064 | 2011-01-28 10:31:04 +0100 | [diff] [blame] | 73 | |
Andreas Gruenbacher | 9e204cd | 2011-01-26 18:45:11 +0100 | [diff] [blame] | 74 | drbd_clear_interval(&req->i); |
| 75 | req->i.sector = bio_src->bi_sector; |
| 76 | req->i.size = bio_src->bi_size; |
Andreas Gruenbacher | 5e47226 | 2011-01-27 14:42:51 +0100 | [diff] [blame] | 77 | req->i.local = true; |
Andreas Gruenbacher | 5384064 | 2011-01-28 10:31:04 +0100 | [diff] [blame] | 78 | req->i.waiting = false; |
| 79 | |
Andreas Gruenbacher | 9e204cd | 2011-01-26 18:45:11 +0100 | [diff] [blame] | 80 | INIT_LIST_HEAD(&req->tl_requests); |
| 81 | INIT_LIST_HEAD(&req->w.list); |
| 82 | |
| 83 | return req; |
| 84 | } |
| 85 | |
| 86 | static 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 Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 92 | static 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 Reisner | 288f422 | 2010-05-27 15:07:43 +0200 | [diff] [blame] | 95 | |
| 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 Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 104 | /* 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 Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 108 | /* 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 Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 113 | drbd_set_out_of_sync(mdev, req->i.sector, req->i.size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 114 | |
| 115 | if ((s & RQ_NET_OK) && (s & RQ_LOCAL_OK) && (s & RQ_NET_SIS)) |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 116 | drbd_set_in_sync(mdev, req->i.sector, req->i.size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 117 | |
| 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 Reisner | 0778286 | 2010-08-31 12:00:50 +0200 | [diff] [blame] | 130 | if (s & RQ_IN_ACT_LOG) |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 131 | drbd_al_complete_io(mdev, req->i.sector); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 132 | 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 Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 136 | (unsigned long long) req->i.sector); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 137 | } |
| 138 | } |
| 139 | } |
| 140 | |
Philipp Reisner | 32fa7e9 | 2010-05-26 17:13:18 +0200 | [diff] [blame] | 141 | drbd_req_free(req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | static 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 Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 156 | b = mdev->tconn->newest_tle; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 157 | 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 Reisner | e42325a | 2011-01-19 13:55:45 +0100 | [diff] [blame] | 163 | drbd_queue_work(&mdev->tconn->data.work, &b->w); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 164 | set_bit(CREATE_BARRIER, &mdev->flags); |
| 165 | } |
| 166 | |
| 167 | static 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 Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 171 | |
Lars Ellenberg | 8a3c104 | 2010-12-05 14:11:14 +0100 | [diff] [blame] | 172 | /* 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 Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 180 | req->epoch == mdev->tconn->newest_tle->br_number) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 181 | queue_barrier(mdev); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | void complete_master_bio(struct drbd_conf *mdev, |
| 185 | struct bio_and_error *m) |
| 186 | { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 187 | bio_endio(m->bio, m->error); |
| 188 | dec_ap_bio(mdev); |
| 189 | } |
| 190 | |
Andreas Gruenbacher | 5384064 | 2011-01-28 10:31:04 +0100 | [diff] [blame] | 191 | |
| 192 | static 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 Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 205 | /* 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 | */ |
| 211 | void _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 Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 218 | /* 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 Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 235 | /* this is DATA_RECEIVED (remote read) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 236 | * or protocol C P_WRITE_ACK |
| 237 | * or protocol B P_RECV_ACK |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 238 | * or protocol A "HANDED_OVER_TO_NETWORK" (SendAck) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 239 | * 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 Gruenbacher | dac1389 | 2011-01-21 17:18:39 +0100 | [diff] [blame] | 261 | if (!drbd_interval_empty(&req->i)) { |
| 262 | struct rb_root *root; |
| 263 | |
Andreas Gruenbacher | dac1389 | 2011-01-21 17:18:39 +0100 | [diff] [blame] | 264 | if (rw == WRITE) |
| 265 | root = &mdev->write_requests; |
| 266 | else |
| 267 | root = &mdev->read_requests; |
Andreas Gruenbacher | 5384064 | 2011-01-28 10:31:04 +0100 | [diff] [blame] | 268 | drbd_remove_request_interval(root, req); |
Andreas Gruenbacher | de69671 | 2011-01-20 15:00:24 +0100 | [diff] [blame] | 269 | } else |
Philipp Reisner | 8825f7c | 2010-10-21 17:21:19 +0200 | [diff] [blame] | 270 | D_ASSERT((s & (RQ_NET_MASK & ~RQ_NET_DONE)) == 0); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 271 | |
| 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 Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 295 | static 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 Reisner | fb22c40 | 2010-09-08 23:20:21 +0200 | [diff] [blame] | 299 | if (!is_susp(mdev->state)) |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 300 | _req_may_be_done(req, m); |
| 301 | } |
| 302 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 303 | /* obviously this could be coded as many single functions |
| 304 | * instead of one huge switch, |
| 305 | * or by putting the code directly in the respective locations |
| 306 | * (as it has been before). |
| 307 | * |
| 308 | * but having it this way |
| 309 | * enforces that it is all in this one place, where it is easier to audit, |
| 310 | * it makes it obvious that whatever "event" "happens" to a request should |
| 311 | * happen "atomically" within the req_lock, |
| 312 | * and it enforces that we have to think in a very structured manner |
| 313 | * about the "events" that may happen to a request during its life time ... |
| 314 | */ |
Philipp Reisner | 2a80699 | 2010-06-09 14:07:43 +0200 | [diff] [blame] | 315 | int __req_mod(struct drbd_request *req, enum drbd_req_event what, |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 316 | struct bio_and_error *m) |
| 317 | { |
| 318 | struct drbd_conf *mdev = req->mdev; |
Philipp Reisner | 2a80699 | 2010-06-09 14:07:43 +0200 | [diff] [blame] | 319 | int rv = 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 320 | m->bio = NULL; |
| 321 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 322 | switch (what) { |
| 323 | default: |
| 324 | dev_err(DEV, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__); |
| 325 | break; |
| 326 | |
| 327 | /* does not happen... |
| 328 | * initialization done in drbd_req_new |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 329 | case CREATED: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 330 | break; |
| 331 | */ |
| 332 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 333 | case TO_BE_SENT: /* via network */ |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 334 | /* reached via drbd_make_request_common |
| 335 | * and from w_read_retry_remote */ |
| 336 | D_ASSERT(!(req->rq_state & RQ_NET_MASK)); |
| 337 | req->rq_state |= RQ_NET_PENDING; |
| 338 | inc_ap_pending(mdev); |
| 339 | break; |
| 340 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 341 | case TO_BE_SUBMITTED: /* locally */ |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 342 | /* reached via drbd_make_request_common */ |
| 343 | D_ASSERT(!(req->rq_state & RQ_LOCAL_MASK)); |
| 344 | req->rq_state |= RQ_LOCAL_PENDING; |
| 345 | break; |
| 346 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 347 | case COMPLETED_OK: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 348 | if (bio_data_dir(req->master_bio) == WRITE) |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 349 | mdev->writ_cnt += req->i.size >> 9; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 350 | else |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 351 | mdev->read_cnt += req->i.size >> 9; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 352 | |
| 353 | req->rq_state |= (RQ_LOCAL_COMPLETED|RQ_LOCAL_OK); |
| 354 | req->rq_state &= ~RQ_LOCAL_PENDING; |
| 355 | |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 356 | _req_may_be_done_not_susp(req, m); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 357 | put_ldev(mdev); |
| 358 | break; |
| 359 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 360 | case WRITE_COMPLETED_WITH_ERROR: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 361 | req->rq_state |= RQ_LOCAL_COMPLETED; |
| 362 | req->rq_state &= ~RQ_LOCAL_PENDING; |
| 363 | |
Andreas Gruenbacher | 81e8465 | 2010-12-09 15:03:57 +0100 | [diff] [blame] | 364 | __drbd_chk_io_error(mdev, false); |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 365 | _req_may_be_done_not_susp(req, m); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 366 | put_ldev(mdev); |
| 367 | break; |
| 368 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 369 | case READ_AHEAD_COMPLETED_WITH_ERROR: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 370 | /* it is legal to fail READA */ |
| 371 | req->rq_state |= RQ_LOCAL_COMPLETED; |
| 372 | req->rq_state &= ~RQ_LOCAL_PENDING; |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 373 | _req_may_be_done_not_susp(req, m); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 374 | put_ldev(mdev); |
| 375 | break; |
| 376 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 377 | case READ_COMPLETED_WITH_ERROR: |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 378 | drbd_set_out_of_sync(mdev, req->i.sector, req->i.size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 379 | |
| 380 | req->rq_state |= RQ_LOCAL_COMPLETED; |
| 381 | req->rq_state &= ~RQ_LOCAL_PENDING; |
| 382 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 383 | D_ASSERT(!(req->rq_state & RQ_NET_MASK)); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 384 | |
Andreas Gruenbacher | 81e8465 | 2010-12-09 15:03:57 +0100 | [diff] [blame] | 385 | __drbd_chk_io_error(mdev, false); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 386 | put_ldev(mdev); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 387 | |
Lars Ellenberg | d255e5f | 2010-05-27 09:45:45 +0200 | [diff] [blame] | 388 | /* no point in retrying if there is no good remote data, |
| 389 | * or we have no connection. */ |
| 390 | if (mdev->state.pdsk != D_UP_TO_DATE) { |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 391 | _req_may_be_done_not_susp(req, m); |
Lars Ellenberg | d255e5f | 2010-05-27 09:45:45 +0200 | [diff] [blame] | 392 | break; |
| 393 | } |
| 394 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 395 | /* _req_mod(req,TO_BE_SENT); oops, recursion... */ |
Lars Ellenberg | d255e5f | 2010-05-27 09:45:45 +0200 | [diff] [blame] | 396 | req->rq_state |= RQ_NET_PENDING; |
| 397 | inc_ap_pending(mdev); |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 398 | /* fall through: _req_mod(req,QUEUE_FOR_NET_READ); */ |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 399 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 400 | case QUEUE_FOR_NET_READ: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 401 | /* READ or READA, and |
| 402 | * no local disk, |
| 403 | * or target area marked as invalid, |
| 404 | * or just got an io-error. */ |
| 405 | /* from drbd_make_request_common |
| 406 | * or from bio_endio during read io-error recovery */ |
| 407 | |
| 408 | /* so we can verify the handle in the answer packet |
| 409 | * corresponding hlist_del is in _req_may_be_done() */ |
Andreas Gruenbacher | dac1389 | 2011-01-21 17:18:39 +0100 | [diff] [blame] | 410 | drbd_insert_interval(&mdev->read_requests, &req->i); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 411 | |
Lars Ellenberg | 83c3883 | 2009-11-03 02:22:06 +0100 | [diff] [blame] | 412 | set_bit(UNPLUG_REMOTE, &mdev->flags); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 413 | |
| 414 | D_ASSERT(req->rq_state & RQ_NET_PENDING); |
| 415 | req->rq_state |= RQ_NET_QUEUED; |
| 416 | req->w.cb = (req->rq_state & RQ_LOCAL_MASK) |
| 417 | ? w_read_retry_remote |
| 418 | : w_send_read_req; |
Philipp Reisner | e42325a | 2011-01-19 13:55:45 +0100 | [diff] [blame] | 419 | drbd_queue_work(&mdev->tconn->data.work, &req->w); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 420 | break; |
| 421 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 422 | case QUEUE_FOR_NET_WRITE: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 423 | /* assert something? */ |
| 424 | /* from drbd_make_request_common only */ |
| 425 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 426 | /* corresponding hlist_del is in _req_may_be_done() */ |
Andreas Gruenbacher | de69671 | 2011-01-20 15:00:24 +0100 | [diff] [blame] | 427 | drbd_insert_interval(&mdev->write_requests, &req->i); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 428 | |
| 429 | /* NOTE |
| 430 | * In case the req ended up on the transfer log before being |
| 431 | * queued on the worker, it could lead to this request being |
| 432 | * missed during cleanup after connection loss. |
| 433 | * So we have to do both operations here, |
| 434 | * within the same lock that protects the transfer log. |
| 435 | * |
| 436 | * _req_add_to_epoch(req); this has to be after the |
| 437 | * _maybe_start_new_epoch(req); which happened in |
| 438 | * drbd_make_request_common, because we now may set the bit |
| 439 | * again ourselves to close the current epoch. |
| 440 | * |
| 441 | * Add req to the (now) current epoch (barrier). */ |
| 442 | |
Lars Ellenberg | 83c3883 | 2009-11-03 02:22:06 +0100 | [diff] [blame] | 443 | /* otherwise we may lose an unplug, which may cause some remote |
| 444 | * io-scheduler timeout to expire, increasing maximum latency, |
| 445 | * hurting performance. */ |
| 446 | set_bit(UNPLUG_REMOTE, &mdev->flags); |
| 447 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 448 | /* see drbd_make_request_common, |
| 449 | * just after it grabs the req_lock */ |
| 450 | D_ASSERT(test_bit(CREATE_BARRIER, &mdev->flags) == 0); |
| 451 | |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 452 | req->epoch = mdev->tconn->newest_tle->br_number; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 453 | |
| 454 | /* increment size of current epoch */ |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 455 | mdev->tconn->newest_tle->n_writes++; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 456 | |
| 457 | /* queue work item to send data */ |
| 458 | D_ASSERT(req->rq_state & RQ_NET_PENDING); |
| 459 | req->rq_state |= RQ_NET_QUEUED; |
| 460 | req->w.cb = w_send_dblock; |
Philipp Reisner | e42325a | 2011-01-19 13:55:45 +0100 | [diff] [blame] | 461 | drbd_queue_work(&mdev->tconn->data.work, &req->w); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 462 | |
| 463 | /* close the epoch, in case it outgrew the limit */ |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 464 | if (mdev->tconn->newest_tle->n_writes >= mdev->tconn->net_conf->max_epoch_size) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 465 | queue_barrier(mdev); |
| 466 | |
| 467 | break; |
| 468 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 469 | case QUEUE_FOR_SEND_OOS: |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 470 | req->rq_state |= RQ_NET_QUEUED; |
| 471 | req->w.cb = w_send_oos; |
Philipp Reisner | e42325a | 2011-01-19 13:55:45 +0100 | [diff] [blame] | 472 | drbd_queue_work(&mdev->tconn->data.work, &req->w); |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 473 | break; |
| 474 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 475 | case OOS_HANDED_TO_NETWORK: |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 476 | /* actually the same */ |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 477 | case SEND_CANCELED: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 478 | /* treat it the same */ |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 479 | case SEND_FAILED: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 480 | /* real cleanup will be done from tl_clear. just update flags |
| 481 | * so it is no longer marked as on the worker queue */ |
| 482 | req->rq_state &= ~RQ_NET_QUEUED; |
| 483 | /* if we did it right, tl_clear should be scheduled only after |
| 484 | * this, so this should not be necessary! */ |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 485 | _req_may_be_done_not_susp(req, m); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 486 | break; |
| 487 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 488 | case HANDED_OVER_TO_NETWORK: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 489 | /* assert something? */ |
Philipp Reisner | 759fbdf | 2010-10-26 16:02:27 +0200 | [diff] [blame] | 490 | if (bio_data_dir(req->master_bio) == WRITE) |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 491 | atomic_add(req->i.size >> 9, &mdev->ap_in_flight); |
Philipp Reisner | 759fbdf | 2010-10-26 16:02:27 +0200 | [diff] [blame] | 492 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 493 | if (bio_data_dir(req->master_bio) == WRITE && |
Philipp Reisner | 89e58e7 | 2011-01-19 13:12:45 +0100 | [diff] [blame] | 494 | mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 495 | /* this is what is dangerous about protocol A: |
| 496 | * pretend it was successfully written on the peer. */ |
| 497 | if (req->rq_state & RQ_NET_PENDING) { |
| 498 | dec_ap_pending(mdev); |
| 499 | req->rq_state &= ~RQ_NET_PENDING; |
| 500 | req->rq_state |= RQ_NET_OK; |
| 501 | } /* else: neg-ack was faster... */ |
| 502 | /* it is still not yet RQ_NET_DONE until the |
| 503 | * corresponding epoch barrier got acked as well, |
| 504 | * so we know what to dirty on connection loss */ |
| 505 | } |
| 506 | req->rq_state &= ~RQ_NET_QUEUED; |
| 507 | req->rq_state |= RQ_NET_SENT; |
| 508 | /* because _drbd_send_zc_bio could sleep, and may want to |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 509 | * dereference the bio even after the "WRITE_ACKED_BY_PEER" and |
| 510 | * "COMPLETED_OK" events came in, once we return from |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 511 | * _drbd_send_zc_bio (drbd_send_dblock), we have to check |
| 512 | * whether it is done already, and end it. */ |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 513 | _req_may_be_done_not_susp(req, m); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 514 | break; |
| 515 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 516 | case READ_RETRY_REMOTE_CANCELED: |
Lars Ellenberg | d255e5f | 2010-05-27 09:45:45 +0200 | [diff] [blame] | 517 | req->rq_state &= ~RQ_NET_QUEUED; |
| 518 | /* fall through, in case we raced with drbd_disconnect */ |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 519 | case CONNECTION_LOST_WHILE_PENDING: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 520 | /* transfer log cleanup after connection loss */ |
| 521 | /* assert something? */ |
| 522 | if (req->rq_state & RQ_NET_PENDING) |
| 523 | dec_ap_pending(mdev); |
| 524 | req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING); |
| 525 | req->rq_state |= RQ_NET_DONE; |
Philipp Reisner | 759fbdf | 2010-10-26 16:02:27 +0200 | [diff] [blame] | 526 | if (req->rq_state & RQ_NET_SENT && req->rq_state & RQ_WRITE) |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 527 | atomic_sub(req->i.size >> 9, &mdev->ap_in_flight); |
Philipp Reisner | 759fbdf | 2010-10-26 16:02:27 +0200 | [diff] [blame] | 528 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 529 | /* if it is still queued, we may not complete it here. |
| 530 | * it will be canceled soon. */ |
| 531 | if (!(req->rq_state & RQ_NET_QUEUED)) |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 532 | _req_may_be_done(req, m); /* Allowed while state.susp */ |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 533 | break; |
| 534 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 535 | case WRITE_ACKED_BY_PEER_AND_SIS: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 536 | req->rq_state |= RQ_NET_SIS; |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 537 | case CONFLICT_DISCARDED_BY_PEER: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 538 | /* for discarded conflicting writes of multiple primaries, |
| 539 | * there is no need to keep anything in the tl, potential |
| 540 | * node crashes are covered by the activity log. */ |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 541 | if (what == CONFLICT_DISCARDED_BY_PEER) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 542 | dev_alert(DEV, "Got DiscardAck packet %llus +%u!" |
| 543 | " DRBD is not a random data generator!\n", |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 544 | (unsigned long long)req->i.sector, req->i.size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 545 | req->rq_state |= RQ_NET_DONE; |
| 546 | /* fall through */ |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 547 | case WRITE_ACKED_BY_PEER: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 548 | /* protocol C; successfully written on peer. |
| 549 | * Nothing to do here. |
| 550 | * We want to keep the tl in place for all protocols, to cater |
| 551 | * for volatile write-back caches on lower level devices. |
| 552 | * |
| 553 | * A barrier request is expected to have forced all prior |
| 554 | * requests onto stable storage, so completion of a barrier |
| 555 | * request could set NET_DONE right here, and not wait for the |
| 556 | * P_BARRIER_ACK, but that is an unnecessary optimization. */ |
| 557 | |
| 558 | /* this makes it effectively the same as for: */ |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 559 | case RECV_ACKED_BY_PEER: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 560 | /* protocol B; pretends to be successfully written on peer. |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 561 | * see also notes above in HANDED_OVER_TO_NETWORK about |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 562 | * protocol != C */ |
| 563 | req->rq_state |= RQ_NET_OK; |
| 564 | D_ASSERT(req->rq_state & RQ_NET_PENDING); |
| 565 | dec_ap_pending(mdev); |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 566 | atomic_sub(req->i.size >> 9, &mdev->ap_in_flight); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 567 | req->rq_state &= ~RQ_NET_PENDING; |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 568 | _req_may_be_done_not_susp(req, m); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 569 | break; |
| 570 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 571 | case NEG_ACKED: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 572 | /* assert something? */ |
Philipp Reisner | 759fbdf | 2010-10-26 16:02:27 +0200 | [diff] [blame] | 573 | if (req->rq_state & RQ_NET_PENDING) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 574 | dec_ap_pending(mdev); |
Andreas Gruenbacher | ace652a | 2011-01-03 17:09:58 +0100 | [diff] [blame] | 575 | atomic_sub(req->i.size >> 9, &mdev->ap_in_flight); |
Philipp Reisner | 759fbdf | 2010-10-26 16:02:27 +0200 | [diff] [blame] | 576 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 577 | req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING); |
| 578 | |
| 579 | req->rq_state |= RQ_NET_DONE; |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 580 | _req_may_be_done_not_susp(req, m); |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 581 | /* else: done by HANDED_OVER_TO_NETWORK */ |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 582 | break; |
| 583 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 584 | case FAIL_FROZEN_DISK_IO: |
Philipp Reisner | 265be2d | 2010-05-31 10:14:17 +0200 | [diff] [blame] | 585 | if (!(req->rq_state & RQ_LOCAL_COMPLETED)) |
| 586 | break; |
| 587 | |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 588 | _req_may_be_done(req, m); /* Allowed while state.susp */ |
Philipp Reisner | 265be2d | 2010-05-31 10:14:17 +0200 | [diff] [blame] | 589 | break; |
| 590 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 591 | case RESTART_FROZEN_DISK_IO: |
Philipp Reisner | 265be2d | 2010-05-31 10:14:17 +0200 | [diff] [blame] | 592 | if (!(req->rq_state & RQ_LOCAL_COMPLETED)) |
| 593 | break; |
| 594 | |
| 595 | req->rq_state &= ~RQ_LOCAL_COMPLETED; |
| 596 | |
| 597 | rv = MR_READ; |
| 598 | if (bio_data_dir(req->master_bio) == WRITE) |
| 599 | rv = MR_WRITE; |
| 600 | |
| 601 | get_ldev(mdev); |
| 602 | req->w.cb = w_restart_disk_io; |
Philipp Reisner | e42325a | 2011-01-19 13:55:45 +0100 | [diff] [blame] | 603 | drbd_queue_work(&mdev->tconn->data.work, &req->w); |
Philipp Reisner | 265be2d | 2010-05-31 10:14:17 +0200 | [diff] [blame] | 604 | break; |
| 605 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 606 | case RESEND: |
Philipp Reisner | 11b58e7 | 2010-05-12 17:08:26 +0200 | [diff] [blame] | 607 | /* If RQ_NET_OK is already set, we got a P_WRITE_ACK or P_RECV_ACK |
Philipp Reisner | 47ff2d0 | 2010-06-18 13:56:57 +0200 | [diff] [blame] | 608 | before the connection loss (B&C only); only P_BARRIER_ACK was missing. |
Philipp Reisner | 11b58e7 | 2010-05-12 17:08:26 +0200 | [diff] [blame] | 609 | Trowing them out of the TL here by pretending we got a BARRIER_ACK |
Philipp Reisner | 481c6f5 | 2010-06-22 14:03:27 +0200 | [diff] [blame] | 610 | We ensure that the peer was not rebooted */ |
Philipp Reisner | 11b58e7 | 2010-05-12 17:08:26 +0200 | [diff] [blame] | 611 | if (!(req->rq_state & RQ_NET_OK)) { |
| 612 | if (req->w.cb) { |
Philipp Reisner | e42325a | 2011-01-19 13:55:45 +0100 | [diff] [blame] | 613 | drbd_queue_work(&mdev->tconn->data.work, &req->w); |
Philipp Reisner | 11b58e7 | 2010-05-12 17:08:26 +0200 | [diff] [blame] | 614 | rv = req->rq_state & RQ_WRITE ? MR_WRITE : MR_READ; |
| 615 | } |
| 616 | break; |
| 617 | } |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 618 | /* else, fall through to BARRIER_ACKED */ |
Philipp Reisner | 11b58e7 | 2010-05-12 17:08:26 +0200 | [diff] [blame] | 619 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 620 | case BARRIER_ACKED: |
Philipp Reisner | 288f422 | 2010-05-27 15:07:43 +0200 | [diff] [blame] | 621 | if (!(req->rq_state & RQ_WRITE)) |
| 622 | break; |
| 623 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 624 | if (req->rq_state & RQ_NET_PENDING) { |
| 625 | /* barrier came in before all requests have been acked. |
| 626 | * this is bad, because if the connection is lost now, |
| 627 | * we won't be able to clean them up... */ |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 628 | dev_err(DEV, "FIXME (BARRIER_ACKED but pending)\n"); |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 629 | list_move(&req->tl_requests, &mdev->tconn->out_of_sequence_requests); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 630 | } |
Lars Ellenberg | e636db5 | 2011-01-21 17:10:37 +0100 | [diff] [blame] | 631 | if ((req->rq_state & RQ_NET_MASK) != 0) { |
| 632 | req->rq_state |= RQ_NET_DONE; |
Philipp Reisner | 89e58e7 | 2011-01-19 13:12:45 +0100 | [diff] [blame] | 633 | if (mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A) |
| 634 | atomic_sub(req->i.size>>9, &mdev->ap_in_flight); |
Lars Ellenberg | e636db5 | 2011-01-21 17:10:37 +0100 | [diff] [blame] | 635 | } |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 636 | _req_may_be_done(req, m); /* Allowed while state.susp */ |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 637 | break; |
| 638 | |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 639 | case DATA_RECEIVED: |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 640 | D_ASSERT(req->rq_state & RQ_NET_PENDING); |
| 641 | dec_ap_pending(mdev); |
| 642 | req->rq_state &= ~RQ_NET_PENDING; |
| 643 | req->rq_state |= (RQ_NET_OK|RQ_NET_DONE); |
Philipp Reisner | cfa0341 | 2010-06-23 17:18:51 +0200 | [diff] [blame] | 644 | _req_may_be_done_not_susp(req, m); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 645 | break; |
| 646 | }; |
Philipp Reisner | 2a80699 | 2010-06-09 14:07:43 +0200 | [diff] [blame] | 647 | |
| 648 | return rv; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 649 | } |
| 650 | |
| 651 | /* we may do a local read if: |
| 652 | * - we are consistent (of course), |
| 653 | * - or we are generally inconsistent, |
| 654 | * BUT we are still/already IN SYNC for this area. |
| 655 | * since size may be bigger than BM_BLOCK_SIZE, |
| 656 | * we may need to check several bits. |
| 657 | */ |
| 658 | static int drbd_may_do_local_read(struct drbd_conf *mdev, sector_t sector, int size) |
| 659 | { |
| 660 | unsigned long sbnr, ebnr; |
| 661 | sector_t esector, nr_sectors; |
| 662 | |
| 663 | if (mdev->state.disk == D_UP_TO_DATE) |
| 664 | return 1; |
| 665 | if (mdev->state.disk >= D_OUTDATED) |
| 666 | return 0; |
| 667 | if (mdev->state.disk < D_INCONSISTENT) |
| 668 | return 0; |
| 669 | /* state.disk == D_INCONSISTENT We will have a look at the BitMap */ |
| 670 | nr_sectors = drbd_get_capacity(mdev->this_bdev); |
| 671 | esector = sector + (size >> 9) - 1; |
| 672 | |
| 673 | D_ASSERT(sector < nr_sectors); |
| 674 | D_ASSERT(esector < nr_sectors); |
| 675 | |
| 676 | sbnr = BM_SECT_TO_BIT(sector); |
| 677 | ebnr = BM_SECT_TO_BIT(esector); |
| 678 | |
| 679 | return 0 == drbd_bm_count_bits(mdev, sbnr, ebnr); |
| 680 | } |
| 681 | |
Andreas Gruenbacher | 6024fec | 2011-01-28 15:53:51 +0100 | [diff] [blame] | 682 | /* |
| 683 | * complete_conflicting_writes - wait for any conflicting write requests |
| 684 | * |
| 685 | * The write_requests tree contains all active write requests which we |
| 686 | * currently know about. Wait for any requests to complete which conflict with |
| 687 | * the new one. |
| 688 | */ |
| 689 | static int complete_conflicting_writes(struct drbd_conf *mdev, |
| 690 | sector_t sector, int size) |
| 691 | { |
| 692 | for(;;) { |
| 693 | DEFINE_WAIT(wait); |
| 694 | struct drbd_interval *i; |
| 695 | |
| 696 | i = drbd_find_overlap(&mdev->write_requests, sector, size); |
| 697 | if (!i) |
| 698 | return 0; |
| 699 | i->waiting = true; |
| 700 | prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE); |
| 701 | spin_unlock_irq(&mdev->tconn->req_lock); |
| 702 | schedule(); |
| 703 | finish_wait(&mdev->misc_wait, &wait); |
| 704 | spin_lock_irq(&mdev->tconn->req_lock); |
| 705 | if (signal_pending(current)) |
| 706 | return -ERESTARTSYS; |
| 707 | } |
| 708 | } |
| 709 | |
Philipp Reisner | aeda1cd6 | 2010-11-09 17:45:06 +0100 | [diff] [blame] | 710 | static int drbd_make_request_common(struct drbd_conf *mdev, struct bio *bio, unsigned long start_time) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 711 | { |
| 712 | const int rw = bio_rw(bio); |
| 713 | const int size = bio->bi_size; |
| 714 | const sector_t sector = bio->bi_sector; |
| 715 | struct drbd_tl_epoch *b = NULL; |
| 716 | struct drbd_request *req; |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 717 | int local, remote, send_oos = 0; |
Andreas Gruenbacher | 6024fec | 2011-01-28 15:53:51 +0100 | [diff] [blame] | 718 | int err; |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 719 | int ret = 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 720 | |
| 721 | /* allocate outside of all locks; */ |
| 722 | req = drbd_req_new(mdev, bio); |
| 723 | if (!req) { |
| 724 | dec_ap_bio(mdev); |
| 725 | /* only pass the error to the upper layers. |
| 726 | * if user cannot handle io errors, that's not our business. */ |
| 727 | dev_err(DEV, "could not kmalloc() req\n"); |
| 728 | bio_endio(bio, -ENOMEM); |
| 729 | return 0; |
| 730 | } |
Philipp Reisner | aeda1cd6 | 2010-11-09 17:45:06 +0100 | [diff] [blame] | 731 | req->start_time = start_time; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 732 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 733 | local = get_ldev(mdev); |
| 734 | if (!local) { |
| 735 | bio_put(req->private_bio); /* or we get a bio leak */ |
| 736 | req->private_bio = NULL; |
| 737 | } |
| 738 | if (rw == WRITE) { |
| 739 | remote = 1; |
| 740 | } else { |
| 741 | /* READ || READA */ |
| 742 | if (local) { |
| 743 | if (!drbd_may_do_local_read(mdev, sector, size)) { |
| 744 | /* we could kick the syncer to |
| 745 | * sync this extent asap, wait for |
| 746 | * it, then continue locally. |
| 747 | * Or just issue the request remotely. |
| 748 | */ |
| 749 | local = 0; |
| 750 | bio_put(req->private_bio); |
| 751 | req->private_bio = NULL; |
| 752 | put_ldev(mdev); |
| 753 | } |
| 754 | } |
| 755 | remote = !local && mdev->state.pdsk >= D_UP_TO_DATE; |
| 756 | } |
| 757 | |
| 758 | /* If we have a disk, but a READA request is mapped to remote, |
| 759 | * we are R_PRIMARY, D_INCONSISTENT, SyncTarget. |
| 760 | * Just fail that READA request right here. |
| 761 | * |
| 762 | * THINK: maybe fail all READA when not local? |
| 763 | * or make this configurable... |
| 764 | * if network is slow, READA won't do any good. |
| 765 | */ |
| 766 | if (rw == READA && mdev->state.disk >= D_INCONSISTENT && !local) { |
| 767 | err = -EWOULDBLOCK; |
| 768 | goto fail_and_free_req; |
| 769 | } |
| 770 | |
| 771 | /* For WRITES going to the local disk, grab a reference on the target |
| 772 | * extent. This waits for any resync activity in the corresponding |
| 773 | * resync extent to finish, and, if necessary, pulls in the target |
| 774 | * extent into the activity log, which involves further disk io because |
| 775 | * of transactional on-disk meta data updates. */ |
Philipp Reisner | 0778286 | 2010-08-31 12:00:50 +0200 | [diff] [blame] | 776 | if (rw == WRITE && local && !test_bit(AL_SUSPENDED, &mdev->flags)) { |
| 777 | req->rq_state |= RQ_IN_ACT_LOG; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 778 | drbd_al_begin_io(mdev, sector); |
Philipp Reisner | 0778286 | 2010-08-31 12:00:50 +0200 | [diff] [blame] | 779 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 780 | |
Philipp Reisner | 6a35c45 | 2011-01-17 20:27:30 +0100 | [diff] [blame] | 781 | remote = remote && drbd_should_do_remote(mdev->state); |
| 782 | send_oos = rw == WRITE && drbd_should_send_oos(mdev->state); |
Philipp Reisner | 3719094 | 2010-11-10 12:08:37 +0100 | [diff] [blame] | 783 | D_ASSERT(!(remote && send_oos)); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 784 | |
Philipp Reisner | fb22c40 | 2010-09-08 23:20:21 +0200 | [diff] [blame] | 785 | if (!(local || remote) && !is_susp(mdev->state)) { |
Lars Ellenberg | fb2c7a1 | 2010-10-19 12:08:13 +0200 | [diff] [blame] | 786 | if (__ratelimit(&drbd_ratelimit_state)) |
| 787 | dev_err(DEV, "IO ERROR: neither local nor remote disk\n"); |
Andreas Gruenbacher | 6024fec | 2011-01-28 15:53:51 +0100 | [diff] [blame] | 788 | err = -EIO; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 789 | goto fail_free_complete; |
| 790 | } |
| 791 | |
| 792 | /* For WRITE request, we have to make sure that we have an |
| 793 | * unused_spare_tle, in case we need to start a new epoch. |
| 794 | * I try to be smart and avoid to pre-allocate always "just in case", |
| 795 | * but there is a race between testing the bit and pointer outside the |
| 796 | * spinlock, and grabbing the spinlock. |
| 797 | * if we lost that race, we retry. */ |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 798 | if (rw == WRITE && (remote || send_oos) && |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 799 | mdev->tconn->unused_spare_tle == NULL && |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 800 | test_bit(CREATE_BARRIER, &mdev->flags)) { |
| 801 | allocate_barrier: |
| 802 | b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_NOIO); |
| 803 | if (!b) { |
| 804 | dev_err(DEV, "Failed to alloc barrier.\n"); |
| 805 | err = -ENOMEM; |
| 806 | goto fail_free_complete; |
| 807 | } |
| 808 | } |
| 809 | |
| 810 | /* GOOD, everything prepared, grab the spin_lock */ |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 811 | spin_lock_irq(&mdev->tconn->req_lock); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 812 | |
Andreas Gruenbacher | 6024fec | 2011-01-28 15:53:51 +0100 | [diff] [blame] | 813 | if (rw == WRITE) { |
| 814 | err = complete_conflicting_writes(mdev, sector, size); |
| 815 | if (err) { |
| 816 | spin_unlock_irq(&mdev->tconn->req_lock); |
| 817 | goto fail_free_complete; |
| 818 | } |
| 819 | } |
| 820 | |
Philipp Reisner | fb22c40 | 2010-09-08 23:20:21 +0200 | [diff] [blame] | 821 | if (is_susp(mdev->state)) { |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 822 | /* If we got suspended, use the retry mechanism of |
| 823 | generic_make_request() to restart processing of this |
Andreas Gruenbacher | 2f58dcf | 2010-12-13 17:48:19 +0100 | [diff] [blame] | 824 | bio. In the next call to drbd_make_request |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 825 | we sleep in inc_ap_bio() */ |
| 826 | ret = 1; |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 827 | spin_unlock_irq(&mdev->tconn->req_lock); |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 828 | goto fail_free_complete; |
| 829 | } |
| 830 | |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 831 | if (remote || send_oos) { |
Philipp Reisner | 6a35c45 | 2011-01-17 20:27:30 +0100 | [diff] [blame] | 832 | remote = drbd_should_do_remote(mdev->state); |
| 833 | send_oos = rw == WRITE && drbd_should_send_oos(mdev->state); |
Philipp Reisner | 3719094 | 2010-11-10 12:08:37 +0100 | [diff] [blame] | 834 | D_ASSERT(!(remote && send_oos)); |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 835 | |
| 836 | if (!(remote || send_oos)) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 837 | dev_warn(DEV, "lost connection while grabbing the req_lock!\n"); |
| 838 | if (!(local || remote)) { |
| 839 | dev_err(DEV, "IO ERROR: neither local nor remote disk\n"); |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 840 | spin_unlock_irq(&mdev->tconn->req_lock); |
Andreas Gruenbacher | 6024fec | 2011-01-28 15:53:51 +0100 | [diff] [blame] | 841 | err = -EIO; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 842 | goto fail_free_complete; |
| 843 | } |
| 844 | } |
| 845 | |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 846 | if (b && mdev->tconn->unused_spare_tle == NULL) { |
| 847 | mdev->tconn->unused_spare_tle = b; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 848 | b = NULL; |
| 849 | } |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 850 | if (rw == WRITE && (remote || send_oos) && |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 851 | mdev->tconn->unused_spare_tle == NULL && |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 852 | test_bit(CREATE_BARRIER, &mdev->flags)) { |
| 853 | /* someone closed the current epoch |
| 854 | * while we were grabbing the spinlock */ |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 855 | spin_unlock_irq(&mdev->tconn->req_lock); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 856 | goto allocate_barrier; |
| 857 | } |
| 858 | |
| 859 | |
| 860 | /* Update disk stats */ |
| 861 | _drbd_start_io_acct(mdev, req, bio); |
| 862 | |
| 863 | /* _maybe_start_new_epoch(mdev); |
| 864 | * If we need to generate a write barrier packet, we have to add the |
| 865 | * new epoch (barrier) object, and queue the barrier packet for sending, |
| 866 | * and queue the req's data after it _within the same lock_, otherwise |
| 867 | * we have race conditions were the reorder domains could be mixed up. |
| 868 | * |
| 869 | * Even read requests may start a new epoch and queue the corresponding |
| 870 | * barrier packet. To get the write ordering right, we only have to |
| 871 | * make sure that, if this is a write request and it triggered a |
| 872 | * barrier packet, this request is queued within the same spinlock. */ |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 873 | if ((remote || send_oos) && mdev->tconn->unused_spare_tle && |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 874 | test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) { |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 875 | _tl_add_barrier(mdev, mdev->tconn->unused_spare_tle); |
| 876 | mdev->tconn->unused_spare_tle = NULL; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 877 | } else { |
| 878 | D_ASSERT(!(remote && rw == WRITE && |
| 879 | test_bit(CREATE_BARRIER, &mdev->flags))); |
| 880 | } |
| 881 | |
| 882 | /* NOTE |
| 883 | * Actually, 'local' may be wrong here already, since we may have failed |
| 884 | * to write to the meta data, and may become wrong anytime because of |
| 885 | * local io-error for some other request, which would lead to us |
| 886 | * "detaching" the local disk. |
| 887 | * |
| 888 | * 'remote' may become wrong any time because the network could fail. |
| 889 | * |
| 890 | * This is a harmless race condition, though, since it is handled |
| 891 | * correctly at the appropriate places; so it just defers the failure |
| 892 | * of the respective operation. |
| 893 | */ |
| 894 | |
| 895 | /* mark them early for readability. |
| 896 | * this just sets some state flags. */ |
| 897 | if (remote) |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 898 | _req_mod(req, TO_BE_SENT); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 899 | if (local) |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 900 | _req_mod(req, TO_BE_SUBMITTED); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 901 | |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 902 | list_add_tail(&req->tl_requests, &mdev->tconn->newest_tle->requests); |
Philipp Reisner | 288f422 | 2010-05-27 15:07:43 +0200 | [diff] [blame] | 903 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 904 | /* NOTE remote first: to get the concurrent write detection right, |
| 905 | * we must register the request before start of local IO. */ |
| 906 | if (remote) { |
| 907 | /* either WRITE and C_CONNECTED, |
| 908 | * or READ, and no local disk, |
| 909 | * or READ, but not in sync. |
| 910 | */ |
| 911 | _req_mod(req, (rw == WRITE) |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 912 | ? QUEUE_FOR_NET_WRITE |
| 913 | : QUEUE_FOR_NET_READ); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 914 | } |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 915 | if (send_oos && drbd_set_out_of_sync(mdev, sector, size)) |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 916 | _req_mod(req, QUEUE_FOR_SEND_OOS); |
Philipp Reisner | 6753171 | 2010-10-27 12:21:30 +0200 | [diff] [blame] | 917 | |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 918 | if (remote && |
Philipp Reisner | 31890f4 | 2011-01-19 14:12:51 +0100 | [diff] [blame] | 919 | mdev->tconn->net_conf->on_congestion != OC_BLOCK && mdev->tconn->agreed_pro_version >= 96) { |
Philipp Reisner | 6753171 | 2010-10-27 12:21:30 +0200 | [diff] [blame] | 920 | int congested = 0; |
| 921 | |
Philipp Reisner | 89e58e7 | 2011-01-19 13:12:45 +0100 | [diff] [blame] | 922 | if (mdev->tconn->net_conf->cong_fill && |
| 923 | atomic_read(&mdev->ap_in_flight) >= mdev->tconn->net_conf->cong_fill) { |
Philipp Reisner | 6753171 | 2010-10-27 12:21:30 +0200 | [diff] [blame] | 924 | dev_info(DEV, "Congestion-fill threshold reached\n"); |
| 925 | congested = 1; |
| 926 | } |
| 927 | |
Philipp Reisner | 89e58e7 | 2011-01-19 13:12:45 +0100 | [diff] [blame] | 928 | if (mdev->act_log->used >= mdev->tconn->net_conf->cong_extents) { |
Philipp Reisner | 6753171 | 2010-10-27 12:21:30 +0200 | [diff] [blame] | 929 | dev_info(DEV, "Congestion-extents threshold reached\n"); |
| 930 | congested = 1; |
| 931 | } |
| 932 | |
Philipp Reisner | 71c78cf | 2011-01-14 19:20:34 +0100 | [diff] [blame] | 933 | if (congested) { |
Philipp Reisner | 039312b | 2011-01-21 14:13:22 +0100 | [diff] [blame] | 934 | queue_barrier(mdev); /* last barrier, after mirrored writes */ |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 935 | |
Philipp Reisner | 89e58e7 | 2011-01-19 13:12:45 +0100 | [diff] [blame] | 936 | if (mdev->tconn->net_conf->on_congestion == OC_PULL_AHEAD) |
Philipp Reisner | 6753171 | 2010-10-27 12:21:30 +0200 | [diff] [blame] | 937 | _drbd_set_state(_NS(mdev, conn, C_AHEAD), 0, NULL); |
Philipp Reisner | 89e58e7 | 2011-01-19 13:12:45 +0100 | [diff] [blame] | 938 | else /*mdev->tconn->net_conf->on_congestion == OC_DISCONNECT */ |
Philipp Reisner | 6753171 | 2010-10-27 12:21:30 +0200 | [diff] [blame] | 939 | _drbd_set_state(_NS(mdev, conn, C_DISCONNECTING), 0, NULL); |
| 940 | } |
| 941 | } |
| 942 | |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 943 | spin_unlock_irq(&mdev->tconn->req_lock); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 944 | kfree(b); /* if someone else has beaten us to it... */ |
| 945 | |
| 946 | if (local) { |
| 947 | req->private_bio->bi_bdev = mdev->ldev->backing_bdev; |
| 948 | |
Lars Ellenberg | 6719fb0 | 2010-10-18 23:04:07 +0200 | [diff] [blame] | 949 | /* State may have changed since we grabbed our reference on the |
| 950 | * mdev->ldev member. Double check, and short-circuit to endio. |
| 951 | * In case the last activity log transaction failed to get on |
| 952 | * stable storage, and this is a WRITE, we may not even submit |
| 953 | * this bio. */ |
| 954 | if (get_ldev(mdev)) { |
Andreas Gruenbacher | 0cf9d27 | 2010-12-07 10:43:29 +0100 | [diff] [blame] | 955 | if (drbd_insert_fault(mdev, rw == WRITE ? DRBD_FAULT_DT_WR |
| 956 | : rw == READ ? DRBD_FAULT_DT_RD |
| 957 | : DRBD_FAULT_DT_RA)) |
Lars Ellenberg | 6719fb0 | 2010-10-18 23:04:07 +0200 | [diff] [blame] | 958 | bio_endio(req->private_bio, -EIO); |
| 959 | else |
| 960 | generic_make_request(req->private_bio); |
| 961 | put_ldev(mdev); |
| 962 | } else |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 963 | bio_endio(req->private_bio, -EIO); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 964 | } |
| 965 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 966 | return 0; |
| 967 | |
| 968 | fail_free_complete: |
Lars Ellenberg | 76727f6 | 2011-05-16 15:31:45 +0200 | [diff] [blame] | 969 | if (req->rq_state & RQ_IN_ACT_LOG) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 970 | drbd_al_complete_io(mdev, sector); |
| 971 | fail_and_free_req: |
| 972 | if (local) { |
| 973 | bio_put(req->private_bio); |
| 974 | req->private_bio = NULL; |
| 975 | put_ldev(mdev); |
| 976 | } |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 977 | if (!ret) |
| 978 | bio_endio(bio, err); |
| 979 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 980 | drbd_req_free(req); |
| 981 | dec_ap_bio(mdev); |
| 982 | kfree(b); |
| 983 | |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 984 | return ret; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 985 | } |
| 986 | |
| 987 | /* helper function for drbd_make_request |
| 988 | * if we can determine just by the mdev (state) that this request will fail, |
| 989 | * return 1 |
| 990 | * otherwise return 0 |
| 991 | */ |
| 992 | static int drbd_fail_request_early(struct drbd_conf *mdev, int is_write) |
| 993 | { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 994 | if (mdev->state.role != R_PRIMARY && |
| 995 | (!allow_oos || is_write)) { |
| 996 | if (__ratelimit(&drbd_ratelimit_state)) { |
| 997 | dev_err(DEV, "Process %s[%u] tried to %s; " |
| 998 | "since we are not in Primary state, " |
| 999 | "we cannot allow this\n", |
| 1000 | current->comm, current->pid, |
| 1001 | is_write ? "WRITE" : "READ"); |
| 1002 | } |
| 1003 | return 1; |
| 1004 | } |
| 1005 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1006 | return 0; |
| 1007 | } |
| 1008 | |
Andreas Gruenbacher | 2f58dcf | 2010-12-13 17:48:19 +0100 | [diff] [blame] | 1009 | int drbd_make_request(struct request_queue *q, struct bio *bio) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1010 | { |
| 1011 | unsigned int s_enr, e_enr; |
| 1012 | struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata; |
Philipp Reisner | aeda1cd6 | 2010-11-09 17:45:06 +0100 | [diff] [blame] | 1013 | unsigned long start_time; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1014 | |
| 1015 | if (drbd_fail_request_early(mdev, bio_data_dir(bio) & WRITE)) { |
| 1016 | bio_endio(bio, -EPERM); |
| 1017 | return 0; |
| 1018 | } |
| 1019 | |
Philipp Reisner | aeda1cd6 | 2010-11-09 17:45:06 +0100 | [diff] [blame] | 1020 | start_time = jiffies; |
| 1021 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1022 | /* |
| 1023 | * what we "blindly" assume: |
| 1024 | */ |
| 1025 | D_ASSERT(bio->bi_size > 0); |
| 1026 | D_ASSERT((bio->bi_size & 0x1ff) == 0); |
| 1027 | D_ASSERT(bio->bi_idx == 0); |
| 1028 | |
| 1029 | /* to make some things easier, force alignment of requests within the |
| 1030 | * granularity of our hash tables */ |
| 1031 | s_enr = bio->bi_sector >> HT_SHIFT; |
| 1032 | e_enr = (bio->bi_sector+(bio->bi_size>>9)-1) >> HT_SHIFT; |
| 1033 | |
| 1034 | if (likely(s_enr == e_enr)) { |
| 1035 | inc_ap_bio(mdev, 1); |
Philipp Reisner | aeda1cd6 | 2010-11-09 17:45:06 +0100 | [diff] [blame] | 1036 | return drbd_make_request_common(mdev, bio, start_time); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | /* can this bio be split generically? |
| 1040 | * Maybe add our own split-arbitrary-bios function. */ |
Lars Ellenberg | 1816a2b | 2010-11-11 15:19:07 +0100 | [diff] [blame] | 1041 | if (bio->bi_vcnt != 1 || bio->bi_idx != 0 || bio->bi_size > DRBD_MAX_BIO_SIZE) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1042 | /* rather error out here than BUG in bio_split */ |
| 1043 | dev_err(DEV, "bio would need to, but cannot, be split: " |
| 1044 | "(vcnt=%u,idx=%u,size=%u,sector=%llu)\n", |
| 1045 | bio->bi_vcnt, bio->bi_idx, bio->bi_size, |
| 1046 | (unsigned long long)bio->bi_sector); |
| 1047 | bio_endio(bio, -EINVAL); |
| 1048 | } else { |
| 1049 | /* This bio crosses some boundary, so we have to split it. */ |
| 1050 | struct bio_pair *bp; |
| 1051 | /* works for the "do not cross hash slot boundaries" case |
| 1052 | * e.g. sector 262269, size 4096 |
| 1053 | * s_enr = 262269 >> 6 = 4097 |
| 1054 | * e_enr = (262269+8-1) >> 6 = 4098 |
| 1055 | * HT_SHIFT = 6 |
| 1056 | * sps = 64, mask = 63 |
| 1057 | * first_sectors = 64 - (262269 & 63) = 3 |
| 1058 | */ |
| 1059 | const sector_t sect = bio->bi_sector; |
| 1060 | const int sps = 1 << HT_SHIFT; /* sectors per slot */ |
| 1061 | const int mask = sps - 1; |
| 1062 | const sector_t first_sectors = sps - (sect & mask); |
Or Gerlitz | 0356781 | 2011-01-13 10:43:40 +0100 | [diff] [blame] | 1063 | bp = bio_split(bio, first_sectors); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1064 | |
| 1065 | /* we need to get a "reference count" (ap_bio_cnt) |
| 1066 | * to avoid races with the disconnect/reconnect/suspend code. |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 1067 | * In case we need to split the bio here, we need to get three references |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1068 | * atomically, otherwise we might deadlock when trying to submit the |
| 1069 | * second one! */ |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 1070 | inc_ap_bio(mdev, 3); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1071 | |
| 1072 | D_ASSERT(e_enr == s_enr + 1); |
| 1073 | |
Philipp Reisner | aeda1cd6 | 2010-11-09 17:45:06 +0100 | [diff] [blame] | 1074 | while (drbd_make_request_common(mdev, &bp->bio1, start_time)) |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 1075 | inc_ap_bio(mdev, 1); |
| 1076 | |
Philipp Reisner | aeda1cd6 | 2010-11-09 17:45:06 +0100 | [diff] [blame] | 1077 | while (drbd_make_request_common(mdev, &bp->bio2, start_time)) |
Philipp Reisner | 9a25a04 | 2010-05-10 16:42:23 +0200 | [diff] [blame] | 1078 | inc_ap_bio(mdev, 1); |
| 1079 | |
| 1080 | dec_ap_bio(mdev); |
| 1081 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1082 | bio_pair_release(bp); |
| 1083 | } |
| 1084 | return 0; |
| 1085 | } |
| 1086 | |
| 1087 | /* This is called by bio_add_page(). With this function we reduce |
Lars Ellenberg | 1816a2b | 2010-11-11 15:19:07 +0100 | [diff] [blame] | 1088 | * the number of BIOs that span over multiple DRBD_MAX_BIO_SIZEs |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1089 | * units (was AL_EXTENTs). |
| 1090 | * |
| 1091 | * we do the calculation within the lower 32bit of the byte offsets, |
| 1092 | * since we don't care for actual offset, but only check whether it |
| 1093 | * would cross "activity log extent" boundaries. |
| 1094 | * |
| 1095 | * As long as the BIO is empty we have to allow at least one bvec, |
| 1096 | * regardless of size and offset. so the resulting bio may still |
| 1097 | * cross extent boundaries. those are dealt with (bio_split) in |
Andreas Gruenbacher | 2f58dcf | 2010-12-13 17:48:19 +0100 | [diff] [blame] | 1098 | * drbd_make_request. |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1099 | */ |
| 1100 | int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec) |
| 1101 | { |
| 1102 | struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata; |
| 1103 | unsigned int bio_offset = |
| 1104 | (unsigned int)bvm->bi_sector << 9; /* 32 bit */ |
| 1105 | unsigned int bio_size = bvm->bi_size; |
| 1106 | int limit, backing_limit; |
| 1107 | |
Lars Ellenberg | 1816a2b | 2010-11-11 15:19:07 +0100 | [diff] [blame] | 1108 | limit = DRBD_MAX_BIO_SIZE |
| 1109 | - ((bio_offset & (DRBD_MAX_BIO_SIZE-1)) + bio_size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1110 | if (limit < 0) |
| 1111 | limit = 0; |
| 1112 | if (bio_size == 0) { |
| 1113 | if (limit <= bvec->bv_len) |
| 1114 | limit = bvec->bv_len; |
| 1115 | } else if (limit && get_ldev(mdev)) { |
| 1116 | struct request_queue * const b = |
| 1117 | mdev->ldev->backing_bdev->bd_disk->queue; |
Lars Ellenberg | a1c88d0 | 2010-05-14 19:16:41 +0200 | [diff] [blame] | 1118 | if (b->merge_bvec_fn) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1119 | backing_limit = b->merge_bvec_fn(b, bvm, bvec); |
| 1120 | limit = min(limit, backing_limit); |
| 1121 | } |
| 1122 | put_ldev(mdev); |
| 1123 | } |
| 1124 | return limit; |
| 1125 | } |
Philipp Reisner | 7fde2be | 2011-03-01 11:08:28 +0100 | [diff] [blame] | 1126 | |
| 1127 | void request_timer_fn(unsigned long data) |
| 1128 | { |
| 1129 | struct drbd_conf *mdev = (struct drbd_conf *) data; |
| 1130 | struct drbd_request *req; /* oldest request */ |
| 1131 | struct list_head *le; |
| 1132 | unsigned long et = 0; /* effective timeout = ko_count * timeout */ |
| 1133 | |
Philipp Reisner | b2fb6dbe | 2011-01-19 13:48:44 +0100 | [diff] [blame] | 1134 | if (get_net_conf(mdev->tconn)) { |
Philipp Reisner | 89e58e7 | 2011-01-19 13:12:45 +0100 | [diff] [blame] | 1135 | et = mdev->tconn->net_conf->timeout*HZ/10 * mdev->tconn->net_conf->ko_count; |
Philipp Reisner | b2fb6dbe | 2011-01-19 13:48:44 +0100 | [diff] [blame] | 1136 | put_net_conf(mdev->tconn); |
Philipp Reisner | 7fde2be | 2011-03-01 11:08:28 +0100 | [diff] [blame] | 1137 | } |
| 1138 | if (!et || mdev->state.conn < C_WF_REPORT_PARAMS) |
| 1139 | return; /* Recurring timer stopped */ |
| 1140 | |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 1141 | spin_lock_irq(&mdev->tconn->req_lock); |
| 1142 | le = &mdev->tconn->oldest_tle->requests; |
Philipp Reisner | 7fde2be | 2011-03-01 11:08:28 +0100 | [diff] [blame] | 1143 | if (list_empty(le)) { |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 1144 | spin_unlock_irq(&mdev->tconn->req_lock); |
Philipp Reisner | 7fde2be | 2011-03-01 11:08:28 +0100 | [diff] [blame] | 1145 | mod_timer(&mdev->request_timer, jiffies + et); |
| 1146 | return; |
| 1147 | } |
| 1148 | |
| 1149 | le = le->prev; |
| 1150 | req = list_entry(le, struct drbd_request, tl_requests); |
| 1151 | if (time_is_before_eq_jiffies(req->start_time + et)) { |
| 1152 | if (req->rq_state & RQ_NET_PENDING) { |
| 1153 | dev_warn(DEV, "Remote failed to finish a request within ko-count * timeout\n"); |
| 1154 | _drbd_set_state(_NS(mdev, conn, C_TIMEOUT), CS_VERBOSE, NULL); |
| 1155 | } else { |
| 1156 | dev_warn(DEV, "Local backing block device frozen?\n"); |
| 1157 | mod_timer(&mdev->request_timer, jiffies + et); |
| 1158 | } |
| 1159 | } else { |
| 1160 | mod_timer(&mdev->request_timer, req->start_time + et); |
| 1161 | } |
| 1162 | |
Philipp Reisner | 87eeee4 | 2011-01-19 14:16:30 +0100 | [diff] [blame] | 1163 | spin_unlock_irq(&mdev->tconn->req_lock); |
Philipp Reisner | 7fde2be | 2011-03-01 11:08:28 +0100 | [diff] [blame] | 1164 | } |