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