Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1 | /* |
| 2 | drbd_worker.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> |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 27 | #include <linux/drbd.h> |
| 28 | #include <linux/sched.h> |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 29 | #include <linux/wait.h> |
| 30 | #include <linux/mm.h> |
| 31 | #include <linux/memcontrol.h> |
| 32 | #include <linux/mm_inline.h> |
| 33 | #include <linux/slab.h> |
| 34 | #include <linux/random.h> |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 35 | #include <linux/string.h> |
| 36 | #include <linux/scatterlist.h> |
| 37 | |
| 38 | #include "drbd_int.h" |
Andreas Gruenbacher | a3603a6 | 2011-05-30 11:47:37 +0200 | [diff] [blame] | 39 | #include "drbd_protocol.h" |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 40 | #include "drbd_req.h" |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 41 | |
Philipp Reisner | 00d5694 | 2011-02-09 18:09:48 +0100 | [diff] [blame] | 42 | static int w_make_ov_request(struct drbd_work *w, int cancel); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 43 | |
| 44 | |
Andreas Gruenbacher | c5a9161 | 2011-01-25 17:33:38 +0100 | [diff] [blame] | 45 | /* endio handlers: |
| 46 | * drbd_md_io_complete (defined here) |
Andreas Gruenbacher | fcefa62 | 2011-02-17 16:46:59 +0100 | [diff] [blame] | 47 | * drbd_request_endio (defined here) |
| 48 | * drbd_peer_request_endio (defined here) |
Andreas Gruenbacher | c5a9161 | 2011-01-25 17:33:38 +0100 | [diff] [blame] | 49 | * bm_async_io_complete (defined in drbd_bitmap.c) |
| 50 | * |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 51 | * For all these callbacks, note the following: |
| 52 | * The callbacks will be called in irq context by the IDE drivers, |
| 53 | * and in Softirqs/Tasklets/BH context by the SCSI drivers. |
| 54 | * Try to get the locking right :) |
| 55 | * |
| 56 | */ |
| 57 | |
| 58 | |
| 59 | /* About the global_state_lock |
| 60 | Each state transition on an device holds a read lock. In case we have |
Andreas Gruenbacher | 95f8efd | 2011-05-12 11:15:34 +0200 | [diff] [blame] | 61 | to evaluate the resync after dependencies, we grab a write lock, because |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 62 | we need stable states on all devices for that. */ |
| 63 | rwlock_t global_state_lock; |
| 64 | |
| 65 | /* used for synchronous meta data and bitmap IO |
| 66 | * submitted by drbd_md_sync_page_io() |
| 67 | */ |
| 68 | void drbd_md_io_complete(struct bio *bio, int error) |
| 69 | { |
| 70 | struct drbd_md_io *md_io; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 71 | struct drbd_device *device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 72 | |
| 73 | md_io = (struct drbd_md_io *)bio->bi_private; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 74 | device = container_of(md_io, struct drbd_device, md_io); |
Philipp Reisner | cdfda63 | 2011-07-05 15:38:59 +0200 | [diff] [blame] | 75 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 76 | md_io->error = error; |
| 77 | |
Philipp Reisner | 0cfac5d | 2011-11-10 12:12:52 +0100 | [diff] [blame] | 78 | /* We grabbed an extra reference in _drbd_md_sync_page_io() to be able |
| 79 | * to timeout on the lower level device, and eventually detach from it. |
| 80 | * If this io completion runs after that timeout expired, this |
| 81 | * drbd_md_put_buffer() may allow us to finally try and re-attach. |
| 82 | * During normal operation, this only puts that extra reference |
| 83 | * down to 1 again. |
| 84 | * Make sure we first drop the reference, and only then signal |
| 85 | * completion, or we may (in drbd_al_read_log()) cycle so fast into the |
| 86 | * next drbd_md_sync_page_io(), that we trigger the |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 87 | * ASSERT(atomic_read(&device->md_io_in_use) == 1) there. |
Philipp Reisner | 0cfac5d | 2011-11-10 12:12:52 +0100 | [diff] [blame] | 88 | */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 89 | drbd_md_put_buffer(device); |
Philipp Reisner | cdfda63 | 2011-07-05 15:38:59 +0200 | [diff] [blame] | 90 | md_io->done = 1; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 91 | wake_up(&device->misc_wait); |
Philipp Reisner | cdfda63 | 2011-07-05 15:38:59 +0200 | [diff] [blame] | 92 | bio_put(bio); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 93 | if (device->ldev) /* special case: drbd_md_read() during drbd_adm_attach() */ |
| 94 | put_ldev(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | /* reads on behalf of the partner, |
| 98 | * "submitted" by the receiver |
| 99 | */ |
Rashika Kheria | a186e47 | 2013-12-19 15:06:10 +0530 | [diff] [blame] | 100 | static void drbd_endio_read_sec_final(struct drbd_peer_request *peer_req) __releases(local) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 101 | { |
| 102 | unsigned long flags = 0; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 103 | struct drbd_device *device = peer_req->w.device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 104 | |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 105 | spin_lock_irqsave(&device->resource->req_lock, flags); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 106 | device->read_cnt += peer_req->i.size >> 9; |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 107 | list_del(&peer_req->w.list); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 108 | if (list_empty(&device->read_ee)) |
| 109 | wake_up(&device->ee_wait); |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 110 | if (test_bit(__EE_WAS_ERROR, &peer_req->flags)) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 111 | __drbd_chk_io_error(device, DRBD_READ_ERROR); |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 112 | spin_unlock_irqrestore(&device->resource->req_lock, flags); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 113 | |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 114 | drbd_queue_work(&first_peer_device(device)->connection->sender_work, &peer_req->w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 115 | put_ldev(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* writes on behalf of the partner, or resync writes, |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 119 | * "submitted" by the receiver, final stage. */ |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 120 | static void drbd_endio_write_sec_final(struct drbd_peer_request *peer_req) __releases(local) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 121 | { |
| 122 | unsigned long flags = 0; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 123 | struct drbd_device *device = peer_req->w.device; |
Lars Ellenberg | 181286a | 2011-03-31 15:18:56 +0200 | [diff] [blame] | 124 | struct drbd_interval i; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 125 | int do_wake; |
Andreas Gruenbacher | 579b57e | 2011-01-13 18:40:57 +0100 | [diff] [blame] | 126 | u64 block_id; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 127 | int do_al_complete_io; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 128 | |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 129 | /* after we moved peer_req to done_ee, |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 130 | * we may no longer access it, |
| 131 | * it may be freed/reused already! |
| 132 | * (as soon as we release the req_lock) */ |
Lars Ellenberg | 181286a | 2011-03-31 15:18:56 +0200 | [diff] [blame] | 133 | i = peer_req->i; |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 134 | do_al_complete_io = peer_req->flags & EE_CALL_AL_COMPLETE_IO; |
| 135 | block_id = peer_req->block_id; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 136 | |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 137 | spin_lock_irqsave(&device->resource->req_lock, flags); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 138 | device->writ_cnt += peer_req->i.size >> 9; |
| 139 | list_move_tail(&peer_req->w.list, &device->done_ee); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 140 | |
Andreas Gruenbacher | bb3bfe9 | 2011-01-21 15:59:23 +0100 | [diff] [blame] | 141 | /* |
Andreas Gruenbacher | 5e47226 | 2011-01-27 14:42:51 +0100 | [diff] [blame] | 142 | * Do not remove from the write_requests tree here: we did not send the |
Andreas Gruenbacher | bb3bfe9 | 2011-01-21 15:59:23 +0100 | [diff] [blame] | 143 | * Ack yet and did not wake possibly waiting conflicting requests. |
| 144 | * Removed from the tree from "drbd_process_done_ee" within the |
| 145 | * appropriate w.cb (e_end_block/e_end_resync_block) or from |
| 146 | * _drbd_clear_done_ee. |
| 147 | */ |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 148 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 149 | do_wake = list_empty(block_id == ID_SYNCER ? &device->sync_ee : &device->active_ee); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 150 | |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 151 | if (test_bit(__EE_WAS_ERROR, &peer_req->flags)) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 152 | __drbd_chk_io_error(device, DRBD_WRITE_ERROR); |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 153 | spin_unlock_irqrestore(&device->resource->req_lock, flags); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 154 | |
Andreas Gruenbacher | 579b57e | 2011-01-13 18:40:57 +0100 | [diff] [blame] | 155 | if (block_id == ID_SYNCER) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 156 | drbd_rs_complete_io(device, i.sector); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 157 | |
| 158 | if (do_wake) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 159 | wake_up(&device->ee_wait); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 160 | |
| 161 | if (do_al_complete_io) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 162 | drbd_al_complete_io(device, &i); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 163 | |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 164 | wake_asender(first_peer_device(device)->connection); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 165 | put_ldev(device); |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 166 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 167 | |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 168 | /* writes on behalf of the partner, or resync writes, |
| 169 | * "submitted" by the receiver. |
| 170 | */ |
Andreas Gruenbacher | fcefa62 | 2011-02-17 16:46:59 +0100 | [diff] [blame] | 171 | void drbd_peer_request_endio(struct bio *bio, int error) |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 172 | { |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 173 | struct drbd_peer_request *peer_req = bio->bi_private; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 174 | struct drbd_device *device = peer_req->w.device; |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 175 | int uptodate = bio_flagged(bio, BIO_UPTODATE); |
| 176 | int is_write = bio_data_dir(bio) == WRITE; |
| 177 | |
Lars Ellenberg | 0719427 | 2010-12-20 15:38:07 +0100 | [diff] [blame] | 178 | if (error && __ratelimit(&drbd_ratelimit_state)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 179 | drbd_warn(device, "%s: error=%d s=%llus\n", |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 180 | is_write ? "write" : "read", error, |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 181 | (unsigned long long)peer_req->i.sector); |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 182 | if (!error && !uptodate) { |
Lars Ellenberg | 0719427 | 2010-12-20 15:38:07 +0100 | [diff] [blame] | 183 | if (__ratelimit(&drbd_ratelimit_state)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 184 | drbd_warn(device, "%s: setting error to -EIO s=%llus\n", |
Lars Ellenberg | 0719427 | 2010-12-20 15:38:07 +0100 | [diff] [blame] | 185 | is_write ? "write" : "read", |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 186 | (unsigned long long)peer_req->i.sector); |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 187 | /* strange behavior of some lower level drivers... |
| 188 | * fail the request by clearing the uptodate flag, |
| 189 | * but do not return any error?! */ |
| 190 | error = -EIO; |
| 191 | } |
| 192 | |
| 193 | if (error) |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 194 | set_bit(__EE_WAS_ERROR, &peer_req->flags); |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 195 | |
| 196 | bio_put(bio); /* no need for the bio anymore */ |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 197 | if (atomic_dec_and_test(&peer_req->pending_bios)) { |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 198 | if (is_write) |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 199 | drbd_endio_write_sec_final(peer_req); |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 200 | else |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 201 | drbd_endio_read_sec_final(peer_req); |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 202 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | /* read, readA or write requests on R_PRIMARY coming from drbd_make_request |
| 206 | */ |
Andreas Gruenbacher | fcefa62 | 2011-02-17 16:46:59 +0100 | [diff] [blame] | 207 | void drbd_request_endio(struct bio *bio, int error) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 208 | { |
Lars Ellenberg | a115413 | 2010-11-13 20:42:29 +0100 | [diff] [blame] | 209 | unsigned long flags; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 210 | struct drbd_request *req = bio->bi_private; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 211 | struct drbd_device *device = req->w.device; |
Lars Ellenberg | a115413 | 2010-11-13 20:42:29 +0100 | [diff] [blame] | 212 | struct bio_and_error m; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 213 | enum drbd_req_event what; |
| 214 | int uptodate = bio_flagged(bio, BIO_UPTODATE); |
| 215 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 216 | if (!error && !uptodate) { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 217 | drbd_warn(device, "p %s: setting error to -EIO\n", |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 218 | bio_data_dir(bio) == WRITE ? "write" : "read"); |
| 219 | /* strange behavior of some lower level drivers... |
| 220 | * fail the request by clearing the uptodate flag, |
| 221 | * but do not return any error?! */ |
| 222 | error = -EIO; |
| 223 | } |
| 224 | |
Philipp Reisner | 1b6dd25 | 2012-09-04 15:16:20 +0200 | [diff] [blame] | 225 | |
| 226 | /* If this request was aborted locally before, |
| 227 | * but now was completed "successfully", |
| 228 | * chances are that this caused arbitrary data corruption. |
| 229 | * |
| 230 | * "aborting" requests, or force-detaching the disk, is intended for |
| 231 | * completely blocked/hung local backing devices which do no longer |
| 232 | * complete requests at all, not even do error completions. In this |
| 233 | * situation, usually a hard-reset and failover is the only way out. |
| 234 | * |
| 235 | * By "aborting", basically faking a local error-completion, |
| 236 | * we allow for a more graceful swichover by cleanly migrating services. |
| 237 | * Still the affected node has to be rebooted "soon". |
| 238 | * |
| 239 | * By completing these requests, we allow the upper layers to re-use |
| 240 | * the associated data pages. |
| 241 | * |
| 242 | * If later the local backing device "recovers", and now DMAs some data |
| 243 | * from disk into the original request pages, in the best case it will |
| 244 | * just put random data into unused pages; but typically it will corrupt |
| 245 | * meanwhile completely unrelated data, causing all sorts of damage. |
| 246 | * |
| 247 | * Which means delayed successful completion, |
| 248 | * especially for READ requests, |
| 249 | * is a reason to panic(). |
| 250 | * |
| 251 | * We assume that a delayed *error* completion is OK, |
| 252 | * though we still will complain noisily about it. |
| 253 | */ |
| 254 | if (unlikely(req->rq_state & RQ_LOCAL_ABORTED)) { |
| 255 | if (__ratelimit(&drbd_ratelimit_state)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 256 | drbd_emerg(device, "delayed completion of aborted local request; disk-timeout may be too aggressive\n"); |
Philipp Reisner | 1b6dd25 | 2012-09-04 15:16:20 +0200 | [diff] [blame] | 257 | |
| 258 | if (!error) |
| 259 | panic("possible random memory corruption caused by delayed completion of aborted local request\n"); |
| 260 | } |
| 261 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 262 | /* to avoid recursion in __req_mod */ |
| 263 | if (unlikely(error)) { |
| 264 | what = (bio_data_dir(bio) == WRITE) |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 265 | ? WRITE_COMPLETED_WITH_ERROR |
Lars Ellenberg | 5c3c7e6 | 2010-04-10 02:10:09 +0200 | [diff] [blame] | 266 | : (bio_rw(bio) == READ) |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 267 | ? READ_COMPLETED_WITH_ERROR |
| 268 | : READ_AHEAD_COMPLETED_WITH_ERROR; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 269 | } else |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 270 | what = COMPLETED_OK; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 271 | |
| 272 | bio_put(req->private_bio); |
| 273 | req->private_bio = ERR_PTR(error); |
| 274 | |
Lars Ellenberg | a115413 | 2010-11-13 20:42:29 +0100 | [diff] [blame] | 275 | /* not req_mod(), we need irqsave here! */ |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 276 | spin_lock_irqsave(&device->resource->req_lock, flags); |
Lars Ellenberg | a115413 | 2010-11-13 20:42:29 +0100 | [diff] [blame] | 277 | __req_mod(req, what, &m); |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 278 | spin_unlock_irqrestore(&device->resource->req_lock, flags); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 279 | put_ldev(device); |
Lars Ellenberg | a115413 | 2010-11-13 20:42:29 +0100 | [diff] [blame] | 280 | |
| 281 | if (m.bio) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 282 | complete_master_bio(device, &m); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 283 | } |
| 284 | |
Andreas Gruenbacher | 79a3c8d | 2011-08-09 02:49:01 +0200 | [diff] [blame] | 285 | void drbd_csum_ee(struct crypto_hash *tfm, struct drbd_peer_request *peer_req, void *digest) |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 286 | { |
| 287 | struct hash_desc desc; |
| 288 | struct scatterlist sg; |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 289 | struct page *page = peer_req->pages; |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 290 | struct page *tmp; |
| 291 | unsigned len; |
| 292 | |
| 293 | desc.tfm = tfm; |
| 294 | desc.flags = 0; |
| 295 | |
| 296 | sg_init_table(&sg, 1); |
| 297 | crypto_hash_init(&desc); |
| 298 | |
| 299 | while ((tmp = page_chain_next(page))) { |
| 300 | /* all but the last page will be fully used */ |
| 301 | sg_set_page(&sg, page, PAGE_SIZE, 0); |
| 302 | crypto_hash_update(&desc, &sg, sg.length); |
| 303 | page = tmp; |
| 304 | } |
| 305 | /* and now the last, possibly only partially used page */ |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 306 | len = peer_req->i.size & (PAGE_SIZE - 1); |
Lars Ellenberg | 45bb912 | 2010-05-14 17:10:48 +0200 | [diff] [blame] | 307 | sg_set_page(&sg, page, len ?: PAGE_SIZE, 0); |
| 308 | crypto_hash_update(&desc, &sg, sg.length); |
| 309 | crypto_hash_final(&desc, digest); |
| 310 | } |
| 311 | |
Andreas Gruenbacher | 79a3c8d | 2011-08-09 02:49:01 +0200 | [diff] [blame] | 312 | void drbd_csum_bio(struct crypto_hash *tfm, struct bio *bio, void *digest) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 313 | { |
| 314 | struct hash_desc desc; |
| 315 | struct scatterlist sg; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 316 | struct bio_vec bvec; |
| 317 | struct bvec_iter iter; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 318 | |
| 319 | desc.tfm = tfm; |
| 320 | desc.flags = 0; |
| 321 | |
| 322 | sg_init_table(&sg, 1); |
| 323 | crypto_hash_init(&desc); |
| 324 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 325 | bio_for_each_segment(bvec, bio, iter) { |
| 326 | sg_set_page(&sg, bvec.bv_page, bvec.bv_len, bvec.bv_offset); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 327 | crypto_hash_update(&desc, &sg, sg.length); |
| 328 | } |
| 329 | crypto_hash_final(&desc, digest); |
| 330 | } |
| 331 | |
Lars Ellenberg | 9676c76 | 2011-02-22 14:02:31 +0100 | [diff] [blame] | 332 | /* MAYBE merge common code with w_e_end_ov_req */ |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 333 | static int w_e_send_csum(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 334 | { |
Philipp Reisner | 00d5694 | 2011-02-09 18:09:48 +0100 | [diff] [blame] | 335 | struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 336 | struct drbd_device *device = w->device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 337 | int digest_size; |
| 338 | void *digest; |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 339 | int err = 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 340 | |
Lars Ellenberg | 53ea433 | 2011-03-08 17:11:40 +0100 | [diff] [blame] | 341 | if (unlikely(cancel)) |
| 342 | goto out; |
| 343 | |
Lars Ellenberg | 9676c76 | 2011-02-22 14:02:31 +0100 | [diff] [blame] | 344 | if (unlikely((peer_req->flags & EE_WAS_ERROR) != 0)) |
Lars Ellenberg | 53ea433 | 2011-03-08 17:11:40 +0100 | [diff] [blame] | 345 | goto out; |
| 346 | |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 347 | digest_size = crypto_hash_digestsize(first_peer_device(device)->connection->csums_tfm); |
Lars Ellenberg | 53ea433 | 2011-03-08 17:11:40 +0100 | [diff] [blame] | 348 | digest = kmalloc(digest_size, GFP_NOIO); |
| 349 | if (digest) { |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 350 | sector_t sector = peer_req->i.sector; |
| 351 | unsigned int size = peer_req->i.size; |
Andreas Gruenbacher | 79a3c8d | 2011-08-09 02:49:01 +0200 | [diff] [blame] | 352 | drbd_csum_ee(first_peer_device(device)->connection->csums_tfm, peer_req, digest); |
Lars Ellenberg | 9676c76 | 2011-02-22 14:02:31 +0100 | [diff] [blame] | 353 | /* Free peer_req and pages before send. |
Lars Ellenberg | 53ea433 | 2011-03-08 17:11:40 +0100 | [diff] [blame] | 354 | * In case we block on congestion, we could otherwise run into |
| 355 | * some distributed deadlock, if the other side blocks on |
| 356 | * congestion as well, because our receiver blocks in |
Andreas Gruenbacher | c37c8ec | 2011-04-07 21:02:09 +0200 | [diff] [blame] | 357 | * drbd_alloc_pages due to pp_in_use > max_buffers. */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 358 | drbd_free_peer_req(device, peer_req); |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 359 | peer_req = NULL; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 360 | inc_rs_pending(device); |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 361 | err = drbd_send_drequest_csum(first_peer_device(device), sector, size, |
Andreas Gruenbacher | db1b0b7 | 2011-03-16 01:37:21 +0100 | [diff] [blame] | 362 | digest, digest_size, |
| 363 | P_CSUM_RS_REQUEST); |
Lars Ellenberg | 53ea433 | 2011-03-08 17:11:40 +0100 | [diff] [blame] | 364 | kfree(digest); |
| 365 | } else { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 366 | drbd_err(device, "kmalloc() of digest failed.\n"); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 367 | err = -ENOMEM; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 368 | } |
| 369 | |
Lars Ellenberg | 53ea433 | 2011-03-08 17:11:40 +0100 | [diff] [blame] | 370 | out: |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 371 | if (peer_req) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 372 | drbd_free_peer_req(device, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 373 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 374 | if (unlikely(err)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 375 | drbd_err(device, "drbd_send_drequest(..., csum) failed\n"); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 376 | return err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | #define GFP_TRY (__GFP_HIGHMEM | __GFP_NOWARN) |
| 380 | |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 381 | static int read_for_csum(struct drbd_peer_device *peer_device, sector_t sector, int size) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 382 | { |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 383 | struct drbd_device *device = peer_device->device; |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 384 | struct drbd_peer_request *peer_req; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 385 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 386 | if (!get_ldev(device)) |
Lars Ellenberg | 80a40e4 | 2010-08-11 23:28:00 +0200 | [diff] [blame] | 387 | return -EIO; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 388 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 389 | if (drbd_rs_should_slow_down(device, sector)) |
Lars Ellenberg | 0f0601f | 2010-08-11 23:40:24 +0200 | [diff] [blame] | 390 | goto defer; |
| 391 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 392 | /* GFP_TRY, because if there is no memory available right now, this may |
| 393 | * be rescheduled for later. It is "only" background resync, after all. */ |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 394 | peer_req = drbd_alloc_peer_req(peer_device, ID_SYNCER /* unused */, sector, |
Andreas Gruenbacher | 0db5536 | 2011-04-06 16:09:15 +0200 | [diff] [blame] | 395 | size, GFP_TRY); |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 396 | if (!peer_req) |
Lars Ellenberg | 80a40e4 | 2010-08-11 23:28:00 +0200 | [diff] [blame] | 397 | goto defer; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 398 | |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 399 | peer_req->w.cb = w_e_send_csum; |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 400 | spin_lock_irq(&device->resource->req_lock); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 401 | list_add(&peer_req->w.list, &device->read_ee); |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 402 | spin_unlock_irq(&device->resource->req_lock); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 403 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 404 | atomic_add(size >> 9, &device->rs_sect_ev); |
| 405 | if (drbd_submit_peer_request(device, peer_req, READ, DRBD_FAULT_RS_RD) == 0) |
Lars Ellenberg | 80a40e4 | 2010-08-11 23:28:00 +0200 | [diff] [blame] | 406 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 407 | |
Lars Ellenberg | 10f6d992 | 2011-01-24 14:47:09 +0100 | [diff] [blame] | 408 | /* If it failed because of ENOMEM, retry should help. If it failed |
| 409 | * because bio_add_page failed (probably broken lower level driver), |
| 410 | * retry may or may not help. |
| 411 | * If it does not, you may need to force disconnect. */ |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 412 | spin_lock_irq(&device->resource->req_lock); |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 413 | list_del(&peer_req->w.list); |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 414 | spin_unlock_irq(&device->resource->req_lock); |
Lars Ellenberg | 22cc37a | 2010-09-14 20:40:41 +0200 | [diff] [blame] | 415 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 416 | drbd_free_peer_req(device, peer_req); |
Lars Ellenberg | 80a40e4 | 2010-08-11 23:28:00 +0200 | [diff] [blame] | 417 | defer: |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 418 | put_ldev(device); |
Lars Ellenberg | 80a40e4 | 2010-08-11 23:28:00 +0200 | [diff] [blame] | 419 | return -EAGAIN; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 420 | } |
| 421 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 422 | int w_resync_timer(struct drbd_work *w, int cancel) |
Philipp Reisner | 794abb7 | 2010-12-27 11:51:23 +0100 | [diff] [blame] | 423 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 424 | struct drbd_device *device = w->device; |
| 425 | switch (device->state.conn) { |
Philipp Reisner | 794abb7 | 2010-12-27 11:51:23 +0100 | [diff] [blame] | 426 | case C_VERIFY_S: |
Philipp Reisner | 00d5694 | 2011-02-09 18:09:48 +0100 | [diff] [blame] | 427 | w_make_ov_request(w, cancel); |
Philipp Reisner | 794abb7 | 2010-12-27 11:51:23 +0100 | [diff] [blame] | 428 | break; |
| 429 | case C_SYNC_TARGET: |
Philipp Reisner | 00d5694 | 2011-02-09 18:09:48 +0100 | [diff] [blame] | 430 | w_make_resync_request(w, cancel); |
Philipp Reisner | 794abb7 | 2010-12-27 11:51:23 +0100 | [diff] [blame] | 431 | break; |
| 432 | } |
| 433 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 434 | return 0; |
Philipp Reisner | 794abb7 | 2010-12-27 11:51:23 +0100 | [diff] [blame] | 435 | } |
| 436 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 437 | void resync_timer_fn(unsigned long data) |
| 438 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 439 | struct drbd_device *device = (struct drbd_device *) data; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 440 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 441 | if (list_empty(&device->resync_work.list)) |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 442 | drbd_queue_work(&first_peer_device(device)->connection->sender_work, &device->resync_work); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 443 | } |
| 444 | |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 445 | static void fifo_set(struct fifo_buffer *fb, int value) |
| 446 | { |
| 447 | int i; |
| 448 | |
| 449 | for (i = 0; i < fb->size; i++) |
Philipp Reisner | f10f262 | 2010-10-05 16:50:17 +0200 | [diff] [blame] | 450 | fb->values[i] = value; |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | static int fifo_push(struct fifo_buffer *fb, int value) |
| 454 | { |
| 455 | int ov; |
| 456 | |
| 457 | ov = fb->values[fb->head_index]; |
| 458 | fb->values[fb->head_index++] = value; |
| 459 | |
| 460 | if (fb->head_index >= fb->size) |
| 461 | fb->head_index = 0; |
| 462 | |
| 463 | return ov; |
| 464 | } |
| 465 | |
| 466 | static void fifo_add_val(struct fifo_buffer *fb, int value) |
| 467 | { |
| 468 | int i; |
| 469 | |
| 470 | for (i = 0; i < fb->size; i++) |
| 471 | fb->values[i] += value; |
| 472 | } |
| 473 | |
Philipp Reisner | 9958c85 | 2011-05-03 16:19:31 +0200 | [diff] [blame] | 474 | struct fifo_buffer *fifo_alloc(int fifo_size) |
| 475 | { |
| 476 | struct fifo_buffer *fb; |
| 477 | |
Lars Ellenberg | 8747d30 | 2012-09-26 14:22:40 +0200 | [diff] [blame] | 478 | fb = kzalloc(sizeof(struct fifo_buffer) + sizeof(int) * fifo_size, GFP_NOIO); |
Philipp Reisner | 9958c85 | 2011-05-03 16:19:31 +0200 | [diff] [blame] | 479 | if (!fb) |
| 480 | return NULL; |
| 481 | |
| 482 | fb->head_index = 0; |
| 483 | fb->size = fifo_size; |
| 484 | fb->total = 0; |
| 485 | |
| 486 | return fb; |
| 487 | } |
| 488 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 489 | static int drbd_rs_controller(struct drbd_device *device) |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 490 | { |
Philipp Reisner | daeda1c | 2011-05-03 15:00:55 +0200 | [diff] [blame] | 491 | struct disk_conf *dc; |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 492 | unsigned int sect_in; /* Number of sectors that came in since the last turn */ |
| 493 | unsigned int want; /* The number of sectors we want in the proxy */ |
| 494 | int req_sect; /* Number of sectors to request in this turn */ |
| 495 | int correction; /* Number of sectors more we need in the proxy*/ |
| 496 | int cps; /* correction per invocation of drbd_rs_controller() */ |
| 497 | int steps; /* Number of time steps to plan ahead */ |
| 498 | int curr_corr; |
| 499 | int max_sect; |
Philipp Reisner | 813472c | 2011-05-03 16:47:02 +0200 | [diff] [blame] | 500 | struct fifo_buffer *plan; |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 501 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 502 | sect_in = atomic_xchg(&device->rs_sect_in, 0); /* Number of sectors that came in */ |
| 503 | device->rs_in_flight -= sect_in; |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 504 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 505 | dc = rcu_dereference(device->ldev->disk_conf); |
| 506 | plan = rcu_dereference(device->rs_plan_s); |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 507 | |
Philipp Reisner | 813472c | 2011-05-03 16:47:02 +0200 | [diff] [blame] | 508 | steps = plan->size; /* (dc->c_plan_ahead * 10 * SLEEP_TIME) / HZ; */ |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 509 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 510 | if (device->rs_in_flight + sect_in == 0) { /* At start of resync */ |
Philipp Reisner | daeda1c | 2011-05-03 15:00:55 +0200 | [diff] [blame] | 511 | want = ((dc->resync_rate * 2 * SLEEP_TIME) / HZ) * steps; |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 512 | } else { /* normal path */ |
Philipp Reisner | daeda1c | 2011-05-03 15:00:55 +0200 | [diff] [blame] | 513 | want = dc->c_fill_target ? dc->c_fill_target : |
| 514 | sect_in * dc->c_delay_target * HZ / (SLEEP_TIME * 10); |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 515 | } |
| 516 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 517 | correction = want - device->rs_in_flight - plan->total; |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 518 | |
| 519 | /* Plan ahead */ |
| 520 | cps = correction / steps; |
Philipp Reisner | 813472c | 2011-05-03 16:47:02 +0200 | [diff] [blame] | 521 | fifo_add_val(plan, cps); |
| 522 | plan->total += cps * steps; |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 523 | |
| 524 | /* What we do in this step */ |
Philipp Reisner | 813472c | 2011-05-03 16:47:02 +0200 | [diff] [blame] | 525 | curr_corr = fifo_push(plan, 0); |
| 526 | plan->total -= curr_corr; |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 527 | |
| 528 | req_sect = sect_in + curr_corr; |
| 529 | if (req_sect < 0) |
| 530 | req_sect = 0; |
| 531 | |
Philipp Reisner | daeda1c | 2011-05-03 15:00:55 +0200 | [diff] [blame] | 532 | max_sect = (dc->c_max_rate * 2 * SLEEP_TIME) / HZ; |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 533 | if (req_sect > max_sect) |
| 534 | req_sect = max_sect; |
| 535 | |
| 536 | /* |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 537 | drbd_warn(device, "si=%u if=%d wa=%u co=%d st=%d cps=%d pl=%d cc=%d rs=%d\n", |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 538 | sect_in, device->rs_in_flight, want, correction, |
| 539 | steps, cps, device->rs_planed, curr_corr, req_sect); |
Philipp Reisner | 778f271 | 2010-07-06 11:14:00 +0200 | [diff] [blame] | 540 | */ |
| 541 | |
| 542 | return req_sect; |
| 543 | } |
| 544 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 545 | static int drbd_rs_number_requests(struct drbd_device *device) |
Lars Ellenberg | e65f440 | 2010-11-05 10:04:07 +0100 | [diff] [blame] | 546 | { |
| 547 | int number; |
Philipp Reisner | 813472c | 2011-05-03 16:47:02 +0200 | [diff] [blame] | 548 | |
| 549 | rcu_read_lock(); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 550 | if (rcu_dereference(device->rs_plan_s)->size) { |
| 551 | number = drbd_rs_controller(device) >> (BM_BLOCK_SHIFT - 9); |
| 552 | device->c_sync_rate = number * HZ * (BM_BLOCK_SIZE / 1024) / SLEEP_TIME; |
Lars Ellenberg | e65f440 | 2010-11-05 10:04:07 +0100 | [diff] [blame] | 553 | } else { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 554 | device->c_sync_rate = rcu_dereference(device->ldev->disk_conf)->resync_rate; |
| 555 | number = SLEEP_TIME * device->c_sync_rate / ((BM_BLOCK_SIZE / 1024) * HZ); |
Lars Ellenberg | e65f440 | 2010-11-05 10:04:07 +0100 | [diff] [blame] | 556 | } |
Philipp Reisner | 813472c | 2011-05-03 16:47:02 +0200 | [diff] [blame] | 557 | rcu_read_unlock(); |
Lars Ellenberg | e65f440 | 2010-11-05 10:04:07 +0100 | [diff] [blame] | 558 | |
Lars Ellenberg | e65f440 | 2010-11-05 10:04:07 +0100 | [diff] [blame] | 559 | /* ignore the amount of pending requests, the resync controller should |
| 560 | * throttle down to incoming reply rate soon enough anyways. */ |
| 561 | return number; |
| 562 | } |
| 563 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 564 | int w_make_resync_request(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 565 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 566 | struct drbd_device *device = w->device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 567 | unsigned long bit; |
| 568 | sector_t sector; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 569 | const sector_t capacity = drbd_get_capacity(device->this_bdev); |
Lars Ellenberg | 1816a2b | 2010-11-11 15:19:07 +0100 | [diff] [blame] | 570 | int max_bio_size; |
Lars Ellenberg | e65f440 | 2010-11-05 10:04:07 +0100 | [diff] [blame] | 571 | int number, rollback_i, size; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 572 | int align, queued, sndbuf; |
Lars Ellenberg | 0f0601f | 2010-08-11 23:40:24 +0200 | [diff] [blame] | 573 | int i = 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 574 | |
| 575 | if (unlikely(cancel)) |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 576 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 577 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 578 | if (device->rs_total == 0) { |
Lars Ellenberg | af85e8e | 2010-10-07 16:07:55 +0200 | [diff] [blame] | 579 | /* empty resync? */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 580 | drbd_resync_finished(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 581 | return 0; |
Lars Ellenberg | af85e8e | 2010-10-07 16:07:55 +0200 | [diff] [blame] | 582 | } |
| 583 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 584 | if (!get_ldev(device)) { |
| 585 | /* Since we only need to access device->rsync a |
| 586 | get_ldev_if_state(device,D_FAILED) would be sufficient, but |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 587 | to continue resync with a broken disk makes no sense at |
| 588 | all */ |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 589 | drbd_err(device, "Disk broke down during resync!\n"); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 590 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 591 | } |
| 592 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 593 | max_bio_size = queue_max_hw_sectors(device->rq_queue) << 9; |
| 594 | number = drbd_rs_number_requests(device); |
Lars Ellenberg | e65f440 | 2010-11-05 10:04:07 +0100 | [diff] [blame] | 595 | if (number == 0) |
Lars Ellenberg | 0f0601f | 2010-08-11 23:40:24 +0200 | [diff] [blame] | 596 | goto requeue; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 597 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 598 | for (i = 0; i < number; i++) { |
| 599 | /* Stop generating RS requests, when half of the send buffer is filled */ |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 600 | mutex_lock(&first_peer_device(device)->connection->data.mutex); |
| 601 | if (first_peer_device(device)->connection->data.socket) { |
| 602 | queued = first_peer_device(device)->connection->data.socket->sk->sk_wmem_queued; |
| 603 | sndbuf = first_peer_device(device)->connection->data.socket->sk->sk_sndbuf; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 604 | } else { |
| 605 | queued = 1; |
| 606 | sndbuf = 0; |
| 607 | } |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 608 | mutex_unlock(&first_peer_device(device)->connection->data.mutex); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 609 | if (queued > sndbuf / 2) |
| 610 | goto requeue; |
| 611 | |
| 612 | next_sector: |
| 613 | size = BM_BLOCK_SIZE; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 614 | bit = drbd_bm_find_next(device, device->bm_resync_fo); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 615 | |
Lars Ellenberg | 4b0715f | 2010-12-14 15:13:04 +0100 | [diff] [blame] | 616 | if (bit == DRBD_END_OF_BITMAP) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 617 | device->bm_resync_fo = drbd_bm_bits(device); |
| 618 | put_ldev(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 619 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | sector = BM_BIT_TO_SECT(bit); |
| 623 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 624 | if (drbd_rs_should_slow_down(device, sector) || |
| 625 | drbd_try_rs_begin_io(device, sector)) { |
| 626 | device->bm_resync_fo = bit; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 627 | goto requeue; |
| 628 | } |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 629 | device->bm_resync_fo = bit + 1; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 630 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 631 | if (unlikely(drbd_bm_test_bit(device, bit) == 0)) { |
| 632 | drbd_rs_complete_io(device, sector); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 633 | goto next_sector; |
| 634 | } |
| 635 | |
Lars Ellenberg | 1816a2b | 2010-11-11 15:19:07 +0100 | [diff] [blame] | 636 | #if DRBD_MAX_BIO_SIZE > BM_BLOCK_SIZE |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 637 | /* try to find some adjacent bits. |
| 638 | * we stop if we have already the maximum req size. |
| 639 | * |
| 640 | * Additionally always align bigger requests, in order to |
| 641 | * be prepared for all stripe sizes of software RAIDs. |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 642 | */ |
| 643 | align = 1; |
Philipp Reisner | d207450 | 2010-07-22 15:27:27 +0200 | [diff] [blame] | 644 | rollback_i = i; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 645 | for (;;) { |
Lars Ellenberg | 1816a2b | 2010-11-11 15:19:07 +0100 | [diff] [blame] | 646 | if (size + BM_BLOCK_SIZE > max_bio_size) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 647 | break; |
| 648 | |
| 649 | /* Be always aligned */ |
| 650 | if (sector & ((1<<(align+3))-1)) |
| 651 | break; |
| 652 | |
| 653 | /* do not cross extent boundaries */ |
| 654 | if (((bit+1) & BM_BLOCKS_PER_BM_EXT_MASK) == 0) |
| 655 | break; |
| 656 | /* now, is it actually dirty, after all? |
| 657 | * caution, drbd_bm_test_bit is tri-state for some |
| 658 | * obscure reason; ( b == 0 ) would get the out-of-band |
| 659 | * only accidentally right because of the "oddly sized" |
| 660 | * adjustment below */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 661 | if (drbd_bm_test_bit(device, bit+1) != 1) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 662 | break; |
| 663 | bit++; |
| 664 | size += BM_BLOCK_SIZE; |
| 665 | if ((BM_BLOCK_SIZE << align) <= size) |
| 666 | align++; |
| 667 | i++; |
| 668 | } |
| 669 | /* if we merged some, |
| 670 | * reset the offset to start the next drbd_bm_find_next from */ |
| 671 | if (size > BM_BLOCK_SIZE) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 672 | device->bm_resync_fo = bit + 1; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 673 | #endif |
| 674 | |
| 675 | /* adjust very last sectors, in case we are oddly sized */ |
| 676 | if (sector + (size>>9) > capacity) |
| 677 | size = (capacity-sector)<<9; |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 678 | if (first_peer_device(device)->connection->agreed_pro_version >= 89 && |
| 679 | first_peer_device(device)->connection->csums_tfm) { |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 680 | switch (read_for_csum(first_peer_device(device), sector, size)) { |
Lars Ellenberg | 80a40e4 | 2010-08-11 23:28:00 +0200 | [diff] [blame] | 681 | case -EIO: /* Disk failure */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 682 | put_ldev(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 683 | return -EIO; |
Lars Ellenberg | 80a40e4 | 2010-08-11 23:28:00 +0200 | [diff] [blame] | 684 | case -EAGAIN: /* allocation failed, or ldev busy */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 685 | drbd_rs_complete_io(device, sector); |
| 686 | device->bm_resync_fo = BM_SECT_TO_BIT(sector); |
Philipp Reisner | d207450 | 2010-07-22 15:27:27 +0200 | [diff] [blame] | 687 | i = rollback_i; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 688 | goto requeue; |
Lars Ellenberg | 80a40e4 | 2010-08-11 23:28:00 +0200 | [diff] [blame] | 689 | case 0: |
| 690 | /* everything ok */ |
| 691 | break; |
| 692 | default: |
| 693 | BUG(); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 694 | } |
| 695 | } else { |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 696 | int err; |
| 697 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 698 | inc_rs_pending(device); |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 699 | err = drbd_send_drequest(first_peer_device(device), P_RS_DATA_REQUEST, |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 700 | sector, size, ID_SYNCER); |
| 701 | if (err) { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 702 | drbd_err(device, "drbd_send_drequest() failed, aborting...\n"); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 703 | dec_rs_pending(device); |
| 704 | put_ldev(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 705 | return err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 706 | } |
| 707 | } |
| 708 | } |
| 709 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 710 | if (device->bm_resync_fo >= drbd_bm_bits(device)) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 711 | /* last syncer _request_ was sent, |
| 712 | * but the P_RS_DATA_REPLY not yet received. sync will end (and |
| 713 | * next sync group will resume), as soon as we receive the last |
| 714 | * resync data block, and the last bit is cleared. |
| 715 | * until then resync "work" is "inactive" ... |
| 716 | */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 717 | put_ldev(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 718 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | requeue: |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 722 | device->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9)); |
| 723 | mod_timer(&device->resync_timer, jiffies + SLEEP_TIME); |
| 724 | put_ldev(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 725 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 726 | } |
| 727 | |
Philipp Reisner | 00d5694 | 2011-02-09 18:09:48 +0100 | [diff] [blame] | 728 | static int w_make_ov_request(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 729 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 730 | struct drbd_device *device = w->device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 731 | int number, i, size; |
| 732 | sector_t sector; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 733 | const sector_t capacity = drbd_get_capacity(device->this_bdev); |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 734 | bool stop_sector_reached = false; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 735 | |
| 736 | if (unlikely(cancel)) |
| 737 | return 1; |
| 738 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 739 | number = drbd_rs_number_requests(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 740 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 741 | sector = device->ov_position; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 742 | for (i = 0; i < number; i++) { |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 743 | if (sector >= capacity) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 744 | return 1; |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 745 | |
| 746 | /* We check for "finished" only in the reply path: |
| 747 | * w_e_end_ov_reply(). |
| 748 | * We need to send at least one request out. */ |
| 749 | stop_sector_reached = i > 0 |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 750 | && verify_can_do_stop_sector(device) |
| 751 | && sector >= device->ov_stop_sector; |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 752 | if (stop_sector_reached) |
| 753 | break; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 754 | |
| 755 | size = BM_BLOCK_SIZE; |
| 756 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 757 | if (drbd_rs_should_slow_down(device, sector) || |
| 758 | drbd_try_rs_begin_io(device, sector)) { |
| 759 | device->ov_position = sector; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 760 | goto requeue; |
| 761 | } |
| 762 | |
| 763 | if (sector + (size>>9) > capacity) |
| 764 | size = (capacity-sector)<<9; |
| 765 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 766 | inc_rs_pending(device); |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 767 | if (drbd_send_ov_request(first_peer_device(device), sector, size)) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 768 | dec_rs_pending(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 769 | return 0; |
| 770 | } |
| 771 | sector += BM_SECT_PER_BIT; |
| 772 | } |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 773 | device->ov_position = sector; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 774 | |
| 775 | requeue: |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 776 | device->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9)); |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 777 | if (i == 0 || !stop_sector_reached) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 778 | mod_timer(&device->resync_timer, jiffies + SLEEP_TIME); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 779 | return 1; |
| 780 | } |
| 781 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 782 | int w_ov_finished(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 783 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 784 | struct drbd_device *device = w->device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 785 | kfree(w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 786 | ov_out_of_sync_print(device); |
| 787 | drbd_resync_finished(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 788 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 789 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 790 | } |
| 791 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 792 | static int w_resync_finished(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 793 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 794 | struct drbd_device *device = w->device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 795 | kfree(w); |
| 796 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 797 | drbd_resync_finished(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 798 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 799 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 800 | } |
| 801 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 802 | static void ping_peer(struct drbd_device *device) |
Lars Ellenberg | af85e8e | 2010-10-07 16:07:55 +0200 | [diff] [blame] | 803 | { |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 804 | struct drbd_connection *connection = first_peer_device(device)->connection; |
Philipp Reisner | 2a67d8b | 2011-02-09 14:10:32 +0100 | [diff] [blame] | 805 | |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 806 | clear_bit(GOT_PING_ACK, &connection->flags); |
| 807 | request_ping(connection); |
| 808 | wait_event(connection->ping_wait, |
| 809 | test_bit(GOT_PING_ACK, &connection->flags) || device->state.conn < C_CONNECTED); |
Lars Ellenberg | af85e8e | 2010-10-07 16:07:55 +0200 | [diff] [blame] | 810 | } |
| 811 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 812 | int drbd_resync_finished(struct drbd_device *device) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 813 | { |
| 814 | unsigned long db, dt, dbdt; |
| 815 | unsigned long n_oos; |
| 816 | union drbd_state os, ns; |
| 817 | struct drbd_work *w; |
| 818 | char *khelper_cmd = NULL; |
Lars Ellenberg | 2652561 | 2010-11-05 09:56:33 +0100 | [diff] [blame] | 819 | int verify_done = 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 820 | |
| 821 | /* Remove all elements from the resync LRU. Since future actions |
| 822 | * might set bits in the (main) bitmap, then the entries in the |
| 823 | * resync LRU would be wrong. */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 824 | if (drbd_rs_del_all(device)) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 825 | /* In case this is not possible now, most probably because |
| 826 | * there are P_RS_DATA_REPLY Packets lingering on the worker's |
| 827 | * queue (or even the read operations for those packets |
| 828 | * is not finished by now). Retry in 100ms. */ |
| 829 | |
Philipp Reisner | 20ee639 | 2011-01-18 15:28:59 +0100 | [diff] [blame] | 830 | schedule_timeout_interruptible(HZ / 10); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 831 | w = kmalloc(sizeof(struct drbd_work), GFP_ATOMIC); |
| 832 | if (w) { |
| 833 | w->cb = w_resync_finished; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 834 | w->device = device; |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 835 | drbd_queue_work(&first_peer_device(device)->connection->sender_work, w); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 836 | return 1; |
| 837 | } |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 838 | drbd_err(device, "Warn failed to drbd_rs_del_all() and to kmalloc(w).\n"); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 839 | } |
| 840 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 841 | dt = (jiffies - device->rs_start - device->rs_paused) / HZ; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 842 | if (dt <= 0) |
| 843 | dt = 1; |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 844 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 845 | db = device->rs_total; |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 846 | /* adjust for verify start and stop sectors, respective reached position */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 847 | if (device->state.conn == C_VERIFY_S || device->state.conn == C_VERIFY_T) |
| 848 | db -= device->ov_left; |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 849 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 850 | dbdt = Bit2KB(db/dt); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 851 | device->rs_paused /= HZ; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 852 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 853 | if (!get_ldev(device)) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 854 | goto out; |
| 855 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 856 | ping_peer(device); |
Lars Ellenberg | af85e8e | 2010-10-07 16:07:55 +0200 | [diff] [blame] | 857 | |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 858 | spin_lock_irq(&device->resource->req_lock); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 859 | os = drbd_read_state(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 860 | |
Lars Ellenberg | 2652561 | 2010-11-05 09:56:33 +0100 | [diff] [blame] | 861 | verify_done = (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T); |
| 862 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 863 | /* This protects us against multiple calls (that can happen in the presence |
| 864 | of application IO), and against connectivity loss just before we arrive here. */ |
| 865 | if (os.conn <= C_CONNECTED) |
| 866 | goto out_unlock; |
| 867 | |
| 868 | ns = os; |
| 869 | ns.conn = C_CONNECTED; |
| 870 | |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 871 | drbd_info(device, "%s done (total %lu sec; paused %lu sec; %lu K/sec)\n", |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 872 | verify_done ? "Online verify" : "Resync", |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 873 | dt + device->rs_paused, device->rs_paused, dbdt); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 874 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 875 | n_oos = drbd_bm_total_weight(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 876 | |
| 877 | if (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T) { |
| 878 | if (n_oos) { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 879 | drbd_alert(device, "Online verify found %lu %dk block out of sync!\n", |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 880 | n_oos, Bit2KB(1)); |
| 881 | khelper_cmd = "out-of-sync"; |
| 882 | } |
| 883 | } else { |
Andreas Gruenbacher | 0b0ba1e | 2011-06-27 16:23:33 +0200 | [diff] [blame] | 884 | D_ASSERT(device, (n_oos - device->rs_failed) == 0); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 885 | |
| 886 | if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) |
| 887 | khelper_cmd = "after-resync-target"; |
| 888 | |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 889 | if (first_peer_device(device)->connection->csums_tfm && device->rs_total) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 890 | const unsigned long s = device->rs_same_csum; |
| 891 | const unsigned long t = device->rs_total; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 892 | const int ratio = |
| 893 | (t == 0) ? 0 : |
| 894 | (t < 100000) ? ((s*100)/t) : (s/(t/100)); |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 895 | drbd_info(device, "%u %% had equal checksums, eliminated: %luK; " |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 896 | "transferred %luK total %luK\n", |
| 897 | ratio, |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 898 | Bit2KB(device->rs_same_csum), |
| 899 | Bit2KB(device->rs_total - device->rs_same_csum), |
| 900 | Bit2KB(device->rs_total)); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 901 | } |
| 902 | } |
| 903 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 904 | if (device->rs_failed) { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 905 | drbd_info(device, " %lu failed blocks\n", device->rs_failed); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 906 | |
| 907 | if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) { |
| 908 | ns.disk = D_INCONSISTENT; |
| 909 | ns.pdsk = D_UP_TO_DATE; |
| 910 | } else { |
| 911 | ns.disk = D_UP_TO_DATE; |
| 912 | ns.pdsk = D_INCONSISTENT; |
| 913 | } |
| 914 | } else { |
| 915 | ns.disk = D_UP_TO_DATE; |
| 916 | ns.pdsk = D_UP_TO_DATE; |
| 917 | |
| 918 | if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 919 | if (device->p_uuid) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 920 | int i; |
| 921 | for (i = UI_BITMAP ; i <= UI_HISTORY_END ; i++) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 922 | _drbd_uuid_set(device, i, device->p_uuid[i]); |
| 923 | drbd_uuid_set(device, UI_BITMAP, device->ldev->md.uuid[UI_CURRENT]); |
| 924 | _drbd_uuid_set(device, UI_CURRENT, device->p_uuid[UI_CURRENT]); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 925 | } else { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 926 | drbd_err(device, "device->p_uuid is NULL! BUG\n"); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 927 | } |
| 928 | } |
| 929 | |
Lars Ellenberg | 62b0da3 | 2011-01-20 13:25:21 +0100 | [diff] [blame] | 930 | if (!(os.conn == C_VERIFY_S || os.conn == C_VERIFY_T)) { |
| 931 | /* for verify runs, we don't update uuids here, |
| 932 | * so there would be nothing to report. */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 933 | drbd_uuid_set_bm(device, 0UL); |
| 934 | drbd_print_uuids(device, "updated UUIDs"); |
| 935 | if (device->p_uuid) { |
Lars Ellenberg | 62b0da3 | 2011-01-20 13:25:21 +0100 | [diff] [blame] | 936 | /* Now the two UUID sets are equal, update what we |
| 937 | * know of the peer. */ |
| 938 | int i; |
| 939 | for (i = UI_CURRENT ; i <= UI_HISTORY_END ; i++) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 940 | device->p_uuid[i] = device->ldev->md.uuid[i]; |
Lars Ellenberg | 62b0da3 | 2011-01-20 13:25:21 +0100 | [diff] [blame] | 941 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 942 | } |
| 943 | } |
| 944 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 945 | _drbd_set_state(device, ns, CS_VERBOSE, NULL); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 946 | out_unlock: |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 947 | spin_unlock_irq(&device->resource->req_lock); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 948 | put_ldev(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 949 | out: |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 950 | device->rs_total = 0; |
| 951 | device->rs_failed = 0; |
| 952 | device->rs_paused = 0; |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 953 | |
| 954 | /* reset start sector, if we reached end of device */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 955 | if (verify_done && device->ov_left == 0) |
| 956 | device->ov_start_sector = 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 957 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 958 | drbd_md_sync(device); |
Lars Ellenberg | 13d4268 | 2010-10-13 17:37:54 +0200 | [diff] [blame] | 959 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 960 | if (khelper_cmd) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 961 | drbd_khelper(device, khelper_cmd); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 962 | |
| 963 | return 1; |
| 964 | } |
| 965 | |
| 966 | /* helper */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 967 | static void move_to_net_ee_or_free(struct drbd_device *device, struct drbd_peer_request *peer_req) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 968 | { |
Andreas Gruenbacher | 045417f | 2011-04-07 21:34:24 +0200 | [diff] [blame] | 969 | if (drbd_peer_req_has_active_page(peer_req)) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 970 | /* This might happen if sendpage() has not finished */ |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 971 | int i = (peer_req->i.size + PAGE_SIZE -1) >> PAGE_SHIFT; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 972 | atomic_add(i, &device->pp_in_use_by_net); |
| 973 | atomic_sub(i, &device->pp_in_use); |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 974 | spin_lock_irq(&device->resource->req_lock); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 975 | list_add_tail(&peer_req->w.list, &device->net_ee); |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 976 | spin_unlock_irq(&device->resource->req_lock); |
Lars Ellenberg | 435f074 | 2010-09-06 12:30:25 +0200 | [diff] [blame] | 977 | wake_up(&drbd_pp_wait); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 978 | } else |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 979 | drbd_free_peer_req(device, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | /** |
| 983 | * w_e_end_data_req() - Worker callback, to send a P_DATA_REPLY packet in response to a P_DATA_REQUEST |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 984 | * @device: DRBD device. |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 985 | * @w: work object. |
| 986 | * @cancel: The connection will be closed anyways |
| 987 | */ |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 988 | int w_e_end_data_req(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 989 | { |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 990 | struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 991 | struct drbd_device *device = w->device; |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 992 | int err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 993 | |
| 994 | if (unlikely(cancel)) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 995 | drbd_free_peer_req(device, peer_req); |
| 996 | dec_unacked(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 997 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 998 | } |
| 999 | |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1000 | if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) { |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1001 | err = drbd_send_block(first_peer_device(device), P_DATA_REPLY, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1002 | } else { |
| 1003 | if (__ratelimit(&drbd_ratelimit_state)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1004 | drbd_err(device, "Sending NegDReply. sector=%llus.\n", |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1005 | (unsigned long long)peer_req->i.sector); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1006 | |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1007 | err = drbd_send_ack(first_peer_device(device), P_NEG_DREPLY, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1008 | } |
| 1009 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1010 | dec_unacked(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1011 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1012 | move_to_net_ee_or_free(device, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1013 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1014 | if (unlikely(err)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1015 | drbd_err(device, "drbd_send_block() failed\n"); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1016 | return err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1017 | } |
| 1018 | |
| 1019 | /** |
Andreas Gruenbacher | a209b4a | 2011-08-17 12:43:25 +0200 | [diff] [blame] | 1020 | * w_e_end_rsdata_req() - Worker callback to send a P_RS_DATA_REPLY packet in response to a P_RS_DATA_REQUEST |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1021 | * @device: DRBD device. |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1022 | * @w: work object. |
| 1023 | * @cancel: The connection will be closed anyways |
| 1024 | */ |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1025 | int w_e_end_rsdata_req(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1026 | { |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1027 | struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1028 | struct drbd_device *device = w->device; |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1029 | int err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1030 | |
| 1031 | if (unlikely(cancel)) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1032 | drbd_free_peer_req(device, peer_req); |
| 1033 | dec_unacked(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1034 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1035 | } |
| 1036 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1037 | if (get_ldev_if_state(device, D_FAILED)) { |
| 1038 | drbd_rs_complete_io(device, peer_req->i.sector); |
| 1039 | put_ldev(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1040 | } |
| 1041 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1042 | if (device->state.conn == C_AHEAD) { |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1043 | err = drbd_send_ack(first_peer_device(device), P_RS_CANCEL, peer_req); |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1044 | } else if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1045 | if (likely(device->state.pdsk >= D_INCONSISTENT)) { |
| 1046 | inc_rs_pending(device); |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1047 | err = drbd_send_block(first_peer_device(device), P_RS_DATA_REPLY, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1048 | } else { |
| 1049 | if (__ratelimit(&drbd_ratelimit_state)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1050 | drbd_err(device, "Not sending RSDataReply, " |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1051 | "partner DISKLESS!\n"); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1052 | err = 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1053 | } |
| 1054 | } else { |
| 1055 | if (__ratelimit(&drbd_ratelimit_state)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1056 | drbd_err(device, "Sending NegRSDReply. sector %llus.\n", |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1057 | (unsigned long long)peer_req->i.sector); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1058 | |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1059 | err = drbd_send_ack(first_peer_device(device), P_NEG_RS_DREPLY, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1060 | |
| 1061 | /* update resync data with failure */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1062 | drbd_rs_failed_io(device, peer_req->i.sector, peer_req->i.size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1063 | } |
| 1064 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1065 | dec_unacked(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1066 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1067 | move_to_net_ee_or_free(device, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1068 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1069 | if (unlikely(err)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1070 | drbd_err(device, "drbd_send_block() failed\n"); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1071 | return err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1072 | } |
| 1073 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1074 | int w_e_end_csum_rs_req(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1075 | { |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1076 | struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1077 | struct drbd_device *device = w->device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1078 | struct digest_info *di; |
| 1079 | int digest_size; |
| 1080 | void *digest = NULL; |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1081 | int err, eq = 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1082 | |
| 1083 | if (unlikely(cancel)) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1084 | drbd_free_peer_req(device, peer_req); |
| 1085 | dec_unacked(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1086 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1087 | } |
| 1088 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1089 | if (get_ldev(device)) { |
| 1090 | drbd_rs_complete_io(device, peer_req->i.sector); |
| 1091 | put_ldev(device); |
Lars Ellenberg | 1d53f09 | 2010-09-05 01:13:24 +0200 | [diff] [blame] | 1092 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1093 | |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1094 | di = peer_req->digest; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1095 | |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1096 | if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1097 | /* quick hack to try to avoid a race against reconfiguration. |
| 1098 | * a real fix would be much more involved, |
| 1099 | * introducing more locking mechanisms */ |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1100 | if (first_peer_device(device)->connection->csums_tfm) { |
| 1101 | digest_size = crypto_hash_digestsize(first_peer_device(device)->connection->csums_tfm); |
Andreas Gruenbacher | 0b0ba1e | 2011-06-27 16:23:33 +0200 | [diff] [blame] | 1102 | D_ASSERT(device, digest_size == di->digest_size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1103 | digest = kmalloc(digest_size, GFP_NOIO); |
| 1104 | } |
| 1105 | if (digest) { |
Andreas Gruenbacher | 79a3c8d | 2011-08-09 02:49:01 +0200 | [diff] [blame] | 1106 | drbd_csum_ee(first_peer_device(device)->connection->csums_tfm, peer_req, digest); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1107 | eq = !memcmp(digest, di->digest, digest_size); |
| 1108 | kfree(digest); |
| 1109 | } |
| 1110 | |
| 1111 | if (eq) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1112 | drbd_set_in_sync(device, peer_req->i.sector, peer_req->i.size); |
Lars Ellenberg | 676396d | 2010-03-03 02:08:22 +0100 | [diff] [blame] | 1113 | /* rs_same_csums unit is BM_BLOCK_SIZE */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1114 | device->rs_same_csum += peer_req->i.size >> BM_BLOCK_SHIFT; |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1115 | err = drbd_send_ack(first_peer_device(device), P_RS_IS_IN_SYNC, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1116 | } else { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1117 | inc_rs_pending(device); |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1118 | peer_req->block_id = ID_SYNCER; /* By setting block_id, digest pointer becomes invalid! */ |
| 1119 | peer_req->flags &= ~EE_HAS_DIGEST; /* This peer request no longer has a digest pointer */ |
Philipp Reisner | 204bba9 | 2010-08-23 16:17:13 +0200 | [diff] [blame] | 1120 | kfree(di); |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1121 | err = drbd_send_block(first_peer_device(device), P_RS_DATA_REPLY, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1122 | } |
| 1123 | } else { |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1124 | err = drbd_send_ack(first_peer_device(device), P_NEG_RS_DREPLY, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1125 | if (__ratelimit(&drbd_ratelimit_state)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1126 | drbd_err(device, "Sending NegDReply. I guess it gets messy.\n"); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1127 | } |
| 1128 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1129 | dec_unacked(device); |
| 1130 | move_to_net_ee_or_free(device, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1131 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1132 | if (unlikely(err)) |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1133 | drbd_err(device, "drbd_send_block/ack() failed\n"); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1134 | return err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1135 | } |
| 1136 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1137 | int w_e_end_ov_req(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1138 | { |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1139 | struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1140 | struct drbd_device *device = w->device; |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1141 | sector_t sector = peer_req->i.sector; |
| 1142 | unsigned int size = peer_req->i.size; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1143 | int digest_size; |
| 1144 | void *digest; |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1145 | int err = 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1146 | |
| 1147 | if (unlikely(cancel)) |
| 1148 | goto out; |
| 1149 | |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1150 | digest_size = crypto_hash_digestsize(first_peer_device(device)->connection->verify_tfm); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1151 | digest = kmalloc(digest_size, GFP_NOIO); |
Philipp Reisner | 8f21420 | 2011-03-01 15:52:35 +0100 | [diff] [blame] | 1152 | if (!digest) { |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1153 | err = 1; /* terminate the connection in case the allocation failed */ |
Philipp Reisner | 8f21420 | 2011-03-01 15:52:35 +0100 | [diff] [blame] | 1154 | goto out; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1155 | } |
| 1156 | |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1157 | if (likely(!(peer_req->flags & EE_WAS_ERROR))) |
Andreas Gruenbacher | 79a3c8d | 2011-08-09 02:49:01 +0200 | [diff] [blame] | 1158 | drbd_csum_ee(first_peer_device(device)->connection->verify_tfm, peer_req, digest); |
Philipp Reisner | 8f21420 | 2011-03-01 15:52:35 +0100 | [diff] [blame] | 1159 | else |
| 1160 | memset(digest, 0, digest_size); |
| 1161 | |
Lars Ellenberg | 53ea433 | 2011-03-08 17:11:40 +0100 | [diff] [blame] | 1162 | /* Free e and pages before send. |
| 1163 | * In case we block on congestion, we could otherwise run into |
| 1164 | * some distributed deadlock, if the other side blocks on |
| 1165 | * congestion as well, because our receiver blocks in |
Andreas Gruenbacher | c37c8ec | 2011-04-07 21:02:09 +0200 | [diff] [blame] | 1166 | * drbd_alloc_pages due to pp_in_use > max_buffers. */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1167 | drbd_free_peer_req(device, peer_req); |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1168 | peer_req = NULL; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1169 | inc_rs_pending(device); |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1170 | err = drbd_send_drequest_csum(first_peer_device(device), sector, size, digest, digest_size, P_OV_REPLY); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1171 | if (err) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1172 | dec_rs_pending(device); |
Philipp Reisner | 8f21420 | 2011-03-01 15:52:35 +0100 | [diff] [blame] | 1173 | kfree(digest); |
| 1174 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1175 | out: |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1176 | if (peer_req) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1177 | drbd_free_peer_req(device, peer_req); |
| 1178 | dec_unacked(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1179 | return err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1180 | } |
| 1181 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1182 | void drbd_ov_out_of_sync_found(struct drbd_device *device, sector_t sector, int size) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1183 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1184 | if (device->ov_last_oos_start + device->ov_last_oos_size == sector) { |
| 1185 | device->ov_last_oos_size += size>>9; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1186 | } else { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1187 | device->ov_last_oos_start = sector; |
| 1188 | device->ov_last_oos_size = size>>9; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1189 | } |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1190 | drbd_set_out_of_sync(device, sector, size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1191 | } |
| 1192 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1193 | int w_e_end_ov_reply(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1194 | { |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1195 | struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1196 | struct drbd_device *device = w->device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1197 | struct digest_info *di; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1198 | void *digest; |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1199 | sector_t sector = peer_req->i.sector; |
| 1200 | unsigned int size = peer_req->i.size; |
Lars Ellenberg | 53ea433 | 2011-03-08 17:11:40 +0100 | [diff] [blame] | 1201 | int digest_size; |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1202 | int err, eq = 0; |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 1203 | bool stop_sector_reached = false; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1204 | |
| 1205 | if (unlikely(cancel)) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1206 | drbd_free_peer_req(device, peer_req); |
| 1207 | dec_unacked(device); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1208 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1209 | } |
| 1210 | |
| 1211 | /* after "cancel", because after drbd_disconnect/drbd_rs_cancel_all |
| 1212 | * the resync lru has been cleaned up already */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1213 | if (get_ldev(device)) { |
| 1214 | drbd_rs_complete_io(device, peer_req->i.sector); |
| 1215 | put_ldev(device); |
Lars Ellenberg | 1d53f09 | 2010-09-05 01:13:24 +0200 | [diff] [blame] | 1216 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1217 | |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1218 | di = peer_req->digest; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1219 | |
Andreas Gruenbacher | db830c4 | 2011-02-04 15:57:48 +0100 | [diff] [blame] | 1220 | if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) { |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1221 | digest_size = crypto_hash_digestsize(first_peer_device(device)->connection->verify_tfm); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1222 | digest = kmalloc(digest_size, GFP_NOIO); |
| 1223 | if (digest) { |
Andreas Gruenbacher | 79a3c8d | 2011-08-09 02:49:01 +0200 | [diff] [blame] | 1224 | drbd_csum_ee(first_peer_device(device)->connection->verify_tfm, peer_req, digest); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1225 | |
Andreas Gruenbacher | 0b0ba1e | 2011-06-27 16:23:33 +0200 | [diff] [blame] | 1226 | D_ASSERT(device, digest_size == di->digest_size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1227 | eq = !memcmp(digest, di->digest, digest_size); |
| 1228 | kfree(digest); |
| 1229 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1230 | } |
| 1231 | |
Lars Ellenberg | 9676c76 | 2011-02-22 14:02:31 +0100 | [diff] [blame] | 1232 | /* Free peer_req and pages before send. |
| 1233 | * In case we block on congestion, we could otherwise run into |
| 1234 | * some distributed deadlock, if the other side blocks on |
| 1235 | * congestion as well, because our receiver blocks in |
Andreas Gruenbacher | c37c8ec | 2011-04-07 21:02:09 +0200 | [diff] [blame] | 1236 | * drbd_alloc_pages due to pp_in_use > max_buffers. */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1237 | drbd_free_peer_req(device, peer_req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1238 | if (!eq) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1239 | drbd_ov_out_of_sync_found(device, sector, size); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1240 | else |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1241 | ov_out_of_sync_print(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1242 | |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1243 | err = drbd_send_ack_ex(first_peer_device(device), P_OV_RESULT, sector, size, |
Andreas Gruenbacher | fa79abd | 2011-03-16 01:31:39 +0100 | [diff] [blame] | 1244 | eq ? ID_IN_SYNC : ID_OUT_OF_SYNC); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1245 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1246 | dec_unacked(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1247 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1248 | --device->ov_left; |
Lars Ellenberg | ea5442a | 2010-11-05 09:48:01 +0100 | [diff] [blame] | 1249 | |
| 1250 | /* let's advance progress step marks only for every other megabyte */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1251 | if ((device->ov_left & 0x200) == 0x200) |
| 1252 | drbd_advance_rs_marks(device, device->ov_left); |
Lars Ellenberg | ea5442a | 2010-11-05 09:48:01 +0100 | [diff] [blame] | 1253 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1254 | stop_sector_reached = verify_can_do_stop_sector(device) && |
| 1255 | (sector + (size>>9)) >= device->ov_stop_sector; |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 1256 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1257 | if (device->ov_left == 0 || stop_sector_reached) { |
| 1258 | ov_out_of_sync_print(device); |
| 1259 | drbd_resync_finished(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1260 | } |
| 1261 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1262 | return err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1263 | } |
| 1264 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1265 | int w_prev_work_done(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1266 | { |
| 1267 | struct drbd_wq_barrier *b = container_of(w, struct drbd_wq_barrier, w); |
Philipp Reisner | 00d5694 | 2011-02-09 18:09:48 +0100 | [diff] [blame] | 1268 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1269 | complete(&b->done); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1270 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1271 | } |
| 1272 | |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1273 | /* FIXME |
| 1274 | * We need to track the number of pending barrier acks, |
| 1275 | * and to be able to wait for them. |
| 1276 | * See also comment in drbd_adm_attach before drbd_suspend_io. |
| 1277 | */ |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1278 | static int drbd_send_barrier(struct drbd_connection *connection) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1279 | { |
Andreas Gruenbacher | 9f5bdc3 | 2011-03-28 14:23:08 +0200 | [diff] [blame] | 1280 | struct p_barrier *p; |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1281 | struct drbd_socket *sock; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1282 | |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1283 | sock = &connection->data; |
| 1284 | p = conn_prepare_command(connection, sock); |
Andreas Gruenbacher | 9f5bdc3 | 2011-03-28 14:23:08 +0200 | [diff] [blame] | 1285 | if (!p) |
| 1286 | return -EIO; |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1287 | p->barrier = connection->send.current_epoch_nr; |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1288 | p->pad = 0; |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1289 | connection->send.current_epoch_writes = 0; |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1290 | |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1291 | return conn_send_command(connection, sock, P_BARRIER, sizeof(*p), NULL, 0); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1292 | } |
| 1293 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1294 | int w_send_write_hint(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1295 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1296 | struct drbd_device *device = w->device; |
Andreas Gruenbacher | 9f5bdc3 | 2011-03-28 14:23:08 +0200 | [diff] [blame] | 1297 | struct drbd_socket *sock; |
| 1298 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1299 | if (cancel) |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1300 | return 0; |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1301 | sock = &first_peer_device(device)->connection->data; |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1302 | if (!drbd_prepare_command(first_peer_device(device), sock)) |
Andreas Gruenbacher | 9f5bdc3 | 2011-03-28 14:23:08 +0200 | [diff] [blame] | 1303 | return -EIO; |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1304 | return drbd_send_command(first_peer_device(device), sock, P_UNPLUG_REMOTE, 0, NULL, 0); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1305 | } |
| 1306 | |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1307 | static void re_init_if_first_write(struct drbd_connection *connection, unsigned int epoch) |
Lars Ellenberg | 4eb9b3c | 2012-08-20 11:05:23 +0200 | [diff] [blame] | 1308 | { |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1309 | if (!connection->send.seen_any_write_yet) { |
| 1310 | connection->send.seen_any_write_yet = true; |
| 1311 | connection->send.current_epoch_nr = epoch; |
| 1312 | connection->send.current_epoch_writes = 0; |
Lars Ellenberg | 4eb9b3c | 2012-08-20 11:05:23 +0200 | [diff] [blame] | 1313 | } |
| 1314 | } |
| 1315 | |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1316 | static void maybe_send_barrier(struct drbd_connection *connection, unsigned int epoch) |
Lars Ellenberg | 4eb9b3c | 2012-08-20 11:05:23 +0200 | [diff] [blame] | 1317 | { |
| 1318 | /* re-init if first write on this connection */ |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1319 | if (!connection->send.seen_any_write_yet) |
Lars Ellenberg | 4eb9b3c | 2012-08-20 11:05:23 +0200 | [diff] [blame] | 1320 | return; |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1321 | if (connection->send.current_epoch_nr != epoch) { |
| 1322 | if (connection->send.current_epoch_writes) |
| 1323 | drbd_send_barrier(connection); |
| 1324 | connection->send.current_epoch_nr = epoch; |
Lars Ellenberg | 4eb9b3c | 2012-08-20 11:05:23 +0200 | [diff] [blame] | 1325 | } |
| 1326 | } |
| 1327 | |
Andreas Gruenbacher | 8f7bed7 | 2010-12-19 23:53:14 +0100 | [diff] [blame] | 1328 | int w_send_out_of_sync(struct drbd_work *w, int cancel) |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 1329 | { |
| 1330 | struct drbd_request *req = container_of(w, struct drbd_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1331 | struct drbd_device *device = w->device; |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1332 | struct drbd_connection *connection = first_peer_device(device)->connection; |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1333 | int err; |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 1334 | |
| 1335 | if (unlikely(cancel)) { |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 1336 | req_mod(req, SEND_CANCELED); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1337 | return 0; |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 1338 | } |
| 1339 | |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1340 | /* this time, no connection->send.current_epoch_writes++; |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1341 | * If it was sent, it was the closing barrier for the last |
| 1342 | * replicated epoch, before we went into AHEAD mode. |
| 1343 | * No more barriers will be sent, until we leave AHEAD mode again. */ |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1344 | maybe_send_barrier(connection, req->epoch); |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1345 | |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1346 | err = drbd_send_out_of_sync(first_peer_device(device), req); |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 1347 | req_mod(req, OOS_HANDED_TO_NETWORK); |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 1348 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1349 | return err; |
Philipp Reisner | 73a01a1 | 2010-10-27 14:33:00 +0200 | [diff] [blame] | 1350 | } |
| 1351 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1352 | /** |
| 1353 | * w_send_dblock() - Worker callback to send a P_DATA packet in order to mirror a write request |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1354 | * @device: DRBD device. |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1355 | * @w: work object. |
| 1356 | * @cancel: The connection will be closed anyways |
| 1357 | */ |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1358 | int w_send_dblock(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1359 | { |
| 1360 | struct drbd_request *req = container_of(w, struct drbd_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1361 | struct drbd_device *device = w->device; |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1362 | struct drbd_connection *connection = first_peer_device(device)->connection; |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1363 | int err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1364 | |
| 1365 | if (unlikely(cancel)) { |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 1366 | req_mod(req, SEND_CANCELED); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1367 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1368 | } |
| 1369 | |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1370 | re_init_if_first_write(connection, req->epoch); |
| 1371 | maybe_send_barrier(connection, req->epoch); |
| 1372 | connection->send.current_epoch_writes++; |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1373 | |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1374 | err = drbd_send_dblock(first_peer_device(device), req); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1375 | req_mod(req, err ? SEND_FAILED : HANDED_OVER_TO_NETWORK); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1376 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1377 | return err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1378 | } |
| 1379 | |
| 1380 | /** |
| 1381 | * w_send_read_req() - Worker callback to send a read request (P_DATA_REQUEST) packet |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1382 | * @device: DRBD device. |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1383 | * @w: work object. |
| 1384 | * @cancel: The connection will be closed anyways |
| 1385 | */ |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1386 | int w_send_read_req(struct drbd_work *w, int cancel) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1387 | { |
| 1388 | struct drbd_request *req = container_of(w, struct drbd_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1389 | struct drbd_device *device = w->device; |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1390 | struct drbd_connection *connection = first_peer_device(device)->connection; |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1391 | int err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1392 | |
| 1393 | if (unlikely(cancel)) { |
Andreas Gruenbacher | 8554df1 | 2011-01-25 15:37:43 +0100 | [diff] [blame] | 1394 | req_mod(req, SEND_CANCELED); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1395 | return 0; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1396 | } |
| 1397 | |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1398 | /* Even read requests may close a write epoch, |
| 1399 | * if there was any yet. */ |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1400 | maybe_send_barrier(connection, req->epoch); |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1401 | |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1402 | err = drbd_send_drequest(first_peer_device(device), P_DATA_REQUEST, req->i.sector, req->i.size, |
Andreas Gruenbacher | 6c1005e | 2011-03-16 01:34:24 +0100 | [diff] [blame] | 1403 | (unsigned long)req); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1404 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1405 | req_mod(req, err ? SEND_FAILED : HANDED_OVER_TO_NETWORK); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1406 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1407 | return err; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1408 | } |
| 1409 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1410 | int w_restart_disk_io(struct drbd_work *w, int cancel) |
Philipp Reisner | 265be2d | 2010-05-31 10:14:17 +0200 | [diff] [blame] | 1411 | { |
| 1412 | struct drbd_request *req = container_of(w, struct drbd_request, w); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1413 | struct drbd_device *device = w->device; |
Philipp Reisner | 265be2d | 2010-05-31 10:14:17 +0200 | [diff] [blame] | 1414 | |
Philipp Reisner | 0778286 | 2010-08-31 12:00:50 +0200 | [diff] [blame] | 1415 | if (bio_data_dir(req->master_bio) == WRITE && req->rq_state & RQ_IN_ACT_LOG) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1416 | drbd_al_begin_io(device, &req->i, false); |
Philipp Reisner | 265be2d | 2010-05-31 10:14:17 +0200 | [diff] [blame] | 1417 | |
| 1418 | drbd_req_make_private_bio(req, req->master_bio); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1419 | req->private_bio->bi_bdev = device->ldev->backing_bdev; |
Philipp Reisner | 265be2d | 2010-05-31 10:14:17 +0200 | [diff] [blame] | 1420 | generic_make_request(req->private_bio); |
| 1421 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1422 | return 0; |
Philipp Reisner | 265be2d | 2010-05-31 10:14:17 +0200 | [diff] [blame] | 1423 | } |
| 1424 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1425 | static int _drbd_may_sync_now(struct drbd_device *device) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1426 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1427 | struct drbd_device *odev = device; |
Andreas Gruenbacher | 95f8efd | 2011-05-12 11:15:34 +0200 | [diff] [blame] | 1428 | int resync_after; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1429 | |
| 1430 | while (1) { |
Lars Ellenberg | a3f8f7d | 2013-03-27 14:08:43 +0100 | [diff] [blame] | 1431 | if (!odev->ldev || odev->state.disk == D_DISKLESS) |
Philipp Reisner | 438c837 | 2011-03-28 14:48:01 +0200 | [diff] [blame] | 1432 | return 1; |
Philipp Reisner | daeda1c | 2011-05-03 15:00:55 +0200 | [diff] [blame] | 1433 | rcu_read_lock(); |
Andreas Gruenbacher | 95f8efd | 2011-05-12 11:15:34 +0200 | [diff] [blame] | 1434 | resync_after = rcu_dereference(odev->ldev->disk_conf)->resync_after; |
Philipp Reisner | daeda1c | 2011-05-03 15:00:55 +0200 | [diff] [blame] | 1435 | rcu_read_unlock(); |
Andreas Gruenbacher | 95f8efd | 2011-05-12 11:15:34 +0200 | [diff] [blame] | 1436 | if (resync_after == -1) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1437 | return 1; |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1438 | odev = minor_to_device(resync_after); |
Lars Ellenberg | a3f8f7d | 2013-03-27 14:08:43 +0100 | [diff] [blame] | 1439 | if (!odev) |
Andreas Gruenbacher | 841ce24 | 2010-12-15 19:31:20 +0100 | [diff] [blame] | 1440 | return 1; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1441 | if ((odev->state.conn >= C_SYNC_SOURCE && |
| 1442 | odev->state.conn <= C_PAUSED_SYNC_T) || |
| 1443 | odev->state.aftr_isp || odev->state.peer_isp || |
| 1444 | odev->state.user_isp) |
| 1445 | return 0; |
| 1446 | } |
| 1447 | } |
| 1448 | |
| 1449 | /** |
| 1450 | * _drbd_pause_after() - Pause resync on all devices that may not resync now |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1451 | * @device: DRBD device. |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1452 | * |
| 1453 | * Called from process context only (admin command and after_state_ch). |
| 1454 | */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1455 | static int _drbd_pause_after(struct drbd_device *device) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1456 | { |
Andreas Gruenbacher | 5476169 | 2011-05-30 16:15:21 +0200 | [diff] [blame] | 1457 | struct drbd_device *odev; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1458 | int i, rv = 0; |
| 1459 | |
Philipp Reisner | 695d08f | 2011-04-11 22:53:32 -0700 | [diff] [blame] | 1460 | rcu_read_lock(); |
Andreas Gruenbacher | 05a10ec | 2011-06-07 22:54:17 +0200 | [diff] [blame] | 1461 | idr_for_each_entry(&drbd_devices, odev, i) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1462 | if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS) |
| 1463 | continue; |
| 1464 | if (!_drbd_may_sync_now(odev)) |
| 1465 | rv |= (__drbd_set_state(_NS(odev, aftr_isp, 1), CS_HARD, NULL) |
| 1466 | != SS_NOTHING_TO_DO); |
| 1467 | } |
Philipp Reisner | 695d08f | 2011-04-11 22:53:32 -0700 | [diff] [blame] | 1468 | rcu_read_unlock(); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1469 | |
| 1470 | return rv; |
| 1471 | } |
| 1472 | |
| 1473 | /** |
| 1474 | * _drbd_resume_next() - Resume resync on all devices that may resync now |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1475 | * @device: DRBD device. |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1476 | * |
| 1477 | * Called from process context only (admin command and worker). |
| 1478 | */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1479 | static int _drbd_resume_next(struct drbd_device *device) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1480 | { |
Andreas Gruenbacher | 5476169 | 2011-05-30 16:15:21 +0200 | [diff] [blame] | 1481 | struct drbd_device *odev; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1482 | int i, rv = 0; |
| 1483 | |
Philipp Reisner | 695d08f | 2011-04-11 22:53:32 -0700 | [diff] [blame] | 1484 | rcu_read_lock(); |
Andreas Gruenbacher | 05a10ec | 2011-06-07 22:54:17 +0200 | [diff] [blame] | 1485 | idr_for_each_entry(&drbd_devices, odev, i) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1486 | if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS) |
| 1487 | continue; |
| 1488 | if (odev->state.aftr_isp) { |
| 1489 | if (_drbd_may_sync_now(odev)) |
| 1490 | rv |= (__drbd_set_state(_NS(odev, aftr_isp, 0), |
| 1491 | CS_HARD, NULL) |
| 1492 | != SS_NOTHING_TO_DO) ; |
| 1493 | } |
| 1494 | } |
Philipp Reisner | 695d08f | 2011-04-11 22:53:32 -0700 | [diff] [blame] | 1495 | rcu_read_unlock(); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1496 | return rv; |
| 1497 | } |
| 1498 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1499 | void resume_next_sg(struct drbd_device *device) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1500 | { |
| 1501 | write_lock_irq(&global_state_lock); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1502 | _drbd_resume_next(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1503 | write_unlock_irq(&global_state_lock); |
| 1504 | } |
| 1505 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1506 | void suspend_other_sg(struct drbd_device *device) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1507 | { |
| 1508 | write_lock_irq(&global_state_lock); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1509 | _drbd_pause_after(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1510 | write_unlock_irq(&global_state_lock); |
| 1511 | } |
| 1512 | |
Philipp Reisner | dc97b70 | 2011-05-03 14:27:15 +0200 | [diff] [blame] | 1513 | /* caller must hold global_state_lock */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1514 | enum drbd_ret_code drbd_resync_after_valid(struct drbd_device *device, int o_minor) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1515 | { |
Andreas Gruenbacher | 5476169 | 2011-05-30 16:15:21 +0200 | [diff] [blame] | 1516 | struct drbd_device *odev; |
Andreas Gruenbacher | 95f8efd | 2011-05-12 11:15:34 +0200 | [diff] [blame] | 1517 | int resync_after; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1518 | |
| 1519 | if (o_minor == -1) |
| 1520 | return NO_ERROR; |
Lars Ellenberg | a3f8f7d | 2013-03-27 14:08:43 +0100 | [diff] [blame] | 1521 | if (o_minor < -1 || o_minor > MINORMASK) |
Andreas Gruenbacher | 95f8efd | 2011-05-12 11:15:34 +0200 | [diff] [blame] | 1522 | return ERR_RESYNC_AFTER; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1523 | |
| 1524 | /* check for loops */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1525 | odev = minor_to_device(o_minor); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1526 | while (1) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1527 | if (odev == device) |
Andreas Gruenbacher | 95f8efd | 2011-05-12 11:15:34 +0200 | [diff] [blame] | 1528 | return ERR_RESYNC_AFTER_CYCLE; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1529 | |
Lars Ellenberg | a3f8f7d | 2013-03-27 14:08:43 +0100 | [diff] [blame] | 1530 | /* You are free to depend on diskless, non-existing, |
| 1531 | * or not yet/no longer existing minors. |
| 1532 | * We only reject dependency loops. |
| 1533 | * We cannot follow the dependency chain beyond a detached or |
| 1534 | * missing minor. |
| 1535 | */ |
| 1536 | if (!odev || !odev->ldev || odev->state.disk == D_DISKLESS) |
| 1537 | return NO_ERROR; |
| 1538 | |
Philipp Reisner | daeda1c | 2011-05-03 15:00:55 +0200 | [diff] [blame] | 1539 | rcu_read_lock(); |
Andreas Gruenbacher | 95f8efd | 2011-05-12 11:15:34 +0200 | [diff] [blame] | 1540 | resync_after = rcu_dereference(odev->ldev->disk_conf)->resync_after; |
Philipp Reisner | daeda1c | 2011-05-03 15:00:55 +0200 | [diff] [blame] | 1541 | rcu_read_unlock(); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1542 | /* dependency chain ends here, no cycles. */ |
Andreas Gruenbacher | 95f8efd | 2011-05-12 11:15:34 +0200 | [diff] [blame] | 1543 | if (resync_after == -1) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1544 | return NO_ERROR; |
| 1545 | |
| 1546 | /* follow the dependency chain */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1547 | odev = minor_to_device(resync_after); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1548 | } |
| 1549 | } |
| 1550 | |
Philipp Reisner | dc97b70 | 2011-05-03 14:27:15 +0200 | [diff] [blame] | 1551 | /* caller must hold global_state_lock */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1552 | void drbd_resync_after_changed(struct drbd_device *device) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1553 | { |
| 1554 | int changes; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1555 | |
Philipp Reisner | dc97b70 | 2011-05-03 14:27:15 +0200 | [diff] [blame] | 1556 | do { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1557 | changes = _drbd_pause_after(device); |
| 1558 | changes |= _drbd_resume_next(device); |
Philipp Reisner | dc97b70 | 2011-05-03 14:27:15 +0200 | [diff] [blame] | 1559 | } while (changes); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1560 | } |
| 1561 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1562 | void drbd_rs_controller_reset(struct drbd_device *device) |
Lars Ellenberg | 9bd28d3 | 2010-11-05 09:55:18 +0100 | [diff] [blame] | 1563 | { |
Philipp Reisner | 813472c | 2011-05-03 16:47:02 +0200 | [diff] [blame] | 1564 | struct fifo_buffer *plan; |
| 1565 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1566 | atomic_set(&device->rs_sect_in, 0); |
| 1567 | atomic_set(&device->rs_sect_ev, 0); |
| 1568 | device->rs_in_flight = 0; |
Philipp Reisner | 813472c | 2011-05-03 16:47:02 +0200 | [diff] [blame] | 1569 | |
| 1570 | /* Updating the RCU protected object in place is necessary since |
| 1571 | this function gets called from atomic context. |
| 1572 | It is valid since all other updates also lead to an completely |
| 1573 | empty fifo */ |
| 1574 | rcu_read_lock(); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1575 | plan = rcu_dereference(device->rs_plan_s); |
Philipp Reisner | 813472c | 2011-05-03 16:47:02 +0200 | [diff] [blame] | 1576 | plan->total = 0; |
| 1577 | fifo_set(plan, 0); |
| 1578 | rcu_read_unlock(); |
Lars Ellenberg | 9bd28d3 | 2010-11-05 09:55:18 +0100 | [diff] [blame] | 1579 | } |
| 1580 | |
Philipp Reisner | 1f04af3 | 2011-02-07 11:33:59 +0100 | [diff] [blame] | 1581 | void start_resync_timer_fn(unsigned long data) |
| 1582 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1583 | struct drbd_device *device = (struct drbd_device *) data; |
Philipp Reisner | 1f04af3 | 2011-02-07 11:33:59 +0100 | [diff] [blame] | 1584 | |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1585 | drbd_queue_work(&first_peer_device(device)->connection->sender_work, &device->start_resync_work); |
Philipp Reisner | 1f04af3 | 2011-02-07 11:33:59 +0100 | [diff] [blame] | 1586 | } |
| 1587 | |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1588 | int w_start_resync(struct drbd_work *w, int cancel) |
Philipp Reisner | 1f04af3 | 2011-02-07 11:33:59 +0100 | [diff] [blame] | 1589 | { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1590 | struct drbd_device *device = w->device; |
Philipp Reisner | 00d5694 | 2011-02-09 18:09:48 +0100 | [diff] [blame] | 1591 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1592 | if (atomic_read(&device->unacked_cnt) || atomic_read(&device->rs_pending_cnt)) { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1593 | drbd_warn(device, "w_start_resync later...\n"); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1594 | device->start_resync_timer.expires = jiffies + HZ/10; |
| 1595 | add_timer(&device->start_resync_timer); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1596 | return 0; |
Philipp Reisner | 1f04af3 | 2011-02-07 11:33:59 +0100 | [diff] [blame] | 1597 | } |
| 1598 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1599 | drbd_start_resync(device, C_SYNC_SOURCE); |
| 1600 | clear_bit(AHEAD_TO_SYNC_SOURCE, &device->flags); |
Andreas Gruenbacher | 99920dc | 2011-03-16 15:31:39 +0100 | [diff] [blame] | 1601 | return 0; |
Philipp Reisner | 1f04af3 | 2011-02-07 11:33:59 +0100 | [diff] [blame] | 1602 | } |
| 1603 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1604 | /** |
| 1605 | * drbd_start_resync() - Start the resync process |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1606 | * @device: DRBD device. |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1607 | * @side: Either C_SYNC_SOURCE or C_SYNC_TARGET |
| 1608 | * |
| 1609 | * This function might bring you directly into one of the |
| 1610 | * C_PAUSED_SYNC_* states. |
| 1611 | */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1612 | void drbd_start_resync(struct drbd_device *device, enum drbd_conns side) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1613 | { |
| 1614 | union drbd_state ns; |
| 1615 | int r; |
| 1616 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1617 | if (device->state.conn >= C_SYNC_SOURCE && device->state.conn < C_AHEAD) { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1618 | drbd_err(device, "Resync already running!\n"); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1619 | return; |
| 1620 | } |
| 1621 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1622 | if (!test_bit(B_RS_H_DONE, &device->flags)) { |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1623 | if (side == C_SYNC_TARGET) { |
| 1624 | /* Since application IO was locked out during C_WF_BITMAP_T and |
| 1625 | C_WF_SYNC_UUID we are still unmodified. Before going to C_SYNC_TARGET |
| 1626 | we check that we might make the data inconsistent. */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1627 | r = drbd_khelper(device, "before-resync-target"); |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1628 | r = (r >> 8) & 0xff; |
| 1629 | if (r > 0) { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1630 | drbd_info(device, "before-resync-target handler returned %d, " |
Philipp Reisner | 09b9e79 | 2010-12-03 16:04:24 +0100 | [diff] [blame] | 1631 | "dropping connection.\n", r); |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1632 | conn_request_state(first_peer_device(device)->connection, NS(conn, C_DISCONNECTING), CS_HARD); |
Philipp Reisner | 09b9e79 | 2010-12-03 16:04:24 +0100 | [diff] [blame] | 1633 | return; |
| 1634 | } |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1635 | } else /* C_SYNC_SOURCE */ { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1636 | r = drbd_khelper(device, "before-resync-source"); |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1637 | r = (r >> 8) & 0xff; |
| 1638 | if (r > 0) { |
| 1639 | if (r == 3) { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1640 | drbd_info(device, "before-resync-source handler returned %d, " |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1641 | "ignoring. Old userland tools?", r); |
| 1642 | } else { |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1643 | drbd_info(device, "before-resync-source handler returned %d, " |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1644 | "dropping connection.\n", r); |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1645 | conn_request_state(first_peer_device(device)->connection, |
| 1646 | NS(conn, C_DISCONNECTING), CS_HARD); |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1647 | return; |
| 1648 | } |
| 1649 | } |
Philipp Reisner | 09b9e79 | 2010-12-03 16:04:24 +0100 | [diff] [blame] | 1650 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1651 | } |
| 1652 | |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1653 | if (current == first_peer_device(device)->connection->worker.task) { |
Philipp Reisner | dad2055 | 2011-02-11 19:43:55 +0100 | [diff] [blame] | 1654 | /* The worker should not sleep waiting for state_mutex, |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1655 | that can take long */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1656 | if (!mutex_trylock(device->state_mutex)) { |
| 1657 | set_bit(B_RS_H_DONE, &device->flags); |
| 1658 | device->start_resync_timer.expires = jiffies + HZ/5; |
| 1659 | add_timer(&device->start_resync_timer); |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1660 | return; |
| 1661 | } |
| 1662 | } else { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1663 | mutex_lock(device->state_mutex); |
Philipp Reisner | e64a329 | 2011-02-05 17:34:11 +0100 | [diff] [blame] | 1664 | } |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1665 | clear_bit(B_RS_H_DONE, &device->flags); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1666 | |
Philipp Reisner | 0cfac5d | 2011-11-10 12:12:52 +0100 | [diff] [blame] | 1667 | write_lock_irq(&global_state_lock); |
Philipp Reisner | a700471 | 2013-03-27 14:08:35 +0100 | [diff] [blame] | 1668 | /* Did some connection breakage or IO error race with us? */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1669 | if (device->state.conn < C_CONNECTED |
| 1670 | || !get_ldev_if_state(device, D_NEGOTIATING)) { |
Philipp Reisner | 0cfac5d | 2011-11-10 12:12:52 +0100 | [diff] [blame] | 1671 | write_unlock_irq(&global_state_lock); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1672 | mutex_unlock(device->state_mutex); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1673 | return; |
| 1674 | } |
| 1675 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1676 | ns = drbd_read_state(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1677 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1678 | ns.aftr_isp = !_drbd_may_sync_now(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1679 | |
| 1680 | ns.conn = side; |
| 1681 | |
| 1682 | if (side == C_SYNC_TARGET) |
| 1683 | ns.disk = D_INCONSISTENT; |
| 1684 | else /* side == C_SYNC_SOURCE */ |
| 1685 | ns.pdsk = D_INCONSISTENT; |
| 1686 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1687 | r = __drbd_set_state(device, ns, CS_VERBOSE, NULL); |
| 1688 | ns = drbd_read_state(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1689 | |
| 1690 | if (ns.conn < C_CONNECTED) |
| 1691 | r = SS_UNKNOWN_ERROR; |
| 1692 | |
| 1693 | if (r == SS_SUCCESS) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1694 | unsigned long tw = drbd_bm_total_weight(device); |
Lars Ellenberg | 1d7734a | 2010-08-11 21:21:50 +0200 | [diff] [blame] | 1695 | unsigned long now = jiffies; |
| 1696 | int i; |
| 1697 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1698 | device->rs_failed = 0; |
| 1699 | device->rs_paused = 0; |
| 1700 | device->rs_same_csum = 0; |
| 1701 | device->rs_last_events = 0; |
| 1702 | device->rs_last_sect_ev = 0; |
| 1703 | device->rs_total = tw; |
| 1704 | device->rs_start = now; |
Lars Ellenberg | 1d7734a | 2010-08-11 21:21:50 +0200 | [diff] [blame] | 1705 | for (i = 0; i < DRBD_SYNC_MARKS; i++) { |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1706 | device->rs_mark_left[i] = tw; |
| 1707 | device->rs_mark_time[i] = now; |
Lars Ellenberg | 1d7734a | 2010-08-11 21:21:50 +0200 | [diff] [blame] | 1708 | } |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1709 | _drbd_pause_after(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1710 | } |
| 1711 | write_unlock_irq(&global_state_lock); |
Lars Ellenberg | 5a22db8 | 2010-12-17 21:14:23 +0100 | [diff] [blame] | 1712 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1713 | if (r == SS_SUCCESS) { |
Philipp Reisner | 328e0f1 | 2012-10-19 14:37:47 +0200 | [diff] [blame] | 1714 | /* reset rs_last_bcast when a resync or verify is started, |
| 1715 | * to deal with potential jiffies wrap. */ |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1716 | device->rs_last_bcast = jiffies - HZ; |
Philipp Reisner | 328e0f1 | 2012-10-19 14:37:47 +0200 | [diff] [blame] | 1717 | |
Andreas Gruenbacher | d018017 | 2011-07-03 17:53:52 +0200 | [diff] [blame] | 1718 | drbd_info(device, "Began resync as %s (will sync %lu KB [%lu bits set]).\n", |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1719 | drbd_conn_str(ns.conn), |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1720 | (unsigned long) device->rs_total << (BM_BLOCK_SHIFT-10), |
| 1721 | (unsigned long) device->rs_total); |
Lars Ellenberg | 6c922ed | 2011-01-12 11:51:13 +0100 | [diff] [blame] | 1722 | if (side == C_SYNC_TARGET) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1723 | device->bm_resync_fo = 0; |
Lars Ellenberg | 6c922ed | 2011-01-12 11:51:13 +0100 | [diff] [blame] | 1724 | |
| 1725 | /* Since protocol 96, we must serialize drbd_gen_and_send_sync_uuid |
| 1726 | * with w_send_oos, or the sync target will get confused as to |
| 1727 | * how much bits to resync. We cannot do that always, because for an |
| 1728 | * empty resync and protocol < 95, we need to do it here, as we call |
| 1729 | * drbd_resync_finished from here in that case. |
| 1730 | * We drbd_gen_and_send_sync_uuid here for protocol < 96, |
| 1731 | * and from after_state_ch otherwise. */ |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1732 | if (side == C_SYNC_SOURCE && |
| 1733 | first_peer_device(device)->connection->agreed_pro_version < 96) |
Andreas Gruenbacher | 69a2277 | 2011-08-09 00:47:13 +0200 | [diff] [blame^] | 1734 | drbd_gen_and_send_sync_uuid(first_peer_device(device)); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1735 | |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1736 | if (first_peer_device(device)->connection->agreed_pro_version < 95 && |
| 1737 | device->rs_total == 0) { |
Lars Ellenberg | af85e8e | 2010-10-07 16:07:55 +0200 | [diff] [blame] | 1738 | /* This still has a race (about when exactly the peers |
| 1739 | * detect connection loss) that can lead to a full sync |
| 1740 | * on next handshake. In 8.3.9 we fixed this with explicit |
| 1741 | * resync-finished notifications, but the fix |
| 1742 | * introduces a protocol change. Sleeping for some |
| 1743 | * time longer than the ping interval + timeout on the |
| 1744 | * SyncSource, to give the SyncTarget the chance to |
| 1745 | * detect connection loss, then waiting for a ping |
| 1746 | * response (implicit in drbd_resync_finished) reduces |
| 1747 | * the race considerably, but does not solve it. */ |
Philipp Reisner | 44ed167 | 2011-04-19 17:10:19 +0200 | [diff] [blame] | 1748 | if (side == C_SYNC_SOURCE) { |
| 1749 | struct net_conf *nc; |
| 1750 | int timeo; |
| 1751 | |
| 1752 | rcu_read_lock(); |
Andreas Gruenbacher | a6b32bc | 2011-05-31 14:33:49 +0200 | [diff] [blame] | 1753 | nc = rcu_dereference(first_peer_device(device)->connection->net_conf); |
Philipp Reisner | 44ed167 | 2011-04-19 17:10:19 +0200 | [diff] [blame] | 1754 | timeo = nc->ping_int * HZ + nc->ping_timeo * HZ / 9; |
| 1755 | rcu_read_unlock(); |
| 1756 | schedule_timeout_interruptible(timeo); |
| 1757 | } |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1758 | drbd_resync_finished(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1759 | } |
| 1760 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1761 | drbd_rs_controller_reset(device); |
| 1762 | /* ns.conn may already be != device->state.conn, |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1763 | * we may have been paused in between, or become paused until |
| 1764 | * the timer triggers. |
| 1765 | * No matter, that is handled in resync_timer_fn() */ |
| 1766 | if (ns.conn == C_SYNC_TARGET) |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1767 | mod_timer(&device->resync_timer, jiffies); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1768 | |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1769 | drbd_md_sync(device); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1770 | } |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1771 | put_ldev(device); |
| 1772 | mutex_unlock(device->state_mutex); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1773 | } |
| 1774 | |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1775 | /* If the resource already closed the current epoch, but we did not |
| 1776 | * (because we have not yet seen new requests), we should send the |
| 1777 | * corresponding barrier now. Must be checked within the same spinlock |
| 1778 | * that is used to check for new requests. */ |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1779 | static bool need_to_send_barrier(struct drbd_connection *connection) |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1780 | { |
| 1781 | if (!connection->send.seen_any_write_yet) |
| 1782 | return false; |
| 1783 | |
| 1784 | /* Skip barriers that do not contain any writes. |
| 1785 | * This may happen during AHEAD mode. */ |
| 1786 | if (!connection->send.current_epoch_writes) |
| 1787 | return false; |
| 1788 | |
| 1789 | /* ->req_lock is held when requests are queued on |
| 1790 | * connection->sender_work, and put into ->transfer_log. |
| 1791 | * It is also held when ->current_tle_nr is increased. |
| 1792 | * So either there are already new requests queued, |
| 1793 | * and corresponding barriers will be send there. |
| 1794 | * Or nothing new is queued yet, so the difference will be 1. |
| 1795 | */ |
| 1796 | if (atomic_read(&connection->current_tle_nr) != |
| 1797 | connection->send.current_epoch_nr + 1) |
| 1798 | return false; |
| 1799 | |
| 1800 | return true; |
| 1801 | } |
| 1802 | |
Rashika Kheria | a186e47 | 2013-12-19 15:06:10 +0530 | [diff] [blame] | 1803 | static bool dequeue_work_batch(struct drbd_work_queue *queue, struct list_head *work_list) |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1804 | { |
| 1805 | spin_lock_irq(&queue->q_lock); |
| 1806 | list_splice_init(&queue->q, work_list); |
| 1807 | spin_unlock_irq(&queue->q_lock); |
| 1808 | return !list_empty(work_list); |
| 1809 | } |
| 1810 | |
Rashika Kheria | a186e47 | 2013-12-19 15:06:10 +0530 | [diff] [blame] | 1811 | static bool dequeue_work_item(struct drbd_work_queue *queue, struct list_head *work_list) |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1812 | { |
| 1813 | spin_lock_irq(&queue->q_lock); |
| 1814 | if (!list_empty(&queue->q)) |
| 1815 | list_move(queue->q.next, work_list); |
| 1816 | spin_unlock_irq(&queue->q_lock); |
| 1817 | return !list_empty(work_list); |
| 1818 | } |
| 1819 | |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1820 | static void wait_for_work(struct drbd_connection *connection, struct list_head *work_list) |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1821 | { |
| 1822 | DEFINE_WAIT(wait); |
| 1823 | struct net_conf *nc; |
| 1824 | int uncork, cork; |
| 1825 | |
| 1826 | dequeue_work_item(&connection->sender_work, work_list); |
| 1827 | if (!list_empty(work_list)) |
| 1828 | return; |
| 1829 | |
| 1830 | /* Still nothing to do? |
| 1831 | * Maybe we still need to close the current epoch, |
| 1832 | * even if no new requests are queued yet. |
| 1833 | * |
| 1834 | * Also, poke TCP, just in case. |
| 1835 | * Then wait for new work (or signal). */ |
| 1836 | rcu_read_lock(); |
| 1837 | nc = rcu_dereference(connection->net_conf); |
| 1838 | uncork = nc ? nc->tcp_cork : 0; |
| 1839 | rcu_read_unlock(); |
| 1840 | if (uncork) { |
| 1841 | mutex_lock(&connection->data.mutex); |
| 1842 | if (connection->data.socket) |
| 1843 | drbd_tcp_uncork(connection->data.socket); |
| 1844 | mutex_unlock(&connection->data.mutex); |
| 1845 | } |
| 1846 | |
| 1847 | for (;;) { |
| 1848 | int send_barrier; |
| 1849 | prepare_to_wait(&connection->sender_work.q_wait, &wait, TASK_INTERRUPTIBLE); |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 1850 | spin_lock_irq(&connection->resource->req_lock); |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1851 | spin_lock(&connection->sender_work.q_lock); /* FIXME get rid of this one? */ |
Lars Ellenberg | bc317a9 | 2012-08-22 11:47:14 +0200 | [diff] [blame] | 1852 | /* dequeue single item only, |
| 1853 | * we still use drbd_queue_work_front() in some places */ |
| 1854 | if (!list_empty(&connection->sender_work.q)) |
| 1855 | list_move(connection->sender_work.q.next, work_list); |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1856 | spin_unlock(&connection->sender_work.q_lock); /* FIXME get rid of this one? */ |
| 1857 | if (!list_empty(work_list) || signal_pending(current)) { |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 1858 | spin_unlock_irq(&connection->resource->req_lock); |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1859 | break; |
| 1860 | } |
| 1861 | send_barrier = need_to_send_barrier(connection); |
Andreas Gruenbacher | 0500813 | 2011-07-07 14:19:42 +0200 | [diff] [blame] | 1862 | spin_unlock_irq(&connection->resource->req_lock); |
Lars Ellenberg | b6dd1a8 | 2011-11-28 15:04:49 +0100 | [diff] [blame] | 1863 | if (send_barrier) { |
| 1864 | drbd_send_barrier(connection); |
| 1865 | connection->send.current_epoch_nr++; |
| 1866 | } |
| 1867 | schedule(); |
| 1868 | /* may be woken up for other things but new work, too, |
| 1869 | * e.g. if the current epoch got closed. |
| 1870 | * In which case we send the barrier above. */ |
| 1871 | } |
| 1872 | finish_wait(&connection->sender_work.q_wait, &wait); |
| 1873 | |
| 1874 | /* someone may have changed the config while we have been waiting above. */ |
| 1875 | rcu_read_lock(); |
| 1876 | nc = rcu_dereference(connection->net_conf); |
| 1877 | cork = nc ? nc->tcp_cork : 0; |
| 1878 | rcu_read_unlock(); |
| 1879 | mutex_lock(&connection->data.mutex); |
| 1880 | if (connection->data.socket) { |
| 1881 | if (cork) |
| 1882 | drbd_tcp_cork(connection->data.socket); |
| 1883 | else if (!uncork) |
| 1884 | drbd_tcp_uncork(connection->data.socket); |
| 1885 | } |
| 1886 | mutex_unlock(&connection->data.mutex); |
| 1887 | } |
| 1888 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1889 | int drbd_worker(struct drbd_thread *thi) |
| 1890 | { |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1891 | struct drbd_connection *connection = thi->connection; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1892 | struct drbd_work *w = NULL; |
Andreas Gruenbacher | c06ece6 | 2011-06-21 17:23:59 +0200 | [diff] [blame] | 1893 | struct drbd_peer_device *peer_device; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1894 | LIST_HEAD(work_list); |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1895 | int vnr; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1896 | |
Andreas Gruenbacher | e77a0a5 | 2011-01-25 15:43:39 +0100 | [diff] [blame] | 1897 | while (get_t_state(thi) == RUNNING) { |
Philipp Reisner | 8082228 | 2011-02-08 12:46:30 +0100 | [diff] [blame] | 1898 | drbd_thread_current_set_cpu(thi); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1899 | |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1900 | /* as long as we use drbd_queue_work_front(), |
| 1901 | * we may only dequeue single work items here, not batches. */ |
| 1902 | if (list_empty(&work_list)) |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1903 | wait_for_work(connection, &work_list); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1904 | |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1905 | if (signal_pending(current)) { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1906 | flush_signals(current); |
Philipp Reisner | 19393e1 | 2011-02-09 10:09:07 +0100 | [diff] [blame] | 1907 | if (get_t_state(thi) == RUNNING) { |
Andreas Gruenbacher | 1ec861e | 2011-07-06 11:01:44 +0200 | [diff] [blame] | 1908 | drbd_warn(connection, "Worker got an unexpected signal\n"); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1909 | continue; |
Philipp Reisner | 19393e1 | 2011-02-09 10:09:07 +0100 | [diff] [blame] | 1910 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1911 | break; |
| 1912 | } |
| 1913 | |
Andreas Gruenbacher | e77a0a5 | 2011-01-25 15:43:39 +0100 | [diff] [blame] | 1914 | if (get_t_state(thi) != RUNNING) |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1915 | break; |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1916 | |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1917 | while (!list_empty(&work_list)) { |
| 1918 | w = list_first_entry(&work_list, struct drbd_work, list); |
| 1919 | list_del_init(&w->list); |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1920 | if (w->cb(w, connection->cstate < C_WF_REPORT_PARAMS) == 0) |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1921 | continue; |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1922 | if (connection->cstate >= C_WF_REPORT_PARAMS) |
| 1923 | conn_request_state(connection, NS(conn, C_NETWORK_FAILURE), CS_HARD); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1924 | } |
| 1925 | } |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1926 | |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1927 | do { |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1928 | while (!list_empty(&work_list)) { |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1929 | w = list_first_entry(&work_list, struct drbd_work, list); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1930 | list_del_init(&w->list); |
Philipp Reisner | 00d5694 | 2011-02-09 18:09:48 +0100 | [diff] [blame] | 1931 | w->cb(w, 1); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1932 | } |
Andreas Gruenbacher | bde89a9 | 2011-05-30 16:32:41 +0200 | [diff] [blame] | 1933 | dequeue_work_batch(&connection->sender_work, &work_list); |
Lars Ellenberg | 8c0785a | 2011-10-19 11:50:57 +0200 | [diff] [blame] | 1934 | } while (!list_empty(&work_list)); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1935 | |
Philipp Reisner | c141ebd | 2011-05-05 16:13:10 +0200 | [diff] [blame] | 1936 | rcu_read_lock(); |
Andreas Gruenbacher | c06ece6 | 2011-06-21 17:23:59 +0200 | [diff] [blame] | 1937 | idr_for_each_entry(&connection->peer_devices, peer_device, vnr) { |
| 1938 | struct drbd_device *device = peer_device->device; |
Andreas Gruenbacher | 0b0ba1e | 2011-06-27 16:23:33 +0200 | [diff] [blame] | 1939 | D_ASSERT(device, device->state.disk == D_DISKLESS && device->state.conn == C_STANDALONE); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1940 | kref_get(&device->kref); |
Philipp Reisner | c141ebd | 2011-05-05 16:13:10 +0200 | [diff] [blame] | 1941 | rcu_read_unlock(); |
Andreas Gruenbacher | b30ab79 | 2011-07-03 13:26:43 +0200 | [diff] [blame] | 1942 | drbd_device_cleanup(device); |
Andreas Gruenbacher | 05a10ec | 2011-06-07 22:54:17 +0200 | [diff] [blame] | 1943 | kref_put(&device->kref, drbd_destroy_device); |
Philipp Reisner | c141ebd | 2011-05-05 16:13:10 +0200 | [diff] [blame] | 1944 | rcu_read_lock(); |
Philipp Reisner | 0e29d16 | 2011-02-18 14:23:11 +0100 | [diff] [blame] | 1945 | } |
Philipp Reisner | c141ebd | 2011-05-05 16:13:10 +0200 | [diff] [blame] | 1946 | rcu_read_unlock(); |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 1947 | |
| 1948 | return 0; |
| 1949 | } |