blob: 49b88731b349eefc10e32a9a161441d6f33af42a [file] [log] [blame]
Philipp Reisnerb411b362009-09-25 16:07:19 -07001/*
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 Gruenbacher84b8c062011-07-28 15:27:51 +020024*/
Philipp Reisnerb411b362009-09-25 16:07:19 -070025
Philipp Reisnerb411b362009-09-25 16:07:19 -070026#include <linux/module.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070027#include <linux/drbd.h>
28#include <linux/sched.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070029#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 Reisnerb411b362009-09-25 16:07:19 -070035#include <linux/string.h>
36#include <linux/scatterlist.h>
37
38#include "drbd_int.h"
Andreas Gruenbachera3603a62011-05-30 11:47:37 +020039#include "drbd_protocol.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070040#include "drbd_req.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070041
Andreas Gruenbacherd448a2e2011-08-25 16:59:58 +020042static int make_ov_request(struct drbd_device *, int);
43static int make_resync_request(struct drbd_device *, int);
Philipp Reisnerb411b362009-09-25 16:07:19 -070044
Andreas Gruenbacherc5a91612011-01-25 17:33:38 +010045/* endio handlers:
46 * drbd_md_io_complete (defined here)
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +010047 * drbd_request_endio (defined here)
48 * drbd_peer_request_endio (defined here)
Andreas Gruenbacherc5a91612011-01-25 17:33:38 +010049 * bm_async_io_complete (defined in drbd_bitmap.c)
50 *
Philipp Reisnerb411b362009-09-25 16:07:19 -070051 * For all these callbacks, note the following:
52 * The callbacks will be called in irq context by the IDE drivers,
53 * and in Softirqs/Tasklets/BH context by the SCSI drivers.
54 * Try to get the locking right :)
55 *
56 */
57
58
59/* About the global_state_lock
60 Each state transition on an device holds a read lock. In case we have
Andreas Gruenbacher95f8efd2011-05-12 11:15:34 +020061 to evaluate the resync after dependencies, we grab a write lock, because
Philipp Reisnerb411b362009-09-25 16:07:19 -070062 we need stable states on all devices for that. */
63rwlock_t global_state_lock;
64
65/* used for synchronous meta data and bitmap IO
66 * submitted by drbd_md_sync_page_io()
67 */
68void drbd_md_io_complete(struct bio *bio, int error)
69{
70 struct drbd_md_io *md_io;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020071 struct drbd_device *device;
Philipp Reisnerb411b362009-09-25 16:07:19 -070072
73 md_io = (struct drbd_md_io *)bio->bi_private;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020074 device = container_of(md_io, struct drbd_device, md_io);
Philipp Reisnercdfda632011-07-05 15:38:59 +020075
Philipp Reisnerb411b362009-09-25 16:07:19 -070076 md_io->error = error;
77
Philipp Reisner0cfac5d2011-11-10 12:12:52 +010078 /* We grabbed an extra reference in _drbd_md_sync_page_io() to be able
79 * to timeout on the lower level device, and eventually detach from it.
80 * If this io completion runs after that timeout expired, this
81 * drbd_md_put_buffer() may allow us to finally try and re-attach.
82 * During normal operation, this only puts that extra reference
83 * down to 1 again.
84 * Make sure we first drop the reference, and only then signal
85 * completion, or we may (in drbd_al_read_log()) cycle so fast into the
86 * next drbd_md_sync_page_io(), that we trigger the
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020087 * ASSERT(atomic_read(&device->md_io_in_use) == 1) there.
Philipp Reisner0cfac5d2011-11-10 12:12:52 +010088 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020089 drbd_md_put_buffer(device);
Philipp Reisnercdfda632011-07-05 15:38:59 +020090 md_io->done = 1;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020091 wake_up(&device->misc_wait);
Philipp Reisnercdfda632011-07-05 15:38:59 +020092 bio_put(bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020093 if (device->ldev) /* special case: drbd_md_read() during drbd_adm_attach() */
94 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -070095}
96
97/* reads on behalf of the partner,
98 * "submitted" by the receiver
99 */
Rashika Kheriaa186e472013-12-19 15:06:10 +0530100static void drbd_endio_read_sec_final(struct drbd_peer_request *peer_req) __releases(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700101{
102 unsigned long flags = 0;
Andreas Gruenbacher67801392011-09-13 10:39:41 +0200103 struct drbd_peer_device *peer_device = peer_req->peer_device;
104 struct drbd_device *device = peer_device->device;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700105
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200106 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200107 device->read_cnt += peer_req->i.size >> 9;
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +0200108 list_del(&peer_req->w.list);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200109 if (list_empty(&device->read_ee))
110 wake_up(&device->ee_wait);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100111 if (test_bit(__EE_WAS_ERROR, &peer_req->flags))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200112 __drbd_chk_io_error(device, DRBD_READ_ERROR);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200113 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700114
Andreas Gruenbacher67801392011-09-13 10:39:41 +0200115 drbd_queue_work(&peer_device->connection->sender_work, &peer_req->w);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200116 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700117}
118
119/* writes on behalf of the partner, or resync writes,
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200120 * "submitted" by the receiver, final stage. */
Lars Ellenberga0fb3c42014-04-28 18:43:23 +0200121void drbd_endio_write_sec_final(struct drbd_peer_request *peer_req) __releases(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700122{
123 unsigned long flags = 0;
Andreas Gruenbacher67801392011-09-13 10:39:41 +0200124 struct drbd_peer_device *peer_device = peer_req->peer_device;
125 struct drbd_device *device = peer_device->device;
Lars Ellenberg181286a2011-03-31 15:18:56 +0200126 struct drbd_interval i;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700127 int do_wake;
Andreas Gruenbacher579b57e2011-01-13 18:40:57 +0100128 u64 block_id;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700129 int do_al_complete_io;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700130
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100131 /* after we moved peer_req to done_ee,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700132 * we may no longer access it,
133 * it may be freed/reused already!
134 * (as soon as we release the req_lock) */
Lars Ellenberg181286a2011-03-31 15:18:56 +0200135 i = peer_req->i;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100136 do_al_complete_io = peer_req->flags & EE_CALL_AL_COMPLETE_IO;
137 block_id = peer_req->block_id;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700138
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200139 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200140 device->writ_cnt += peer_req->i.size >> 9;
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +0200141 list_move_tail(&peer_req->w.list, &device->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700142
Andreas Gruenbacherbb3bfe92011-01-21 15:59:23 +0100143 /*
Andreas Gruenbacher5e472262011-01-27 14:42:51 +0100144 * Do not remove from the write_requests tree here: we did not send the
Andreas Gruenbacherbb3bfe92011-01-21 15:59:23 +0100145 * Ack yet and did not wake possibly waiting conflicting requests.
146 * Removed from the tree from "drbd_process_done_ee" within the
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200147 * appropriate dw.cb (e_end_block/e_end_resync_block) or from
Andreas Gruenbacherbb3bfe92011-01-21 15:59:23 +0100148 * _drbd_clear_done_ee.
149 */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700150
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200151 do_wake = list_empty(block_id == ID_SYNCER ? &device->sync_ee : &device->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700152
Lars Ellenberga0fb3c42014-04-28 18:43:23 +0200153 /* FIXME do we want to detach for failed REQ_DISCARD?
154 * ((peer_req->flags & (EE_WAS_ERROR|EE_IS_TRIM)) == EE_WAS_ERROR) */
155 if (peer_req->flags & EE_WAS_ERROR)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200156 __drbd_chk_io_error(device, DRBD_WRITE_ERROR);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200157 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700158
Andreas Gruenbacher579b57e2011-01-13 18:40:57 +0100159 if (block_id == ID_SYNCER)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200160 drbd_rs_complete_io(device, i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700161
162 if (do_wake)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200163 wake_up(&device->ee_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700164
165 if (do_al_complete_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200166 drbd_al_complete_io(device, &i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700167
Andreas Gruenbacher67801392011-09-13 10:39:41 +0200168 wake_asender(peer_device->connection);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200169 put_ldev(device);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200170}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700171
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200172/* writes on behalf of the partner, or resync writes,
173 * "submitted" by the receiver.
174 */
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +0100175void drbd_peer_request_endio(struct bio *bio, int error)
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200176{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100177 struct drbd_peer_request *peer_req = bio->bi_private;
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +0200178 struct drbd_device *device = peer_req->peer_device->device;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200179 int uptodate = bio_flagged(bio, BIO_UPTODATE);
180 int is_write = bio_data_dir(bio) == WRITE;
Lars Ellenberga0fb3c42014-04-28 18:43:23 +0200181 int is_discard = !!(bio->bi_rw & REQ_DISCARD);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200182
Lars Ellenberg07194272010-12-20 15:38:07 +0100183 if (error && __ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200184 drbd_warn(device, "%s: error=%d s=%llus\n",
Lars Ellenberga0fb3c42014-04-28 18:43:23 +0200185 is_write ? (is_discard ? "discard" : "write")
186 : "read", error,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100187 (unsigned long long)peer_req->i.sector);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200188 if (!error && !uptodate) {
Lars Ellenberg07194272010-12-20 15:38:07 +0100189 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200190 drbd_warn(device, "%s: setting error to -EIO s=%llus\n",
Lars Ellenberg07194272010-12-20 15:38:07 +0100191 is_write ? "write" : "read",
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100192 (unsigned long long)peer_req->i.sector);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200193 /* strange behavior of some lower level drivers...
194 * fail the request by clearing the uptodate flag,
195 * but do not return any error?! */
196 error = -EIO;
197 }
198
199 if (error)
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100200 set_bit(__EE_WAS_ERROR, &peer_req->flags);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200201
202 bio_put(bio); /* no need for the bio anymore */
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100203 if (atomic_dec_and_test(&peer_req->pending_bios)) {
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200204 if (is_write)
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100205 drbd_endio_write_sec_final(peer_req);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200206 else
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100207 drbd_endio_read_sec_final(peer_req);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200208 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700209}
210
211/* read, readA or write requests on R_PRIMARY coming from drbd_make_request
212 */
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +0100213void drbd_request_endio(struct bio *bio, int error)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700214{
Lars Ellenberga1154132010-11-13 20:42:29 +0100215 unsigned long flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700216 struct drbd_request *req = bio->bi_private;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200217 struct drbd_device *device = req->device;
Lars Ellenberga1154132010-11-13 20:42:29 +0100218 struct bio_and_error m;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700219 enum drbd_req_event what;
220 int uptodate = bio_flagged(bio, BIO_UPTODATE);
221
Philipp Reisnerb411b362009-09-25 16:07:19 -0700222 if (!error && !uptodate) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200223 drbd_warn(device, "p %s: setting error to -EIO\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -0700224 bio_data_dir(bio) == WRITE ? "write" : "read");
225 /* strange behavior of some lower level drivers...
226 * fail the request by clearing the uptodate flag,
227 * but do not return any error?! */
228 error = -EIO;
229 }
230
Philipp Reisner1b6dd252012-09-04 15:16:20 +0200231
232 /* If this request was aborted locally before,
233 * but now was completed "successfully",
234 * chances are that this caused arbitrary data corruption.
235 *
236 * "aborting" requests, or force-detaching the disk, is intended for
237 * completely blocked/hung local backing devices which do no longer
238 * complete requests at all, not even do error completions. In this
239 * situation, usually a hard-reset and failover is the only way out.
240 *
241 * By "aborting", basically faking a local error-completion,
242 * we allow for a more graceful swichover by cleanly migrating services.
243 * Still the affected node has to be rebooted "soon".
244 *
245 * By completing these requests, we allow the upper layers to re-use
246 * the associated data pages.
247 *
248 * If later the local backing device "recovers", and now DMAs some data
249 * from disk into the original request pages, in the best case it will
250 * just put random data into unused pages; but typically it will corrupt
251 * meanwhile completely unrelated data, causing all sorts of damage.
252 *
253 * Which means delayed successful completion,
254 * especially for READ requests,
255 * is a reason to panic().
256 *
257 * We assume that a delayed *error* completion is OK,
258 * though we still will complain noisily about it.
259 */
260 if (unlikely(req->rq_state & RQ_LOCAL_ABORTED)) {
261 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200262 drbd_emerg(device, "delayed completion of aborted local request; disk-timeout may be too aggressive\n");
Philipp Reisner1b6dd252012-09-04 15:16:20 +0200263
264 if (!error)
265 panic("possible random memory corruption caused by delayed completion of aborted local request\n");
266 }
267
Philipp Reisnerb411b362009-09-25 16:07:19 -0700268 /* to avoid recursion in __req_mod */
269 if (unlikely(error)) {
Lars Ellenberg2f632ae2014-04-28 18:43:24 +0200270 if (bio->bi_rw & REQ_DISCARD)
271 what = (error == -EOPNOTSUPP)
272 ? DISCARD_COMPLETED_NOTSUPP
273 : DISCARD_COMPLETED_WITH_ERROR;
274 else
275 what = (bio_data_dir(bio) == WRITE)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100276 ? WRITE_COMPLETED_WITH_ERROR
Lars Ellenberg5c3c7e62010-04-10 02:10:09 +0200277 : (bio_rw(bio) == READ)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100278 ? READ_COMPLETED_WITH_ERROR
279 : READ_AHEAD_COMPLETED_WITH_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700280 } else
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100281 what = COMPLETED_OK;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700282
283 bio_put(req->private_bio);
284 req->private_bio = ERR_PTR(error);
285
Lars Ellenberga1154132010-11-13 20:42:29 +0100286 /* not req_mod(), we need irqsave here! */
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200287 spin_lock_irqsave(&device->resource->req_lock, flags);
Lars Ellenberga1154132010-11-13 20:42:29 +0100288 __req_mod(req, what, &m);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200289 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200290 put_ldev(device);
Lars Ellenberga1154132010-11-13 20:42:29 +0100291
292 if (m.bio)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200293 complete_master_bio(device, &m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700294}
295
Andreas Gruenbacher79a3c8d2011-08-09 02:49:01 +0200296void drbd_csum_ee(struct crypto_hash *tfm, struct drbd_peer_request *peer_req, void *digest)
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200297{
298 struct hash_desc desc;
299 struct scatterlist sg;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100300 struct page *page = peer_req->pages;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200301 struct page *tmp;
302 unsigned len;
303
304 desc.tfm = tfm;
305 desc.flags = 0;
306
307 sg_init_table(&sg, 1);
308 crypto_hash_init(&desc);
309
310 while ((tmp = page_chain_next(page))) {
311 /* all but the last page will be fully used */
312 sg_set_page(&sg, page, PAGE_SIZE, 0);
313 crypto_hash_update(&desc, &sg, sg.length);
314 page = tmp;
315 }
316 /* and now the last, possibly only partially used page */
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100317 len = peer_req->i.size & (PAGE_SIZE - 1);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200318 sg_set_page(&sg, page, len ?: PAGE_SIZE, 0);
319 crypto_hash_update(&desc, &sg, sg.length);
320 crypto_hash_final(&desc, digest);
321}
322
Andreas Gruenbacher79a3c8d2011-08-09 02:49:01 +0200323void drbd_csum_bio(struct crypto_hash *tfm, struct bio *bio, void *digest)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700324{
325 struct hash_desc desc;
326 struct scatterlist sg;
Kent Overstreet79886132013-11-23 17:19:00 -0800327 struct bio_vec bvec;
328 struct bvec_iter iter;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700329
330 desc.tfm = tfm;
331 desc.flags = 0;
332
333 sg_init_table(&sg, 1);
334 crypto_hash_init(&desc);
335
Kent Overstreet79886132013-11-23 17:19:00 -0800336 bio_for_each_segment(bvec, bio, iter) {
337 sg_set_page(&sg, bvec.bv_page, bvec.bv_len, bvec.bv_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700338 crypto_hash_update(&desc, &sg, sg.length);
339 }
340 crypto_hash_final(&desc, digest);
341}
342
Lars Ellenberg9676c762011-02-22 14:02:31 +0100343/* MAYBE merge common code with w_e_end_ov_req */
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100344static int w_e_send_csum(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700345{
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +0200346 struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
Andreas Gruenbacher67801392011-09-13 10:39:41 +0200347 struct drbd_peer_device *peer_device = peer_req->peer_device;
348 struct drbd_device *device = peer_device->device;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700349 int digest_size;
350 void *digest;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100351 int err = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700352
Lars Ellenberg53ea4332011-03-08 17:11:40 +0100353 if (unlikely(cancel))
354 goto out;
355
Lars Ellenberg9676c762011-02-22 14:02:31 +0100356 if (unlikely((peer_req->flags & EE_WAS_ERROR) != 0))
Lars Ellenberg53ea4332011-03-08 17:11:40 +0100357 goto out;
358
Andreas Gruenbacher67801392011-09-13 10:39:41 +0200359 digest_size = crypto_hash_digestsize(peer_device->connection->csums_tfm);
Lars Ellenberg53ea4332011-03-08 17:11:40 +0100360 digest = kmalloc(digest_size, GFP_NOIO);
361 if (digest) {
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100362 sector_t sector = peer_req->i.sector;
363 unsigned int size = peer_req->i.size;
Andreas Gruenbacher67801392011-09-13 10:39:41 +0200364 drbd_csum_ee(peer_device->connection->csums_tfm, peer_req, digest);
Lars Ellenberg9676c762011-02-22 14:02:31 +0100365 /* Free peer_req and pages before send.
Lars Ellenberg53ea4332011-03-08 17:11:40 +0100366 * In case we block on congestion, we could otherwise run into
367 * some distributed deadlock, if the other side blocks on
368 * congestion as well, because our receiver blocks in
Andreas Gruenbacherc37c8ec2011-04-07 21:02:09 +0200369 * drbd_alloc_pages due to pp_in_use > max_buffers. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200370 drbd_free_peer_req(device, peer_req);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100371 peer_req = NULL;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200372 inc_rs_pending(device);
Andreas Gruenbacher67801392011-09-13 10:39:41 +0200373 err = drbd_send_drequest_csum(peer_device, sector, size,
Andreas Gruenbacherdb1b0b72011-03-16 01:37:21 +0100374 digest, digest_size,
375 P_CSUM_RS_REQUEST);
Lars Ellenberg53ea4332011-03-08 17:11:40 +0100376 kfree(digest);
377 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200378 drbd_err(device, "kmalloc() of digest failed.\n");
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100379 err = -ENOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700380 }
381
Lars Ellenberg53ea4332011-03-08 17:11:40 +0100382out:
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100383 if (peer_req)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200384 drbd_free_peer_req(device, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700385
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100386 if (unlikely(err))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200387 drbd_err(device, "drbd_send_drequest(..., csum) failed\n");
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100388 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700389}
390
391#define GFP_TRY (__GFP_HIGHMEM | __GFP_NOWARN)
392
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200393static int read_for_csum(struct drbd_peer_device *peer_device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700394{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200395 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100396 struct drbd_peer_request *peer_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700397
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200398 if (!get_ldev(device))
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200399 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700400
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200401 if (drbd_rs_should_slow_down(device, sector))
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200402 goto defer;
403
Philipp Reisnerb411b362009-09-25 16:07:19 -0700404 /* GFP_TRY, because if there is no memory available right now, this may
405 * be rescheduled for later. It is "only" background resync, after all. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200406 peer_req = drbd_alloc_peer_req(peer_device, ID_SYNCER /* unused */, sector,
Lars Ellenberga0fb3c42014-04-28 18:43:23 +0200407 size, true /* has real payload */, GFP_TRY);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100408 if (!peer_req)
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200409 goto defer;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700410
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +0200411 peer_req->w.cb = w_e_send_csum;
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200412 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +0200413 list_add(&peer_req->w.list, &device->read_ee);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200414 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700415
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200416 atomic_add(size >> 9, &device->rs_sect_ev);
417 if (drbd_submit_peer_request(device, peer_req, READ, DRBD_FAULT_RS_RD) == 0)
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200418 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700419
Lars Ellenberg10f6d9922011-01-24 14:47:09 +0100420 /* If it failed because of ENOMEM, retry should help. If it failed
421 * because bio_add_page failed (probably broken lower level driver),
422 * retry may or may not help.
423 * If it does not, you may need to force disconnect. */
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200424 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +0200425 list_del(&peer_req->w.list);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200426 spin_unlock_irq(&device->resource->req_lock);
Lars Ellenberg22cc37a2010-09-14 20:40:41 +0200427
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200428 drbd_free_peer_req(device, peer_req);
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200429defer:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200430 put_ldev(device);
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200431 return -EAGAIN;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700432}
433
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100434int w_resync_timer(struct drbd_work *w, int cancel)
Philipp Reisner794abb72010-12-27 11:51:23 +0100435{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200436 struct drbd_device *device =
437 container_of(w, struct drbd_device, resync_work);
438
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200439 switch (device->state.conn) {
Philipp Reisner794abb72010-12-27 11:51:23 +0100440 case C_VERIFY_S:
Andreas Gruenbacherd448a2e2011-08-25 16:59:58 +0200441 make_ov_request(device, cancel);
Philipp Reisner794abb72010-12-27 11:51:23 +0100442 break;
443 case C_SYNC_TARGET:
Andreas Gruenbacherd448a2e2011-08-25 16:59:58 +0200444 make_resync_request(device, cancel);
Philipp Reisner794abb72010-12-27 11:51:23 +0100445 break;
446 }
447
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100448 return 0;
Philipp Reisner794abb72010-12-27 11:51:23 +0100449}
450
Philipp Reisnerb411b362009-09-25 16:07:19 -0700451void resync_timer_fn(unsigned long data)
452{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200453 struct drbd_device *device = (struct drbd_device *) data;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700454
Lars Ellenberg15e26f62014-04-28 11:43:21 +0200455 drbd_queue_work_if_unqueued(
456 &first_peer_device(device)->connection->sender_work,
457 &device->resync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700458}
459
Philipp Reisner778f2712010-07-06 11:14:00 +0200460static void fifo_set(struct fifo_buffer *fb, int value)
461{
462 int i;
463
464 for (i = 0; i < fb->size; i++)
Philipp Reisnerf10f2622010-10-05 16:50:17 +0200465 fb->values[i] = value;
Philipp Reisner778f2712010-07-06 11:14:00 +0200466}
467
468static int fifo_push(struct fifo_buffer *fb, int value)
469{
470 int ov;
471
472 ov = fb->values[fb->head_index];
473 fb->values[fb->head_index++] = value;
474
475 if (fb->head_index >= fb->size)
476 fb->head_index = 0;
477
478 return ov;
479}
480
481static void fifo_add_val(struct fifo_buffer *fb, int value)
482{
483 int i;
484
485 for (i = 0; i < fb->size; i++)
486 fb->values[i] += value;
487}
488
Philipp Reisner9958c852011-05-03 16:19:31 +0200489struct fifo_buffer *fifo_alloc(int fifo_size)
490{
491 struct fifo_buffer *fb;
492
Lars Ellenberg8747d302012-09-26 14:22:40 +0200493 fb = kzalloc(sizeof(struct fifo_buffer) + sizeof(int) * fifo_size, GFP_NOIO);
Philipp Reisner9958c852011-05-03 16:19:31 +0200494 if (!fb)
495 return NULL;
496
497 fb->head_index = 0;
498 fb->size = fifo_size;
499 fb->total = 0;
500
501 return fb;
502}
503
Lars Ellenberg0e49d7b2014-04-28 18:43:18 +0200504static int drbd_rs_controller(struct drbd_device *device, unsigned int sect_in)
Philipp Reisner778f2712010-07-06 11:14:00 +0200505{
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200506 struct disk_conf *dc;
Lars Ellenberg7f34f612014-04-22 16:37:16 +0200507 unsigned int want; /* The number of sectors we want in-flight */
Philipp Reisner778f2712010-07-06 11:14:00 +0200508 int req_sect; /* Number of sectors to request in this turn */
Lars Ellenberg7f34f612014-04-22 16:37:16 +0200509 int correction; /* Number of sectors more we need in-flight */
Philipp Reisner778f2712010-07-06 11:14:00 +0200510 int cps; /* correction per invocation of drbd_rs_controller() */
511 int steps; /* Number of time steps to plan ahead */
512 int curr_corr;
513 int max_sect;
Philipp Reisner813472c2011-05-03 16:47:02 +0200514 struct fifo_buffer *plan;
Philipp Reisner778f2712010-07-06 11:14:00 +0200515
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200516 dc = rcu_dereference(device->ldev->disk_conf);
517 plan = rcu_dereference(device->rs_plan_s);
Philipp Reisner778f2712010-07-06 11:14:00 +0200518
Philipp Reisner813472c2011-05-03 16:47:02 +0200519 steps = plan->size; /* (dc->c_plan_ahead * 10 * SLEEP_TIME) / HZ; */
Philipp Reisner778f2712010-07-06 11:14:00 +0200520
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200521 if (device->rs_in_flight + sect_in == 0) { /* At start of resync */
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200522 want = ((dc->resync_rate * 2 * SLEEP_TIME) / HZ) * steps;
Philipp Reisner778f2712010-07-06 11:14:00 +0200523 } else { /* normal path */
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200524 want = dc->c_fill_target ? dc->c_fill_target :
525 sect_in * dc->c_delay_target * HZ / (SLEEP_TIME * 10);
Philipp Reisner778f2712010-07-06 11:14:00 +0200526 }
527
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200528 correction = want - device->rs_in_flight - plan->total;
Philipp Reisner778f2712010-07-06 11:14:00 +0200529
530 /* Plan ahead */
531 cps = correction / steps;
Philipp Reisner813472c2011-05-03 16:47:02 +0200532 fifo_add_val(plan, cps);
533 plan->total += cps * steps;
Philipp Reisner778f2712010-07-06 11:14:00 +0200534
535 /* What we do in this step */
Philipp Reisner813472c2011-05-03 16:47:02 +0200536 curr_corr = fifo_push(plan, 0);
537 plan->total -= curr_corr;
Philipp Reisner778f2712010-07-06 11:14:00 +0200538
539 req_sect = sect_in + curr_corr;
540 if (req_sect < 0)
541 req_sect = 0;
542
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200543 max_sect = (dc->c_max_rate * 2 * SLEEP_TIME) / HZ;
Philipp Reisner778f2712010-07-06 11:14:00 +0200544 if (req_sect > max_sect)
545 req_sect = max_sect;
546
547 /*
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200548 drbd_warn(device, "si=%u if=%d wa=%u co=%d st=%d cps=%d pl=%d cc=%d rs=%d\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200549 sect_in, device->rs_in_flight, want, correction,
550 steps, cps, device->rs_planed, curr_corr, req_sect);
Philipp Reisner778f2712010-07-06 11:14:00 +0200551 */
552
553 return req_sect;
554}
555
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200556static int drbd_rs_number_requests(struct drbd_device *device)
Lars Ellenberge65f4402010-11-05 10:04:07 +0100557{
Lars Ellenberg0e49d7b2014-04-28 18:43:18 +0200558 unsigned int sect_in; /* Number of sectors that came in since the last turn */
559 int number, mxb;
560
561 sect_in = atomic_xchg(&device->rs_sect_in, 0);
562 device->rs_in_flight -= sect_in;
Philipp Reisner813472c2011-05-03 16:47:02 +0200563
564 rcu_read_lock();
Lars Ellenberg0e49d7b2014-04-28 18:43:18 +0200565 mxb = drbd_get_max_buffers(device) / 2;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200566 if (rcu_dereference(device->rs_plan_s)->size) {
Lars Ellenberg0e49d7b2014-04-28 18:43:18 +0200567 number = drbd_rs_controller(device, sect_in) >> (BM_BLOCK_SHIFT - 9);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200568 device->c_sync_rate = number * HZ * (BM_BLOCK_SIZE / 1024) / SLEEP_TIME;
Lars Ellenberge65f4402010-11-05 10:04:07 +0100569 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200570 device->c_sync_rate = rcu_dereference(device->ldev->disk_conf)->resync_rate;
571 number = SLEEP_TIME * device->c_sync_rate / ((BM_BLOCK_SIZE / 1024) * HZ);
Lars Ellenberge65f4402010-11-05 10:04:07 +0100572 }
Philipp Reisner813472c2011-05-03 16:47:02 +0200573 rcu_read_unlock();
Lars Ellenberge65f4402010-11-05 10:04:07 +0100574
Lars Ellenberg0e49d7b2014-04-28 18:43:18 +0200575 /* Don't have more than "max-buffers"/2 in-flight.
576 * Otherwise we may cause the remote site to stall on drbd_alloc_pages(),
577 * potentially causing a distributed deadlock on congestion during
578 * online-verify or (checksum-based) resync, if max-buffers,
579 * socket buffer sizes and resync rate settings are mis-configured. */
Lars Ellenberg7f34f612014-04-22 16:37:16 +0200580
581 /* note that "number" is in units of "BM_BLOCK_SIZE" (which is 4k),
582 * mxb (as used here, and in drbd_alloc_pages on the peer) is
583 * "number of pages" (typically also 4k),
584 * but "rs_in_flight" is in "sectors" (512 Byte). */
585 if (mxb - device->rs_in_flight/8 < number)
586 number = mxb - device->rs_in_flight/8;
Lars Ellenberg0e49d7b2014-04-28 18:43:18 +0200587
Lars Ellenberge65f4402010-11-05 10:04:07 +0100588 return number;
589}
590
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100591static int make_resync_request(struct drbd_device *const device, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700592{
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100593 struct drbd_peer_device *const peer_device = first_peer_device(device);
594 struct drbd_connection *const connection = peer_device ? peer_device->connection : NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700595 unsigned long bit;
596 sector_t sector;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200597 const sector_t capacity = drbd_get_capacity(device->this_bdev);
Lars Ellenberg1816a2b2010-11-11 15:19:07 +0100598 int max_bio_size;
Lars Ellenberge65f4402010-11-05 10:04:07 +0100599 int number, rollback_i, size;
Lars Ellenberg506afb62014-01-31 14:55:12 +0100600 int align, requeue = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200601 int i = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700602
603 if (unlikely(cancel))
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100604 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700605
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200606 if (device->rs_total == 0) {
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +0200607 /* empty resync? */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200608 drbd_resync_finished(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100609 return 0;
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +0200610 }
611
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200612 if (!get_ldev(device)) {
613 /* Since we only need to access device->rsync a
614 get_ldev_if_state(device,D_FAILED) would be sufficient, but
Philipp Reisnerb411b362009-09-25 16:07:19 -0700615 to continue resync with a broken disk makes no sense at
616 all */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200617 drbd_err(device, "Disk broke down during resync!\n");
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100618 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700619 }
620
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200621 max_bio_size = queue_max_hw_sectors(device->rq_queue) << 9;
622 number = drbd_rs_number_requests(device);
Lars Ellenberg0e49d7b2014-04-28 18:43:18 +0200623 if (number <= 0)
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200624 goto requeue;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700625
Philipp Reisnerb411b362009-09-25 16:07:19 -0700626 for (i = 0; i < number; i++) {
Lars Ellenberg506afb62014-01-31 14:55:12 +0100627 /* Stop generating RS requests when half of the send buffer is filled,
628 * but notify TCP that we'd like to have more space. */
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100629 mutex_lock(&connection->data.mutex);
630 if (connection->data.socket) {
Lars Ellenberg506afb62014-01-31 14:55:12 +0100631 struct sock *sk = connection->data.socket->sk;
632 int queued = sk->sk_wmem_queued;
633 int sndbuf = sk->sk_sndbuf;
634 if (queued > sndbuf / 2) {
635 requeue = 1;
636 if (sk->sk_socket)
637 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
638 }
639 } else
640 requeue = 1;
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100641 mutex_unlock(&connection->data.mutex);
Lars Ellenberg506afb62014-01-31 14:55:12 +0100642 if (requeue)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700643 goto requeue;
644
645next_sector:
646 size = BM_BLOCK_SIZE;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200647 bit = drbd_bm_find_next(device, device->bm_resync_fo);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700648
Lars Ellenberg4b0715f2010-12-14 15:13:04 +0100649 if (bit == DRBD_END_OF_BITMAP) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200650 device->bm_resync_fo = drbd_bm_bits(device);
651 put_ldev(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100652 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700653 }
654
655 sector = BM_BIT_TO_SECT(bit);
656
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200657 if (drbd_rs_should_slow_down(device, sector) ||
658 drbd_try_rs_begin_io(device, sector)) {
659 device->bm_resync_fo = bit;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700660 goto requeue;
661 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200662 device->bm_resync_fo = bit + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700663
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200664 if (unlikely(drbd_bm_test_bit(device, bit) == 0)) {
665 drbd_rs_complete_io(device, sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700666 goto next_sector;
667 }
668
Lars Ellenberg1816a2b2010-11-11 15:19:07 +0100669#if DRBD_MAX_BIO_SIZE > BM_BLOCK_SIZE
Philipp Reisnerb411b362009-09-25 16:07:19 -0700670 /* try to find some adjacent bits.
671 * we stop if we have already the maximum req size.
672 *
673 * Additionally always align bigger requests, in order to
674 * be prepared for all stripe sizes of software RAIDs.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700675 */
676 align = 1;
Philipp Reisnerd2074502010-07-22 15:27:27 +0200677 rollback_i = i;
Lars Ellenberg6377b922014-04-28 18:43:17 +0200678 while (i < number) {
Lars Ellenberg1816a2b2010-11-11 15:19:07 +0100679 if (size + BM_BLOCK_SIZE > max_bio_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700680 break;
681
682 /* Be always aligned */
683 if (sector & ((1<<(align+3))-1))
684 break;
685
686 /* do not cross extent boundaries */
687 if (((bit+1) & BM_BLOCKS_PER_BM_EXT_MASK) == 0)
688 break;
689 /* now, is it actually dirty, after all?
690 * caution, drbd_bm_test_bit is tri-state for some
691 * obscure reason; ( b == 0 ) would get the out-of-band
692 * only accidentally right because of the "oddly sized"
693 * adjustment below */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200694 if (drbd_bm_test_bit(device, bit+1) != 1)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700695 break;
696 bit++;
697 size += BM_BLOCK_SIZE;
698 if ((BM_BLOCK_SIZE << align) <= size)
699 align++;
700 i++;
701 }
702 /* if we merged some,
703 * reset the offset to start the next drbd_bm_find_next from */
704 if (size > BM_BLOCK_SIZE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200705 device->bm_resync_fo = bit + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700706#endif
707
708 /* adjust very last sectors, in case we are oddly sized */
709 if (sector + (size>>9) > capacity)
710 size = (capacity-sector)<<9;
Lars Ellenbergaaaba342014-03-18 12:30:09 +0100711
712 if (device->use_csums) {
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100713 switch (read_for_csum(peer_device, sector, size)) {
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200714 case -EIO: /* Disk failure */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200715 put_ldev(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100716 return -EIO;
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200717 case -EAGAIN: /* allocation failed, or ldev busy */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200718 drbd_rs_complete_io(device, sector);
719 device->bm_resync_fo = BM_SECT_TO_BIT(sector);
Philipp Reisnerd2074502010-07-22 15:27:27 +0200720 i = rollback_i;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700721 goto requeue;
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200722 case 0:
723 /* everything ok */
724 break;
725 default:
726 BUG();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700727 }
728 } else {
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100729 int err;
730
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200731 inc_rs_pending(device);
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100732 err = drbd_send_drequest(peer_device, P_RS_DATA_REQUEST,
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100733 sector, size, ID_SYNCER);
734 if (err) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200735 drbd_err(device, "drbd_send_drequest() failed, aborting...\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200736 dec_rs_pending(device);
737 put_ldev(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100738 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700739 }
740 }
741 }
742
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200743 if (device->bm_resync_fo >= drbd_bm_bits(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700744 /* last syncer _request_ was sent,
745 * but the P_RS_DATA_REPLY not yet received. sync will end (and
746 * next sync group will resume), as soon as we receive the last
747 * resync data block, and the last bit is cleared.
748 * until then resync "work" is "inactive" ...
749 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200750 put_ldev(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100751 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700752 }
753
754 requeue:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200755 device->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9));
756 mod_timer(&device->resync_timer, jiffies + SLEEP_TIME);
757 put_ldev(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100758 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700759}
760
Andreas Gruenbacherd448a2e2011-08-25 16:59:58 +0200761static int make_ov_request(struct drbd_device *device, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700762{
763 int number, i, size;
764 sector_t sector;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200765 const sector_t capacity = drbd_get_capacity(device->this_bdev);
Lars Ellenberg58ffa582012-07-26 14:09:49 +0200766 bool stop_sector_reached = false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700767
768 if (unlikely(cancel))
769 return 1;
770
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200771 number = drbd_rs_number_requests(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700772
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200773 sector = device->ov_position;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700774 for (i = 0; i < number; i++) {
Lars Ellenberg58ffa582012-07-26 14:09:49 +0200775 if (sector >= capacity)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700776 return 1;
Lars Ellenberg58ffa582012-07-26 14:09:49 +0200777
778 /* We check for "finished" only in the reply path:
779 * w_e_end_ov_reply().
780 * We need to send at least one request out. */
781 stop_sector_reached = i > 0
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200782 && verify_can_do_stop_sector(device)
783 && sector >= device->ov_stop_sector;
Lars Ellenberg58ffa582012-07-26 14:09:49 +0200784 if (stop_sector_reached)
785 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700786
787 size = BM_BLOCK_SIZE;
788
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200789 if (drbd_rs_should_slow_down(device, sector) ||
790 drbd_try_rs_begin_io(device, sector)) {
791 device->ov_position = sector;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700792 goto requeue;
793 }
794
795 if (sector + (size>>9) > capacity)
796 size = (capacity-sector)<<9;
797
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200798 inc_rs_pending(device);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200799 if (drbd_send_ov_request(first_peer_device(device), sector, size)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200800 dec_rs_pending(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700801 return 0;
802 }
803 sector += BM_SECT_PER_BIT;
804 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200805 device->ov_position = sector;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700806
807 requeue:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200808 device->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9));
Lars Ellenberg58ffa582012-07-26 14:09:49 +0200809 if (i == 0 || !stop_sector_reached)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200810 mod_timer(&device->resync_timer, jiffies + SLEEP_TIME);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700811 return 1;
812}
813
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100814int w_ov_finished(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700815{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200816 struct drbd_device_work *dw =
817 container_of(w, struct drbd_device_work, w);
818 struct drbd_device *device = dw->device;
819 kfree(dw);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200820 ov_out_of_sync_print(device);
821 drbd_resync_finished(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700822
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100823 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700824}
825
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100826static int w_resync_finished(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700827{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200828 struct drbd_device_work *dw =
829 container_of(w, struct drbd_device_work, w);
830 struct drbd_device *device = dw->device;
831 kfree(dw);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700832
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200833 drbd_resync_finished(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700834
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +0100835 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700836}
837
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200838static void ping_peer(struct drbd_device *device)
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +0200839{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200840 struct drbd_connection *connection = first_peer_device(device)->connection;
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100841
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200842 clear_bit(GOT_PING_ACK, &connection->flags);
843 request_ping(connection);
844 wait_event(connection->ping_wait,
845 test_bit(GOT_PING_ACK, &connection->flags) || device->state.conn < C_CONNECTED);
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +0200846}
847
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200848int drbd_resync_finished(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700849{
850 unsigned long db, dt, dbdt;
851 unsigned long n_oos;
852 union drbd_state os, ns;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200853 struct drbd_device_work *dw;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700854 char *khelper_cmd = NULL;
Lars Ellenberg26525612010-11-05 09:56:33 +0100855 int verify_done = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700856
857 /* Remove all elements from the resync LRU. Since future actions
858 * might set bits in the (main) bitmap, then the entries in the
859 * resync LRU would be wrong. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200860 if (drbd_rs_del_all(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700861 /* In case this is not possible now, most probably because
862 * there are P_RS_DATA_REPLY Packets lingering on the worker's
863 * queue (or even the read operations for those packets
864 * is not finished by now). Retry in 100ms. */
865
Philipp Reisner20ee6392011-01-18 15:28:59 +0100866 schedule_timeout_interruptible(HZ / 10);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200867 dw = kmalloc(sizeof(struct drbd_device_work), GFP_ATOMIC);
868 if (dw) {
869 dw->w.cb = w_resync_finished;
870 dw->device = device;
871 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
872 &dw->w);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700873 return 1;
874 }
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200875 drbd_err(device, "Warn failed to drbd_rs_del_all() and to kmalloc(dw).\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700876 }
877
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200878 dt = (jiffies - device->rs_start - device->rs_paused) / HZ;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700879 if (dt <= 0)
880 dt = 1;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200881
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200882 db = device->rs_total;
Lars Ellenberg58ffa582012-07-26 14:09:49 +0200883 /* adjust for verify start and stop sectors, respective reached position */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200884 if (device->state.conn == C_VERIFY_S || device->state.conn == C_VERIFY_T)
885 db -= device->ov_left;
Lars Ellenberg58ffa582012-07-26 14:09:49 +0200886
Philipp Reisnerb411b362009-09-25 16:07:19 -0700887 dbdt = Bit2KB(db/dt);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200888 device->rs_paused /= HZ;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700889
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200890 if (!get_ldev(device))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700891 goto out;
892
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200893 ping_peer(device);
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +0200894
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200895 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200896 os = drbd_read_state(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700897
Lars Ellenberg26525612010-11-05 09:56:33 +0100898 verify_done = (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T);
899
Philipp Reisnerb411b362009-09-25 16:07:19 -0700900 /* This protects us against multiple calls (that can happen in the presence
901 of application IO), and against connectivity loss just before we arrive here. */
902 if (os.conn <= C_CONNECTED)
903 goto out_unlock;
904
905 ns = os;
906 ns.conn = C_CONNECTED;
907
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200908 drbd_info(device, "%s done (total %lu sec; paused %lu sec; %lu K/sec)\n",
Lars Ellenberg58ffa582012-07-26 14:09:49 +0200909 verify_done ? "Online verify" : "Resync",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200910 dt + device->rs_paused, device->rs_paused, dbdt);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700911
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200912 n_oos = drbd_bm_total_weight(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700913
914 if (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T) {
915 if (n_oos) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200916 drbd_alert(device, "Online verify found %lu %dk block out of sync!\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -0700917 n_oos, Bit2KB(1));
918 khelper_cmd = "out-of-sync";
919 }
920 } else {
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200921 D_ASSERT(device, (n_oos - device->rs_failed) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700922
923 if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T)
924 khelper_cmd = "after-resync-target";
925
Lars Ellenbergaaaba342014-03-18 12:30:09 +0100926 if (device->use_csums && device->rs_total) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200927 const unsigned long s = device->rs_same_csum;
928 const unsigned long t = device->rs_total;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700929 const int ratio =
930 (t == 0) ? 0 :
931 (t < 100000) ? ((s*100)/t) : (s/(t/100));
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200932 drbd_info(device, "%u %% had equal checksums, eliminated: %luK; "
Philipp Reisnerb411b362009-09-25 16:07:19 -0700933 "transferred %luK total %luK\n",
934 ratio,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200935 Bit2KB(device->rs_same_csum),
936 Bit2KB(device->rs_total - device->rs_same_csum),
937 Bit2KB(device->rs_total));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700938 }
939 }
940
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200941 if (device->rs_failed) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200942 drbd_info(device, " %lu failed blocks\n", device->rs_failed);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700943
944 if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) {
945 ns.disk = D_INCONSISTENT;
946 ns.pdsk = D_UP_TO_DATE;
947 } else {
948 ns.disk = D_UP_TO_DATE;
949 ns.pdsk = D_INCONSISTENT;
950 }
951 } else {
952 ns.disk = D_UP_TO_DATE;
953 ns.pdsk = D_UP_TO_DATE;
954
955 if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200956 if (device->p_uuid) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700957 int i;
958 for (i = UI_BITMAP ; i <= UI_HISTORY_END ; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200959 _drbd_uuid_set(device, i, device->p_uuid[i]);
960 drbd_uuid_set(device, UI_BITMAP, device->ldev->md.uuid[UI_CURRENT]);
961 _drbd_uuid_set(device, UI_CURRENT, device->p_uuid[UI_CURRENT]);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700962 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200963 drbd_err(device, "device->p_uuid is NULL! BUG\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700964 }
965 }
966
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100967 if (!(os.conn == C_VERIFY_S || os.conn == C_VERIFY_T)) {
968 /* for verify runs, we don't update uuids here,
969 * so there would be nothing to report. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200970 drbd_uuid_set_bm(device, 0UL);
971 drbd_print_uuids(device, "updated UUIDs");
972 if (device->p_uuid) {
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100973 /* Now the two UUID sets are equal, update what we
974 * know of the peer. */
975 int i;
976 for (i = UI_CURRENT ; i <= UI_HISTORY_END ; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200977 device->p_uuid[i] = device->ldev->md.uuid[i];
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100978 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700979 }
980 }
981
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200982 _drbd_set_state(device, ns, CS_VERBOSE, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700983out_unlock:
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200984 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200985 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700986out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200987 device->rs_total = 0;
988 device->rs_failed = 0;
989 device->rs_paused = 0;
Lars Ellenberg58ffa582012-07-26 14:09:49 +0200990
991 /* reset start sector, if we reached end of device */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200992 if (verify_done && device->ov_left == 0)
993 device->ov_start_sector = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700994
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200995 drbd_md_sync(device);
Lars Ellenberg13d42682010-10-13 17:37:54 +0200996
Philipp Reisnerb411b362009-09-25 16:07:19 -0700997 if (khelper_cmd)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200998 drbd_khelper(device, khelper_cmd);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700999
1000 return 1;
1001}
1002
1003/* helper */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001004static void move_to_net_ee_or_free(struct drbd_device *device, struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001005{
Andreas Gruenbacher045417f2011-04-07 21:34:24 +02001006 if (drbd_peer_req_has_active_page(peer_req)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001007 /* This might happen if sendpage() has not finished */
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001008 int i = (peer_req->i.size + PAGE_SIZE -1) >> PAGE_SHIFT;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001009 atomic_add(i, &device->pp_in_use_by_net);
1010 atomic_sub(i, &device->pp_in_use);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001011 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +02001012 list_add_tail(&peer_req->w.list, &device->net_ee);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001013 spin_unlock_irq(&device->resource->req_lock);
Lars Ellenberg435f0742010-09-06 12:30:25 +02001014 wake_up(&drbd_pp_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001015 } else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001016 drbd_free_peer_req(device, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001017}
1018
1019/**
1020 * w_e_end_data_req() - Worker callback, to send a P_DATA_REPLY packet in response to a P_DATA_REQUEST
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001021 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001022 * @w: work object.
1023 * @cancel: The connection will be closed anyways
1024 */
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001025int w_e_end_data_req(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001026{
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +02001027 struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001028 struct drbd_peer_device *peer_device = peer_req->peer_device;
1029 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001030 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001031
1032 if (unlikely(cancel)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001033 drbd_free_peer_req(device, peer_req);
1034 dec_unacked(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001035 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001036 }
1037
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001038 if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001039 err = drbd_send_block(peer_device, P_DATA_REPLY, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001040 } else {
1041 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001042 drbd_err(device, "Sending NegDReply. sector=%llus.\n",
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001043 (unsigned long long)peer_req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001044
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001045 err = drbd_send_ack(peer_device, P_NEG_DREPLY, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001046 }
1047
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001048 dec_unacked(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001049
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001050 move_to_net_ee_or_free(device, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001051
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001052 if (unlikely(err))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001053 drbd_err(device, "drbd_send_block() failed\n");
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001054 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001055}
1056
1057/**
Andreas Gruenbachera209b4a2011-08-17 12:43:25 +02001058 * w_e_end_rsdata_req() - Worker callback to send a P_RS_DATA_REPLY packet in response to a P_RS_DATA_REQUEST
Philipp Reisnerb411b362009-09-25 16:07:19 -07001059 * @w: work object.
1060 * @cancel: The connection will be closed anyways
1061 */
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001062int w_e_end_rsdata_req(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001063{
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +02001064 struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001065 struct drbd_peer_device *peer_device = peer_req->peer_device;
1066 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001067 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001068
1069 if (unlikely(cancel)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001070 drbd_free_peer_req(device, peer_req);
1071 dec_unacked(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001072 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001073 }
1074
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001075 if (get_ldev_if_state(device, D_FAILED)) {
1076 drbd_rs_complete_io(device, peer_req->i.sector);
1077 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001078 }
1079
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001080 if (device->state.conn == C_AHEAD) {
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001081 err = drbd_send_ack(peer_device, P_RS_CANCEL, peer_req);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001082 } else if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001083 if (likely(device->state.pdsk >= D_INCONSISTENT)) {
1084 inc_rs_pending(device);
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001085 err = drbd_send_block(peer_device, P_RS_DATA_REPLY, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001086 } else {
1087 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001088 drbd_err(device, "Not sending RSDataReply, "
Philipp Reisnerb411b362009-09-25 16:07:19 -07001089 "partner DISKLESS!\n");
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001090 err = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001091 }
1092 } else {
1093 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001094 drbd_err(device, "Sending NegRSDReply. sector %llus.\n",
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001095 (unsigned long long)peer_req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001096
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001097 err = drbd_send_ack(peer_device, P_NEG_RS_DREPLY, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001098
1099 /* update resync data with failure */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001100 drbd_rs_failed_io(device, peer_req->i.sector, peer_req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001101 }
1102
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001103 dec_unacked(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001104
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001105 move_to_net_ee_or_free(device, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001106
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001107 if (unlikely(err))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001108 drbd_err(device, "drbd_send_block() failed\n");
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001109 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001110}
1111
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001112int w_e_end_csum_rs_req(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001113{
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +02001114 struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001115 struct drbd_peer_device *peer_device = peer_req->peer_device;
1116 struct drbd_device *device = peer_device->device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001117 struct digest_info *di;
1118 int digest_size;
1119 void *digest = NULL;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001120 int err, eq = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001121
1122 if (unlikely(cancel)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001123 drbd_free_peer_req(device, peer_req);
1124 dec_unacked(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001125 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001126 }
1127
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001128 if (get_ldev(device)) {
1129 drbd_rs_complete_io(device, peer_req->i.sector);
1130 put_ldev(device);
Lars Ellenberg1d53f092010-09-05 01:13:24 +02001131 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001132
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001133 di = peer_req->digest;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001134
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001135 if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001136 /* quick hack to try to avoid a race against reconfiguration.
1137 * a real fix would be much more involved,
1138 * introducing more locking mechanisms */
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001139 if (peer_device->connection->csums_tfm) {
1140 digest_size = crypto_hash_digestsize(peer_device->connection->csums_tfm);
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001141 D_ASSERT(device, digest_size == di->digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001142 digest = kmalloc(digest_size, GFP_NOIO);
1143 }
1144 if (digest) {
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001145 drbd_csum_ee(peer_device->connection->csums_tfm, peer_req, digest);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001146 eq = !memcmp(digest, di->digest, digest_size);
1147 kfree(digest);
1148 }
1149
1150 if (eq) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001151 drbd_set_in_sync(device, peer_req->i.sector, peer_req->i.size);
Lars Ellenberg676396d2010-03-03 02:08:22 +01001152 /* rs_same_csums unit is BM_BLOCK_SIZE */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001153 device->rs_same_csum += peer_req->i.size >> BM_BLOCK_SHIFT;
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001154 err = drbd_send_ack(peer_device, P_RS_IS_IN_SYNC, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001155 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001156 inc_rs_pending(device);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001157 peer_req->block_id = ID_SYNCER; /* By setting block_id, digest pointer becomes invalid! */
1158 peer_req->flags &= ~EE_HAS_DIGEST; /* This peer request no longer has a digest pointer */
Philipp Reisner204bba92010-08-23 16:17:13 +02001159 kfree(di);
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001160 err = drbd_send_block(peer_device, P_RS_DATA_REPLY, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001161 }
1162 } else {
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001163 err = drbd_send_ack(peer_device, P_NEG_RS_DREPLY, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001164 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001165 drbd_err(device, "Sending NegDReply. I guess it gets messy.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001166 }
1167
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001168 dec_unacked(device);
1169 move_to_net_ee_or_free(device, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001170
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001171 if (unlikely(err))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001172 drbd_err(device, "drbd_send_block/ack() failed\n");
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001173 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001174}
1175
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001176int w_e_end_ov_req(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001177{
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +02001178 struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001179 struct drbd_peer_device *peer_device = peer_req->peer_device;
1180 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001181 sector_t sector = peer_req->i.sector;
1182 unsigned int size = peer_req->i.size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001183 int digest_size;
1184 void *digest;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001185 int err = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001186
1187 if (unlikely(cancel))
1188 goto out;
1189
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001190 digest_size = crypto_hash_digestsize(peer_device->connection->verify_tfm);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001191 digest = kmalloc(digest_size, GFP_NOIO);
Philipp Reisner8f214202011-03-01 15:52:35 +01001192 if (!digest) {
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001193 err = 1; /* terminate the connection in case the allocation failed */
Philipp Reisner8f214202011-03-01 15:52:35 +01001194 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001195 }
1196
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001197 if (likely(!(peer_req->flags & EE_WAS_ERROR)))
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001198 drbd_csum_ee(peer_device->connection->verify_tfm, peer_req, digest);
Philipp Reisner8f214202011-03-01 15:52:35 +01001199 else
1200 memset(digest, 0, digest_size);
1201
Lars Ellenberg53ea4332011-03-08 17:11:40 +01001202 /* Free e and pages before send.
1203 * In case we block on congestion, we could otherwise run into
1204 * some distributed deadlock, if the other side blocks on
1205 * congestion as well, because our receiver blocks in
Andreas Gruenbacherc37c8ec2011-04-07 21:02:09 +02001206 * drbd_alloc_pages due to pp_in_use > max_buffers. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001207 drbd_free_peer_req(device, peer_req);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001208 peer_req = NULL;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001209 inc_rs_pending(device);
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001210 err = drbd_send_drequest_csum(peer_device, sector, size, digest, digest_size, P_OV_REPLY);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001211 if (err)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001212 dec_rs_pending(device);
Philipp Reisner8f214202011-03-01 15:52:35 +01001213 kfree(digest);
1214
Philipp Reisnerb411b362009-09-25 16:07:19 -07001215out:
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001216 if (peer_req)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001217 drbd_free_peer_req(device, peer_req);
1218 dec_unacked(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001219 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001220}
1221
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001222void drbd_ov_out_of_sync_found(struct drbd_device *device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001223{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001224 if (device->ov_last_oos_start + device->ov_last_oos_size == sector) {
1225 device->ov_last_oos_size += size>>9;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001226 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001227 device->ov_last_oos_start = sector;
1228 device->ov_last_oos_size = size>>9;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001229 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001230 drbd_set_out_of_sync(device, sector, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001231}
1232
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001233int w_e_end_ov_reply(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001234{
Andreas Gruenbachera8cd15b2011-08-25 15:49:40 +02001235 struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001236 struct drbd_peer_device *peer_device = peer_req->peer_device;
1237 struct drbd_device *device = peer_device->device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001238 struct digest_info *di;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001239 void *digest;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001240 sector_t sector = peer_req->i.sector;
1241 unsigned int size = peer_req->i.size;
Lars Ellenberg53ea4332011-03-08 17:11:40 +01001242 int digest_size;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001243 int err, eq = 0;
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001244 bool stop_sector_reached = false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001245
1246 if (unlikely(cancel)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001247 drbd_free_peer_req(device, peer_req);
1248 dec_unacked(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001249 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001250 }
1251
1252 /* after "cancel", because after drbd_disconnect/drbd_rs_cancel_all
1253 * the resync lru has been cleaned up already */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001254 if (get_ldev(device)) {
1255 drbd_rs_complete_io(device, peer_req->i.sector);
1256 put_ldev(device);
Lars Ellenberg1d53f092010-09-05 01:13:24 +02001257 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001258
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001259 di = peer_req->digest;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001260
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001261 if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001262 digest_size = crypto_hash_digestsize(peer_device->connection->verify_tfm);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001263 digest = kmalloc(digest_size, GFP_NOIO);
1264 if (digest) {
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001265 drbd_csum_ee(peer_device->connection->verify_tfm, peer_req, digest);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001266
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001267 D_ASSERT(device, digest_size == di->digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001268 eq = !memcmp(digest, di->digest, digest_size);
1269 kfree(digest);
1270 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001271 }
1272
Lars Ellenberg9676c762011-02-22 14:02:31 +01001273 /* Free peer_req and pages before send.
1274 * In case we block on congestion, we could otherwise run into
1275 * some distributed deadlock, if the other side blocks on
1276 * congestion as well, because our receiver blocks in
Andreas Gruenbacherc37c8ec2011-04-07 21:02:09 +02001277 * drbd_alloc_pages due to pp_in_use > max_buffers. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001278 drbd_free_peer_req(device, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001279 if (!eq)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001280 drbd_ov_out_of_sync_found(device, sector, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001281 else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001282 ov_out_of_sync_print(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001283
Andreas Gruenbacher67801392011-09-13 10:39:41 +02001284 err = drbd_send_ack_ex(peer_device, P_OV_RESULT, sector, size,
Andreas Gruenbacherfa79abd2011-03-16 01:31:39 +01001285 eq ? ID_IN_SYNC : ID_OUT_OF_SYNC);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001286
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001287 dec_unacked(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001288
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001289 --device->ov_left;
Lars Ellenbergea5442a2010-11-05 09:48:01 +01001290
1291 /* let's advance progress step marks only for every other megabyte */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001292 if ((device->ov_left & 0x200) == 0x200)
1293 drbd_advance_rs_marks(device, device->ov_left);
Lars Ellenbergea5442a2010-11-05 09:48:01 +01001294
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001295 stop_sector_reached = verify_can_do_stop_sector(device) &&
1296 (sector + (size>>9)) >= device->ov_stop_sector;
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001297
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001298 if (device->ov_left == 0 || stop_sector_reached) {
1299 ov_out_of_sync_print(device);
1300 drbd_resync_finished(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001301 }
1302
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001303 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001304}
1305
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001306/* FIXME
1307 * We need to track the number of pending barrier acks,
1308 * and to be able to wait for them.
1309 * See also comment in drbd_adm_attach before drbd_suspend_io.
1310 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001311static int drbd_send_barrier(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001312{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001313 struct p_barrier *p;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001314 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001315
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001316 sock = &connection->data;
1317 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001318 if (!p)
1319 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001320 p->barrier = connection->send.current_epoch_nr;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001321 p->pad = 0;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001322 connection->send.current_epoch_writes = 0;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001323
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001324 return conn_send_command(connection, sock, P_BARRIER, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001325}
1326
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001327int w_send_write_hint(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001328{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001329 struct drbd_device *device =
1330 container_of(w, struct drbd_device, unplug_work);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001331 struct drbd_socket *sock;
1332
Philipp Reisnerb411b362009-09-25 16:07:19 -07001333 if (cancel)
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001334 return 0;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001335 sock = &first_peer_device(device)->connection->data;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001336 if (!drbd_prepare_command(first_peer_device(device), sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001337 return -EIO;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001338 return drbd_send_command(first_peer_device(device), sock, P_UNPLUG_REMOTE, 0, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001339}
1340
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001341static void re_init_if_first_write(struct drbd_connection *connection, unsigned int epoch)
Lars Ellenberg4eb9b3c2012-08-20 11:05:23 +02001342{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001343 if (!connection->send.seen_any_write_yet) {
1344 connection->send.seen_any_write_yet = true;
1345 connection->send.current_epoch_nr = epoch;
1346 connection->send.current_epoch_writes = 0;
Lars Ellenberg4eb9b3c2012-08-20 11:05:23 +02001347 }
1348}
1349
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001350static void maybe_send_barrier(struct drbd_connection *connection, unsigned int epoch)
Lars Ellenberg4eb9b3c2012-08-20 11:05:23 +02001351{
1352 /* re-init if first write on this connection */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001353 if (!connection->send.seen_any_write_yet)
Lars Ellenberg4eb9b3c2012-08-20 11:05:23 +02001354 return;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001355 if (connection->send.current_epoch_nr != epoch) {
1356 if (connection->send.current_epoch_writes)
1357 drbd_send_barrier(connection);
1358 connection->send.current_epoch_nr = epoch;
Lars Ellenberg4eb9b3c2012-08-20 11:05:23 +02001359 }
1360}
1361
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +01001362int w_send_out_of_sync(struct drbd_work *w, int cancel)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001363{
1364 struct drbd_request *req = container_of(w, struct drbd_request, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001365 struct drbd_device *device = req->device;
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001366 struct drbd_peer_device *const peer_device = first_peer_device(device);
1367 struct drbd_connection *const connection = peer_device->connection;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001368 int err;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001369
1370 if (unlikely(cancel)) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +01001371 req_mod(req, SEND_CANCELED);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001372 return 0;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001373 }
1374
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001375 /* this time, no connection->send.current_epoch_writes++;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001376 * If it was sent, it was the closing barrier for the last
1377 * replicated epoch, before we went into AHEAD mode.
1378 * No more barriers will be sent, until we leave AHEAD mode again. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001379 maybe_send_barrier(connection, req->epoch);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001380
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001381 err = drbd_send_out_of_sync(peer_device, req);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +01001382 req_mod(req, OOS_HANDED_TO_NETWORK);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001383
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001384 return err;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001385}
1386
Philipp Reisnerb411b362009-09-25 16:07:19 -07001387/**
1388 * w_send_dblock() - Worker callback to send a P_DATA packet in order to mirror a write request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001389 * @w: work object.
1390 * @cancel: The connection will be closed anyways
1391 */
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001392int w_send_dblock(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001393{
1394 struct drbd_request *req = container_of(w, struct drbd_request, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001395 struct drbd_device *device = req->device;
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001396 struct drbd_peer_device *const peer_device = first_peer_device(device);
1397 struct drbd_connection *connection = peer_device->connection;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001398 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001399
1400 if (unlikely(cancel)) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +01001401 req_mod(req, SEND_CANCELED);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001402 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001403 }
1404
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001405 re_init_if_first_write(connection, req->epoch);
1406 maybe_send_barrier(connection, req->epoch);
1407 connection->send.current_epoch_writes++;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001408
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001409 err = drbd_send_dblock(peer_device, req);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001410 req_mod(req, err ? SEND_FAILED : HANDED_OVER_TO_NETWORK);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001411
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001412 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001413}
1414
1415/**
1416 * w_send_read_req() - Worker callback to send a read request (P_DATA_REQUEST) packet
Philipp Reisnerb411b362009-09-25 16:07:19 -07001417 * @w: work object.
1418 * @cancel: The connection will be closed anyways
1419 */
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001420int w_send_read_req(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001421{
1422 struct drbd_request *req = container_of(w, struct drbd_request, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001423 struct drbd_device *device = req->device;
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001424 struct drbd_peer_device *const peer_device = first_peer_device(device);
1425 struct drbd_connection *connection = peer_device->connection;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001426 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001427
1428 if (unlikely(cancel)) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +01001429 req_mod(req, SEND_CANCELED);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001430 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001431 }
1432
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001433 /* Even read requests may close a write epoch,
1434 * if there was any yet. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001435 maybe_send_barrier(connection, req->epoch);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001436
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001437 err = drbd_send_drequest(peer_device, P_DATA_REQUEST, req->i.sector, req->i.size,
Andreas Gruenbacher6c1005e2011-03-16 01:34:24 +01001438 (unsigned long)req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001439
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001440 req_mod(req, err ? SEND_FAILED : HANDED_OVER_TO_NETWORK);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001441
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001442 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001443}
1444
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001445int w_restart_disk_io(struct drbd_work *w, int cancel)
Philipp Reisner265be2d2010-05-31 10:14:17 +02001446{
1447 struct drbd_request *req = container_of(w, struct drbd_request, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001448 struct drbd_device *device = req->device;
Philipp Reisner265be2d2010-05-31 10:14:17 +02001449
Philipp Reisner07782862010-08-31 12:00:50 +02001450 if (bio_data_dir(req->master_bio) == WRITE && req->rq_state & RQ_IN_ACT_LOG)
Lars Ellenberg4dd726f2014-02-11 11:15:36 +01001451 drbd_al_begin_io(device, &req->i);
Philipp Reisner265be2d2010-05-31 10:14:17 +02001452
1453 drbd_req_make_private_bio(req, req->master_bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001454 req->private_bio->bi_bdev = device->ldev->backing_bdev;
Philipp Reisner265be2d2010-05-31 10:14:17 +02001455 generic_make_request(req->private_bio);
1456
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001457 return 0;
Philipp Reisner265be2d2010-05-31 10:14:17 +02001458}
1459
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001460static int _drbd_may_sync_now(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001461{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001462 struct drbd_device *odev = device;
Andreas Gruenbacher95f8efd2011-05-12 11:15:34 +02001463 int resync_after;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001464
1465 while (1) {
Lars Ellenberga3f8f7d2013-03-27 14:08:43 +01001466 if (!odev->ldev || odev->state.disk == D_DISKLESS)
Philipp Reisner438c8372011-03-28 14:48:01 +02001467 return 1;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001468 rcu_read_lock();
Andreas Gruenbacher95f8efd2011-05-12 11:15:34 +02001469 resync_after = rcu_dereference(odev->ldev->disk_conf)->resync_after;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001470 rcu_read_unlock();
Andreas Gruenbacher95f8efd2011-05-12 11:15:34 +02001471 if (resync_after == -1)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001472 return 1;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001473 odev = minor_to_device(resync_after);
Lars Ellenberga3f8f7d2013-03-27 14:08:43 +01001474 if (!odev)
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001475 return 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001476 if ((odev->state.conn >= C_SYNC_SOURCE &&
1477 odev->state.conn <= C_PAUSED_SYNC_T) ||
1478 odev->state.aftr_isp || odev->state.peer_isp ||
1479 odev->state.user_isp)
1480 return 0;
1481 }
1482}
1483
1484/**
1485 * _drbd_pause_after() - Pause resync on all devices that may not resync now
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001486 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001487 *
1488 * Called from process context only (admin command and after_state_ch).
1489 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001490static int _drbd_pause_after(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001491{
Andreas Gruenbacher54761692011-05-30 16:15:21 +02001492 struct drbd_device *odev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001493 int i, rv = 0;
1494
Philipp Reisner695d08f2011-04-11 22:53:32 -07001495 rcu_read_lock();
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02001496 idr_for_each_entry(&drbd_devices, odev, i) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001497 if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS)
1498 continue;
1499 if (!_drbd_may_sync_now(odev))
1500 rv |= (__drbd_set_state(_NS(odev, aftr_isp, 1), CS_HARD, NULL)
1501 != SS_NOTHING_TO_DO);
1502 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001503 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001504
1505 return rv;
1506}
1507
1508/**
1509 * _drbd_resume_next() - Resume resync on all devices that may resync now
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001510 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001511 *
1512 * Called from process context only (admin command and worker).
1513 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001514static int _drbd_resume_next(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001515{
Andreas Gruenbacher54761692011-05-30 16:15:21 +02001516 struct drbd_device *odev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001517 int i, rv = 0;
1518
Philipp Reisner695d08f2011-04-11 22:53:32 -07001519 rcu_read_lock();
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02001520 idr_for_each_entry(&drbd_devices, odev, i) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001521 if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS)
1522 continue;
1523 if (odev->state.aftr_isp) {
1524 if (_drbd_may_sync_now(odev))
1525 rv |= (__drbd_set_state(_NS(odev, aftr_isp, 0),
1526 CS_HARD, NULL)
1527 != SS_NOTHING_TO_DO) ;
1528 }
1529 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001530 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001531 return rv;
1532}
1533
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001534void resume_next_sg(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001535{
1536 write_lock_irq(&global_state_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001537 _drbd_resume_next(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001538 write_unlock_irq(&global_state_lock);
1539}
1540
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001541void suspend_other_sg(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001542{
1543 write_lock_irq(&global_state_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001544 _drbd_pause_after(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001545 write_unlock_irq(&global_state_lock);
1546}
1547
Philipp Reisnerdc97b702011-05-03 14:27:15 +02001548/* caller must hold global_state_lock */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001549enum drbd_ret_code drbd_resync_after_valid(struct drbd_device *device, int o_minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001550{
Andreas Gruenbacher54761692011-05-30 16:15:21 +02001551 struct drbd_device *odev;
Andreas Gruenbacher95f8efd2011-05-12 11:15:34 +02001552 int resync_after;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001553
1554 if (o_minor == -1)
1555 return NO_ERROR;
Lars Ellenberga3f8f7d2013-03-27 14:08:43 +01001556 if (o_minor < -1 || o_minor > MINORMASK)
Andreas Gruenbacher95f8efd2011-05-12 11:15:34 +02001557 return ERR_RESYNC_AFTER;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001558
1559 /* check for loops */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001560 odev = minor_to_device(o_minor);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001561 while (1) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001562 if (odev == device)
Andreas Gruenbacher95f8efd2011-05-12 11:15:34 +02001563 return ERR_RESYNC_AFTER_CYCLE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001564
Lars Ellenberga3f8f7d2013-03-27 14:08:43 +01001565 /* You are free to depend on diskless, non-existing,
1566 * or not yet/no longer existing minors.
1567 * We only reject dependency loops.
1568 * We cannot follow the dependency chain beyond a detached or
1569 * missing minor.
1570 */
1571 if (!odev || !odev->ldev || odev->state.disk == D_DISKLESS)
1572 return NO_ERROR;
1573
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001574 rcu_read_lock();
Andreas Gruenbacher95f8efd2011-05-12 11:15:34 +02001575 resync_after = rcu_dereference(odev->ldev->disk_conf)->resync_after;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001576 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001577 /* dependency chain ends here, no cycles. */
Andreas Gruenbacher95f8efd2011-05-12 11:15:34 +02001578 if (resync_after == -1)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001579 return NO_ERROR;
1580
1581 /* follow the dependency chain */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001582 odev = minor_to_device(resync_after);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001583 }
1584}
1585
Philipp Reisnerdc97b702011-05-03 14:27:15 +02001586/* caller must hold global_state_lock */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001587void drbd_resync_after_changed(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001588{
1589 int changes;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001590
Philipp Reisnerdc97b702011-05-03 14:27:15 +02001591 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001592 changes = _drbd_pause_after(device);
1593 changes |= _drbd_resume_next(device);
Philipp Reisnerdc97b702011-05-03 14:27:15 +02001594 } while (changes);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001595}
1596
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001597void drbd_rs_controller_reset(struct drbd_device *device)
Lars Ellenberg9bd28d32010-11-05 09:55:18 +01001598{
Philipp Reisner813472c2011-05-03 16:47:02 +02001599 struct fifo_buffer *plan;
1600
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001601 atomic_set(&device->rs_sect_in, 0);
1602 atomic_set(&device->rs_sect_ev, 0);
1603 device->rs_in_flight = 0;
Philipp Reisner813472c2011-05-03 16:47:02 +02001604
1605 /* Updating the RCU protected object in place is necessary since
1606 this function gets called from atomic context.
1607 It is valid since all other updates also lead to an completely
1608 empty fifo */
1609 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001610 plan = rcu_dereference(device->rs_plan_s);
Philipp Reisner813472c2011-05-03 16:47:02 +02001611 plan->total = 0;
1612 fifo_set(plan, 0);
1613 rcu_read_unlock();
Lars Ellenberg9bd28d32010-11-05 09:55:18 +01001614}
1615
Philipp Reisner1f04af32011-02-07 11:33:59 +01001616void start_resync_timer_fn(unsigned long data)
1617{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001618 struct drbd_device *device = (struct drbd_device *) data;
Lars Ellenbergac0acb92014-02-11 09:47:58 +01001619 drbd_device_post_work(device, RS_START);
Philipp Reisner1f04af32011-02-07 11:33:59 +01001620}
1621
Lars Ellenbergac0acb92014-02-11 09:47:58 +01001622static void do_start_resync(struct drbd_device *device)
Philipp Reisner1f04af32011-02-07 11:33:59 +01001623{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001624 if (atomic_read(&device->unacked_cnt) || atomic_read(&device->rs_pending_cnt)) {
Lars Ellenbergac0acb92014-02-11 09:47:58 +01001625 drbd_warn(device, "postponing start_resync ...\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001626 device->start_resync_timer.expires = jiffies + HZ/10;
1627 add_timer(&device->start_resync_timer);
Lars Ellenbergac0acb92014-02-11 09:47:58 +01001628 return;
Philipp Reisner1f04af32011-02-07 11:33:59 +01001629 }
1630
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001631 drbd_start_resync(device, C_SYNC_SOURCE);
1632 clear_bit(AHEAD_TO_SYNC_SOURCE, &device->flags);
Philipp Reisner1f04af32011-02-07 11:33:59 +01001633}
1634
Lars Ellenbergaaaba342014-03-18 12:30:09 +01001635static bool use_checksum_based_resync(struct drbd_connection *connection, struct drbd_device *device)
1636{
1637 bool csums_after_crash_only;
1638 rcu_read_lock();
1639 csums_after_crash_only = rcu_dereference(connection->net_conf)->csums_after_crash_only;
1640 rcu_read_unlock();
1641 return connection->agreed_pro_version >= 89 && /* supported? */
1642 connection->csums_tfm && /* configured? */
1643 (csums_after_crash_only == 0 /* use for each resync? */
1644 || test_bit(CRASHED_PRIMARY, &device->flags)); /* or only after Primary crash? */
1645}
1646
Philipp Reisnerb411b362009-09-25 16:07:19 -07001647/**
1648 * drbd_start_resync() - Start the resync process
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001649 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001650 * @side: Either C_SYNC_SOURCE or C_SYNC_TARGET
1651 *
1652 * This function might bring you directly into one of the
1653 * C_PAUSED_SYNC_* states.
1654 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001655void drbd_start_resync(struct drbd_device *device, enum drbd_conns side)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001656{
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001657 struct drbd_peer_device *peer_device = first_peer_device(device);
1658 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001659 union drbd_state ns;
1660 int r;
1661
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001662 if (device->state.conn >= C_SYNC_SOURCE && device->state.conn < C_AHEAD) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001663 drbd_err(device, "Resync already running!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001664 return;
1665 }
1666
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001667 if (!test_bit(B_RS_H_DONE, &device->flags)) {
Philipp Reisnere64a3292011-02-05 17:34:11 +01001668 if (side == C_SYNC_TARGET) {
1669 /* Since application IO was locked out during C_WF_BITMAP_T and
1670 C_WF_SYNC_UUID we are still unmodified. Before going to C_SYNC_TARGET
1671 we check that we might make the data inconsistent. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001672 r = drbd_khelper(device, "before-resync-target");
Philipp Reisnere64a3292011-02-05 17:34:11 +01001673 r = (r >> 8) & 0xff;
1674 if (r > 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001675 drbd_info(device, "before-resync-target handler returned %d, "
Philipp Reisner09b9e792010-12-03 16:04:24 +01001676 "dropping connection.\n", r);
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001677 conn_request_state(connection, NS(conn, C_DISCONNECTING), CS_HARD);
Philipp Reisner09b9e792010-12-03 16:04:24 +01001678 return;
1679 }
Philipp Reisnere64a3292011-02-05 17:34:11 +01001680 } else /* C_SYNC_SOURCE */ {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001681 r = drbd_khelper(device, "before-resync-source");
Philipp Reisnere64a3292011-02-05 17:34:11 +01001682 r = (r >> 8) & 0xff;
1683 if (r > 0) {
1684 if (r == 3) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001685 drbd_info(device, "before-resync-source handler returned %d, "
Philipp Reisnere64a3292011-02-05 17:34:11 +01001686 "ignoring. Old userland tools?", r);
1687 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001688 drbd_info(device, "before-resync-source handler returned %d, "
Philipp Reisnere64a3292011-02-05 17:34:11 +01001689 "dropping connection.\n", r);
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001690 conn_request_state(connection,
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001691 NS(conn, C_DISCONNECTING), CS_HARD);
Philipp Reisnere64a3292011-02-05 17:34:11 +01001692 return;
1693 }
1694 }
Philipp Reisner09b9e792010-12-03 16:04:24 +01001695 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001696 }
1697
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001698 if (current == connection->worker.task) {
Philipp Reisnerdad20552011-02-11 19:43:55 +01001699 /* The worker should not sleep waiting for state_mutex,
Philipp Reisnere64a3292011-02-05 17:34:11 +01001700 that can take long */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001701 if (!mutex_trylock(device->state_mutex)) {
1702 set_bit(B_RS_H_DONE, &device->flags);
1703 device->start_resync_timer.expires = jiffies + HZ/5;
1704 add_timer(&device->start_resync_timer);
Philipp Reisnere64a3292011-02-05 17:34:11 +01001705 return;
1706 }
1707 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001708 mutex_lock(device->state_mutex);
Philipp Reisnere64a3292011-02-05 17:34:11 +01001709 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001710 clear_bit(B_RS_H_DONE, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001711
Lars Ellenberg074f4af2014-04-28 18:43:26 +02001712 /* req_lock: serialize with drbd_send_and_submit() and others
1713 * global_state_lock: for stable sync-after dependencies */
1714 spin_lock_irq(&device->resource->req_lock);
1715 write_lock(&global_state_lock);
Philipp Reisnera7004712013-03-27 14:08:35 +01001716 /* Did some connection breakage or IO error race with us? */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001717 if (device->state.conn < C_CONNECTED
1718 || !get_ldev_if_state(device, D_NEGOTIATING)) {
Lars Ellenberg074f4af2014-04-28 18:43:26 +02001719 write_unlock(&global_state_lock);
1720 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001721 mutex_unlock(device->state_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001722 return;
1723 }
1724
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001725 ns = drbd_read_state(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001726
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001727 ns.aftr_isp = !_drbd_may_sync_now(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001728
1729 ns.conn = side;
1730
1731 if (side == C_SYNC_TARGET)
1732 ns.disk = D_INCONSISTENT;
1733 else /* side == C_SYNC_SOURCE */
1734 ns.pdsk = D_INCONSISTENT;
1735
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001736 r = __drbd_set_state(device, ns, CS_VERBOSE, NULL);
1737 ns = drbd_read_state(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001738
1739 if (ns.conn < C_CONNECTED)
1740 r = SS_UNKNOWN_ERROR;
1741
1742 if (r == SS_SUCCESS) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001743 unsigned long tw = drbd_bm_total_weight(device);
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001744 unsigned long now = jiffies;
1745 int i;
1746
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001747 device->rs_failed = 0;
1748 device->rs_paused = 0;
1749 device->rs_same_csum = 0;
1750 device->rs_last_events = 0;
1751 device->rs_last_sect_ev = 0;
1752 device->rs_total = tw;
1753 device->rs_start = now;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001754 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001755 device->rs_mark_left[i] = tw;
1756 device->rs_mark_time[i] = now;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001757 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001758 _drbd_pause_after(device);
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01001759 /* Forget potentially stale cached per resync extent bit-counts.
1760 * Open coded drbd_rs_cancel_all(device), we already have IRQs
1761 * disabled, and know the disk state is ok. */
1762 spin_lock(&device->al_lock);
1763 lc_reset(device->resync);
1764 device->resync_locked = 0;
1765 device->resync_wenr = LC_FREE;
1766 spin_unlock(&device->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001767 }
Lars Ellenberg074f4af2014-04-28 18:43:26 +02001768 write_unlock(&global_state_lock);
1769 spin_unlock_irq(&device->resource->req_lock);
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001770
Philipp Reisnerb411b362009-09-25 16:07:19 -07001771 if (r == SS_SUCCESS) {
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01001772 wake_up(&device->al_wait); /* for lc_reset() above */
Philipp Reisner328e0f12012-10-19 14:37:47 +02001773 /* reset rs_last_bcast when a resync or verify is started,
1774 * to deal with potential jiffies wrap. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001775 device->rs_last_bcast = jiffies - HZ;
Philipp Reisner328e0f12012-10-19 14:37:47 +02001776
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001777 drbd_info(device, "Began resync as %s (will sync %lu KB [%lu bits set]).\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001778 drbd_conn_str(ns.conn),
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001779 (unsigned long) device->rs_total << (BM_BLOCK_SHIFT-10),
1780 (unsigned long) device->rs_total);
Lars Ellenbergaaaba342014-03-18 12:30:09 +01001781 if (side == C_SYNC_TARGET) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001782 device->bm_resync_fo = 0;
Lars Ellenbergaaaba342014-03-18 12:30:09 +01001783 device->use_csums = use_checksum_based_resync(connection, device);
1784 } else {
1785 device->use_csums = 0;
1786 }
Lars Ellenberg6c922ed2011-01-12 11:51:13 +01001787
1788 /* Since protocol 96, we must serialize drbd_gen_and_send_sync_uuid
1789 * with w_send_oos, or the sync target will get confused as to
1790 * how much bits to resync. We cannot do that always, because for an
1791 * empty resync and protocol < 95, we need to do it here, as we call
1792 * drbd_resync_finished from here in that case.
1793 * We drbd_gen_and_send_sync_uuid here for protocol < 96,
1794 * and from after_state_ch otherwise. */
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001795 if (side == C_SYNC_SOURCE && connection->agreed_pro_version < 96)
1796 drbd_gen_and_send_sync_uuid(peer_device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001797
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001798 if (connection->agreed_pro_version < 95 && device->rs_total == 0) {
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +02001799 /* This still has a race (about when exactly the peers
1800 * detect connection loss) that can lead to a full sync
1801 * on next handshake. In 8.3.9 we fixed this with explicit
1802 * resync-finished notifications, but the fix
1803 * introduces a protocol change. Sleeping for some
1804 * time longer than the ping interval + timeout on the
1805 * SyncSource, to give the SyncTarget the chance to
1806 * detect connection loss, then waiting for a ping
1807 * response (implicit in drbd_resync_finished) reduces
1808 * the race considerably, but does not solve it. */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001809 if (side == C_SYNC_SOURCE) {
1810 struct net_conf *nc;
1811 int timeo;
1812
1813 rcu_read_lock();
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001814 nc = rcu_dereference(connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +02001815 timeo = nc->ping_int * HZ + nc->ping_timeo * HZ / 9;
1816 rcu_read_unlock();
1817 schedule_timeout_interruptible(timeo);
1818 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001819 drbd_resync_finished(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001820 }
1821
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001822 drbd_rs_controller_reset(device);
1823 /* ns.conn may already be != device->state.conn,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001824 * we may have been paused in between, or become paused until
1825 * the timer triggers.
1826 * No matter, that is handled in resync_timer_fn() */
1827 if (ns.conn == C_SYNC_TARGET)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001828 mod_timer(&device->resync_timer, jiffies);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001829
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001830 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001831 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001832 put_ldev(device);
1833 mutex_unlock(device->state_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001834}
1835
Lars Ellenberge334f552014-02-11 09:30:49 +01001836static void update_on_disk_bitmap(struct drbd_device *device, bool resync_done)
Lars Ellenbergc7a58db2013-12-20 11:39:48 +01001837{
1838 struct sib_info sib = { .sib_reason = SIB_SYNC_PROGRESS, };
1839 device->rs_last_bcast = jiffies;
1840
1841 if (!get_ldev(device))
1842 return;
1843
1844 drbd_bm_write_lazy(device, 0);
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01001845 if (resync_done && is_sync_state(device->state.conn))
Lars Ellenbergc7a58db2013-12-20 11:39:48 +01001846 drbd_resync_finished(device);
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01001847
Lars Ellenbergc7a58db2013-12-20 11:39:48 +01001848 drbd_bcast_event(device, &sib);
1849 /* update timestamp, in case it took a while to write out stuff */
1850 device->rs_last_bcast = jiffies;
1851 put_ldev(device);
1852}
1853
Lars Ellenberge334f552014-02-11 09:30:49 +01001854static void drbd_ldev_destroy(struct drbd_device *device)
1855{
1856 lc_destroy(device->resync);
1857 device->resync = NULL;
1858 lc_destroy(device->act_log);
1859 device->act_log = NULL;
1860 __no_warn(local,
1861 drbd_free_ldev(device->ldev);
1862 device->ldev = NULL;);
1863 clear_bit(GOING_DISKLESS, &device->flags);
1864 wake_up(&device->misc_wait);
1865}
1866
1867static void go_diskless(struct drbd_device *device)
1868{
1869 D_ASSERT(device, device->state.disk == D_FAILED);
1870 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
1871 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
1872 * the protected members anymore, though, so once put_ldev reaches zero
1873 * again, it will be safe to free them. */
1874
1875 /* Try to write changed bitmap pages, read errors may have just
1876 * set some bits outside the area covered by the activity log.
1877 *
1878 * If we have an IO error during the bitmap writeout,
1879 * we will want a full sync next time, just in case.
1880 * (Do we want a specific meta data flag for this?)
1881 *
1882 * If that does not make it to stable storage either,
1883 * we cannot do anything about that anymore.
1884 *
1885 * We still need to check if both bitmap and ldev are present, we may
1886 * end up here after a failed attach, before ldev was even assigned.
1887 */
1888 if (device->bitmap && device->ldev) {
1889 /* An interrupted resync or similar is allowed to recounts bits
1890 * while we detach.
1891 * Any modifications would not be expected anymore, though.
1892 */
1893 if (drbd_bitmap_io_from_worker(device, drbd_bm_write,
1894 "detach", BM_LOCKED_TEST_ALLOWED)) {
1895 if (test_bit(WAS_READ_ERROR, &device->flags)) {
1896 drbd_md_set_flag(device, MDF_FULL_SYNC);
1897 drbd_md_sync(device);
1898 }
1899 }
1900 }
1901
1902 drbd_force_state(device, NS(disk, D_DISKLESS));
1903}
1904
Lars Ellenbergac0acb92014-02-11 09:47:58 +01001905static int do_md_sync(struct drbd_device *device)
1906{
1907 drbd_warn(device, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
1908 drbd_md_sync(device);
1909 return 0;
1910}
1911
Lars Ellenberge334f552014-02-11 09:30:49 +01001912#define WORK_PENDING(work_bit, todo) (todo & (1UL << work_bit))
1913static void do_device_work(struct drbd_device *device, const unsigned long todo)
1914{
Lars Ellenbergac0acb92014-02-11 09:47:58 +01001915 if (WORK_PENDING(MD_SYNC, todo))
1916 do_md_sync(device);
Lars Ellenberge334f552014-02-11 09:30:49 +01001917 if (WORK_PENDING(RS_DONE, todo) ||
1918 WORK_PENDING(RS_PROGRESS, todo))
1919 update_on_disk_bitmap(device, WORK_PENDING(RS_DONE, todo));
1920 if (WORK_PENDING(GO_DISKLESS, todo))
1921 go_diskless(device);
1922 if (WORK_PENDING(DESTROY_DISK, todo))
1923 drbd_ldev_destroy(device);
Lars Ellenbergac0acb92014-02-11 09:47:58 +01001924 if (WORK_PENDING(RS_START, todo))
1925 do_start_resync(device);
Lars Ellenberge334f552014-02-11 09:30:49 +01001926}
1927
1928#define DRBD_DEVICE_WORK_MASK \
1929 ((1UL << GO_DISKLESS) \
1930 |(1UL << DESTROY_DISK) \
Lars Ellenbergac0acb92014-02-11 09:47:58 +01001931 |(1UL << MD_SYNC) \
1932 |(1UL << RS_START) \
Lars Ellenberge334f552014-02-11 09:30:49 +01001933 |(1UL << RS_PROGRESS) \
1934 |(1UL << RS_DONE) \
1935 )
1936
1937static unsigned long get_work_bits(unsigned long *flags)
1938{
1939 unsigned long old, new;
1940 do {
1941 old = *flags;
1942 new = old & ~DRBD_DEVICE_WORK_MASK;
1943 } while (cmpxchg(flags, old, new) != old);
1944 return old & DRBD_DEVICE_WORK_MASK;
1945}
1946
1947static void do_unqueued_work(struct drbd_connection *connection)
Lars Ellenbergc7a58db2013-12-20 11:39:48 +01001948{
1949 struct drbd_peer_device *peer_device;
1950 int vnr;
1951
1952 rcu_read_lock();
1953 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
1954 struct drbd_device *device = peer_device->device;
Lars Ellenberge334f552014-02-11 09:30:49 +01001955 unsigned long todo = get_work_bits(&device->flags);
1956 if (!todo)
Lars Ellenbergc7a58db2013-12-20 11:39:48 +01001957 continue;
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01001958
Lars Ellenbergc7a58db2013-12-20 11:39:48 +01001959 kref_get(&device->kref);
1960 rcu_read_unlock();
Lars Ellenberge334f552014-02-11 09:30:49 +01001961 do_device_work(device, todo);
Lars Ellenbergc7a58db2013-12-20 11:39:48 +01001962 kref_put(&device->kref, drbd_destroy_device);
1963 rcu_read_lock();
1964 }
1965 rcu_read_unlock();
1966}
1967
Rashika Kheriaa186e472013-12-19 15:06:10 +05301968static bool dequeue_work_batch(struct drbd_work_queue *queue, struct list_head *work_list)
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02001969{
1970 spin_lock_irq(&queue->q_lock);
Lars Ellenberg15e26f62014-04-28 11:43:21 +02001971 list_splice_tail_init(&queue->q, work_list);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02001972 spin_unlock_irq(&queue->q_lock);
1973 return !list_empty(work_list);
1974}
1975
Rashika Kheriaa186e472013-12-19 15:06:10 +05301976static bool dequeue_work_item(struct drbd_work_queue *queue, struct list_head *work_list)
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02001977{
1978 spin_lock_irq(&queue->q_lock);
1979 if (!list_empty(&queue->q))
1980 list_move(queue->q.next, work_list);
1981 spin_unlock_irq(&queue->q_lock);
1982 return !list_empty(work_list);
1983}
1984
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001985static void wait_for_work(struct drbd_connection *connection, struct list_head *work_list)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01001986{
1987 DEFINE_WAIT(wait);
1988 struct net_conf *nc;
1989 int uncork, cork;
1990
1991 dequeue_work_item(&connection->sender_work, work_list);
1992 if (!list_empty(work_list))
1993 return;
1994
1995 /* Still nothing to do?
1996 * Maybe we still need to close the current epoch,
1997 * even if no new requests are queued yet.
1998 *
1999 * Also, poke TCP, just in case.
2000 * Then wait for new work (or signal). */
2001 rcu_read_lock();
2002 nc = rcu_dereference(connection->net_conf);
2003 uncork = nc ? nc->tcp_cork : 0;
2004 rcu_read_unlock();
2005 if (uncork) {
2006 mutex_lock(&connection->data.mutex);
2007 if (connection->data.socket)
2008 drbd_tcp_uncork(connection->data.socket);
2009 mutex_unlock(&connection->data.mutex);
2010 }
2011
2012 for (;;) {
2013 int send_barrier;
2014 prepare_to_wait(&connection->sender_work.q_wait, &wait, TASK_INTERRUPTIBLE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002015 spin_lock_irq(&connection->resource->req_lock);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002016 spin_lock(&connection->sender_work.q_lock); /* FIXME get rid of this one? */
Lars Ellenbergbc317a92012-08-22 11:47:14 +02002017 /* dequeue single item only,
2018 * we still use drbd_queue_work_front() in some places */
2019 if (!list_empty(&connection->sender_work.q))
Lars Ellenberg4dd726f2014-02-11 11:15:36 +01002020 list_splice_tail_init(&connection->sender_work.q, work_list);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002021 spin_unlock(&connection->sender_work.q_lock); /* FIXME get rid of this one? */
2022 if (!list_empty(work_list) || signal_pending(current)) {
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002023 spin_unlock_irq(&connection->resource->req_lock);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002024 break;
2025 }
Lars Ellenbergf9c78122014-04-28 18:43:29 +02002026
2027 /* We found nothing new to do, no to-be-communicated request,
2028 * no other work item. We may still need to close the last
2029 * epoch. Next incoming request epoch will be connection ->
2030 * current transfer log epoch number. If that is different
2031 * from the epoch of the last request we communicated, it is
2032 * safe to send the epoch separating barrier now.
2033 */
2034 send_barrier =
2035 atomic_read(&connection->current_tle_nr) !=
2036 connection->send.current_epoch_nr;
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002037 spin_unlock_irq(&connection->resource->req_lock);
Lars Ellenbergf9c78122014-04-28 18:43:29 +02002038
2039 if (send_barrier)
2040 maybe_send_barrier(connection,
2041 connection->send.current_epoch_nr + 1);
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01002042
Lars Ellenberge334f552014-02-11 09:30:49 +01002043 if (test_bit(DEVICE_WORK_PENDING, &connection->flags))
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01002044 break;
2045
Lars Ellenberga80ca1a2013-12-27 17:17:25 +01002046 /* drbd_send() may have called flush_signals() */
2047 if (get_t_state(&connection->worker) != RUNNING)
2048 break;
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01002049
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002050 schedule();
2051 /* may be woken up for other things but new work, too,
2052 * e.g. if the current epoch got closed.
2053 * In which case we send the barrier above. */
2054 }
2055 finish_wait(&connection->sender_work.q_wait, &wait);
2056
2057 /* someone may have changed the config while we have been waiting above. */
2058 rcu_read_lock();
2059 nc = rcu_dereference(connection->net_conf);
2060 cork = nc ? nc->tcp_cork : 0;
2061 rcu_read_unlock();
2062 mutex_lock(&connection->data.mutex);
2063 if (connection->data.socket) {
2064 if (cork)
2065 drbd_tcp_cork(connection->data.socket);
2066 else if (!uncork)
2067 drbd_tcp_uncork(connection->data.socket);
2068 }
2069 mutex_unlock(&connection->data.mutex);
2070}
2071
Philipp Reisnerb411b362009-09-25 16:07:19 -07002072int drbd_worker(struct drbd_thread *thi)
2073{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002074 struct drbd_connection *connection = thi->connection;
Andreas Gruenbacher6db7e502011-08-26 23:50:08 +02002075 struct drbd_work *w = NULL;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002076 struct drbd_peer_device *peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002077 LIST_HEAD(work_list);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002078 int vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002079
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +01002080 while (get_t_state(thi) == RUNNING) {
Philipp Reisner80822282011-02-08 12:46:30 +01002081 drbd_thread_current_set_cpu(thi);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002082
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002083 if (list_empty(&work_list))
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002084 wait_for_work(connection, &work_list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002085
Lars Ellenberge334f552014-02-11 09:30:49 +01002086 if (test_and_clear_bit(DEVICE_WORK_PENDING, &connection->flags))
2087 do_unqueued_work(connection);
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01002088
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002089 if (signal_pending(current)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002090 flush_signals(current);
Philipp Reisner19393e12011-02-09 10:09:07 +01002091 if (get_t_state(thi) == RUNNING) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002092 drbd_warn(connection, "Worker got an unexpected signal\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002093 continue;
Philipp Reisner19393e12011-02-09 10:09:07 +01002094 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002095 break;
2096 }
2097
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +01002098 if (get_t_state(thi) != RUNNING)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002099 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002100
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002101 while (!list_empty(&work_list)) {
Andreas Gruenbacher6db7e502011-08-26 23:50:08 +02002102 w = list_first_entry(&work_list, struct drbd_work, list);
2103 list_del_init(&w->list);
2104 if (w->cb(w, connection->cstate < C_WF_REPORT_PARAMS) == 0)
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002105 continue;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002106 if (connection->cstate >= C_WF_REPORT_PARAMS)
2107 conn_request_state(connection, NS(conn, C_NETWORK_FAILURE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002108 }
2109 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002110
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002111 do {
Lars Ellenberge334f552014-02-11 09:30:49 +01002112 if (test_and_clear_bit(DEVICE_WORK_PENDING, &connection->flags))
2113 do_unqueued_work(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002114 while (!list_empty(&work_list)) {
Andreas Gruenbacher6db7e502011-08-26 23:50:08 +02002115 w = list_first_entry(&work_list, struct drbd_work, list);
2116 list_del_init(&w->list);
2117 w->cb(w, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002118 }
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002119 dequeue_work_batch(&connection->sender_work, &work_list);
Lars Ellenberge334f552014-02-11 09:30:49 +01002120 } while (!list_empty(&work_list) || test_bit(DEVICE_WORK_PENDING, &connection->flags));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002121
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002122 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002123 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2124 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002125 D_ASSERT(device, device->state.disk == D_DISKLESS && device->state.conn == C_STANDALONE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002126 kref_get(&device->kref);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002127 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002128 drbd_device_cleanup(device);
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002129 kref_put(&device->kref, drbd_destroy_device);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002130 rcu_read_lock();
Philipp Reisner0e29d162011-02-18 14:23:11 +01002131 }
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002132 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002133
2134 return 0;
2135}