drbd_worker.c 47.3 KB
Newer Older
P
Philipp Reisner 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
/*
   drbd_worker.c

   This file is part of DRBD by Philipp Reisner and Lars Ellenberg.

   Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
   Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
   Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.

   drbd is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   drbd is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with drbd; see the file COPYING.  If not, write to
   the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.

 */

#include <linux/module.h>
#include <linux/drbd.h>
#include <linux/sched.h>
#include <linux/wait.h>
#include <linux/mm.h>
#include <linux/memcontrol.h>
#include <linux/mm_inline.h>
#include <linux/slab.h>
#include <linux/random.h>
#include <linux/string.h>
#include <linux/scatterlist.h>

#include "drbd_int.h"
#include "drbd_req.h"

41
static int w_make_ov_request(struct drbd_work *w, int cancel);
P
Philipp Reisner 已提交
42 43


44 45
/* endio handlers:
 *   drbd_md_io_complete (defined here)
46 47
 *   drbd_request_endio (defined here)
 *   drbd_peer_request_endio (defined here)
48 49
 *   bm_async_io_complete (defined in drbd_bitmap.c)
 *
P
Philipp Reisner 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
 * For all these callbacks, note the following:
 * The callbacks will be called in irq context by the IDE drivers,
 * and in Softirqs/Tasklets/BH context by the SCSI drivers.
 * Try to get the locking right :)
 *
 */


/* About the global_state_lock
   Each state transition on an device holds a read lock. In case we have
   to evaluate the sync after dependencies, we grab a write lock, because
   we need stable states on all devices for that.  */
rwlock_t global_state_lock;

/* used for synchronous meta data and bitmap IO
 * submitted by drbd_md_sync_page_io()
 */
void drbd_md_io_complete(struct bio *bio, int error)
{
	struct drbd_md_io *md_io;

	md_io = (struct drbd_md_io *)bio->bi_private;
	md_io->error = error;

	complete(&md_io->event);
}

/* reads on behalf of the partner,
 * "submitted" by the receiver
 */
80
void drbd_endio_read_sec_final(struct drbd_peer_request *peer_req) __releases(local)
P
Philipp Reisner 已提交
81 82
{
	unsigned long flags = 0;
83
	struct drbd_conf *mdev = peer_req->w.mdev;
P
Philipp Reisner 已提交
84

85
	spin_lock_irqsave(&mdev->tconn->req_lock, flags);
86 87
	mdev->read_cnt += peer_req->i.size >> 9;
	list_del(&peer_req->w.list);
P
Philipp Reisner 已提交
88 89
	if (list_empty(&mdev->read_ee))
		wake_up(&mdev->ee_wait);
90
	if (test_bit(__EE_WAS_ERROR, &peer_req->flags))
91
		__drbd_chk_io_error(mdev, false);
92
	spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
P
Philipp Reisner 已提交
93

94
	drbd_queue_work(&mdev->tconn->data.work, &peer_req->w);
P
Philipp Reisner 已提交
95 96 97 98
	put_ldev(mdev);
}

/* writes on behalf of the partner, or resync writes,
99
 * "submitted" by the receiver, final stage.  */
100
static void drbd_endio_write_sec_final(struct drbd_peer_request *peer_req) __releases(local)
P
Philipp Reisner 已提交
101 102
{
	unsigned long flags = 0;
103
	struct drbd_conf *mdev = peer_req->w.mdev;
104
	struct drbd_interval i;
P
Philipp Reisner 已提交
105
	int do_wake;
106
	u64 block_id;
P
Philipp Reisner 已提交
107 108
	int do_al_complete_io;

109
	/* after we moved peer_req to done_ee,
P
Philipp Reisner 已提交
110 111 112
	 * we may no longer access it,
	 * it may be freed/reused already!
	 * (as soon as we release the req_lock) */
113
	i = peer_req->i;
114 115
	do_al_complete_io = peer_req->flags & EE_CALL_AL_COMPLETE_IO;
	block_id = peer_req->block_id;
P
Philipp Reisner 已提交
116

117
	spin_lock_irqsave(&mdev->tconn->req_lock, flags);
118 119 120
	mdev->writ_cnt += peer_req->i.size >> 9;
	list_del(&peer_req->w.list); /* has been on active_ee or sync_ee */
	list_add_tail(&peer_req->w.list, &mdev->done_ee);
P
Philipp Reisner 已提交
121

122
	/*
123
	 * Do not remove from the write_requests tree here: we did not send the
124 125 126 127 128
	 * Ack yet and did not wake possibly waiting conflicting requests.
	 * Removed from the tree from "drbd_process_done_ee" within the
	 * appropriate w.cb (e_end_block/e_end_resync_block) or from
	 * _drbd_clear_done_ee.
	 */
P
Philipp Reisner 已提交
129

130
	do_wake = list_empty(block_id == ID_SYNCER ? &mdev->sync_ee : &mdev->active_ee);
P
Philipp Reisner 已提交
131

132
	if (test_bit(__EE_WAS_ERROR, &peer_req->flags))
133
		__drbd_chk_io_error(mdev, false);
134
	spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
P
Philipp Reisner 已提交
135

136
	if (block_id == ID_SYNCER)
137
		drbd_rs_complete_io(mdev, i.sector);
P
Philipp Reisner 已提交
138 139 140 141 142

	if (do_wake)
		wake_up(&mdev->ee_wait);

	if (do_al_complete_io)
143
		drbd_al_complete_io(mdev, &i);
P
Philipp Reisner 已提交
144

145
	wake_asender(mdev->tconn);
P
Philipp Reisner 已提交
146
	put_ldev(mdev);
147
}
P
Philipp Reisner 已提交
148

149 150 151
/* writes on behalf of the partner, or resync writes,
 * "submitted" by the receiver.
 */
152
void drbd_peer_request_endio(struct bio *bio, int error)
153
{
154
	struct drbd_peer_request *peer_req = bio->bi_private;
155
	struct drbd_conf *mdev = peer_req->w.mdev;
156 157 158
	int uptodate = bio_flagged(bio, BIO_UPTODATE);
	int is_write = bio_data_dir(bio) == WRITE;

159
	if (error && __ratelimit(&drbd_ratelimit_state))
160 161
		dev_warn(DEV, "%s: error=%d s=%llus\n",
				is_write ? "write" : "read", error,
162
				(unsigned long long)peer_req->i.sector);
163
	if (!error && !uptodate) {
164 165 166
		if (__ratelimit(&drbd_ratelimit_state))
			dev_warn(DEV, "%s: setting error to -EIO s=%llus\n",
					is_write ? "write" : "read",
167
					(unsigned long long)peer_req->i.sector);
168 169 170 171 172 173 174
		/* strange behavior of some lower level drivers...
		 * fail the request by clearing the uptodate flag,
		 * but do not return any error?! */
		error = -EIO;
	}

	if (error)
175
		set_bit(__EE_WAS_ERROR, &peer_req->flags);
176 177

	bio_put(bio); /* no need for the bio anymore */
178
	if (atomic_dec_and_test(&peer_req->pending_bios)) {
179
		if (is_write)
180
			drbd_endio_write_sec_final(peer_req);
181
		else
182
			drbd_endio_read_sec_final(peer_req);
183
	}
P
Philipp Reisner 已提交
184 185 186 187
}

/* read, readA or write requests on R_PRIMARY coming from drbd_make_request
 */
188
void drbd_request_endio(struct bio *bio, int error)
P
Philipp Reisner 已提交
189
{
190
	unsigned long flags;
P
Philipp Reisner 已提交
191
	struct drbd_request *req = bio->bi_private;
192
	struct drbd_conf *mdev = req->w.mdev;
193
	struct bio_and_error m;
P
Philipp Reisner 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
	enum drbd_req_event what;
	int uptodate = bio_flagged(bio, BIO_UPTODATE);

	if (!error && !uptodate) {
		dev_warn(DEV, "p %s: setting error to -EIO\n",
			 bio_data_dir(bio) == WRITE ? "write" : "read");
		/* strange behavior of some lower level drivers...
		 * fail the request by clearing the uptodate flag,
		 * but do not return any error?! */
		error = -EIO;
	}

	/* to avoid recursion in __req_mod */
	if (unlikely(error)) {
		what = (bio_data_dir(bio) == WRITE)
209
			? WRITE_COMPLETED_WITH_ERROR
210
			: (bio_rw(bio) == READ)
211 212
			  ? READ_COMPLETED_WITH_ERROR
			  : READ_AHEAD_COMPLETED_WITH_ERROR;
P
Philipp Reisner 已提交
213
	} else
214
		what = COMPLETED_OK;
P
Philipp Reisner 已提交
215 216 217 218

	bio_put(req->private_bio);
	req->private_bio = ERR_PTR(error);

219
	/* not req_mod(), we need irqsave here! */
220
	spin_lock_irqsave(&mdev->tconn->req_lock, flags);
221
	__req_mod(req, what, &m);
222
	spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
223 224 225

	if (m.bio)
		complete_master_bio(mdev, &m);
P
Philipp Reisner 已提交
226 227
}

228
int w_read_retry_remote(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
229 230
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
231
	struct drbd_conf *mdev = w->mdev;
P
Philipp Reisner 已提交
232 233 234 235 236

	/* We should not detach for read io-error,
	 * but try to WRITE the P_DATA_REPLY to the failed location,
	 * to give the disk the chance to relocate that block */

237
	spin_lock_irq(&mdev->tconn->req_lock);
238
	if (cancel || mdev->state.pdsk != D_UP_TO_DATE) {
239
		_req_mod(req, READ_RETRY_REMOTE_CANCELED);
240
		spin_unlock_irq(&mdev->tconn->req_lock);
241
		return 0;
P
Philipp Reisner 已提交
242
	}
243
	spin_unlock_irq(&mdev->tconn->req_lock);
P
Philipp Reisner 已提交
244

245
	return w_send_read_req(w, 0);
P
Philipp Reisner 已提交
246 247
}

248
void drbd_csum_ee(struct drbd_conf *mdev, struct crypto_hash *tfm,
249
		  struct drbd_peer_request *peer_req, void *digest)
250 251 252
{
	struct hash_desc desc;
	struct scatterlist sg;
253
	struct page *page = peer_req->pages;
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
	struct page *tmp;
	unsigned len;

	desc.tfm = tfm;
	desc.flags = 0;

	sg_init_table(&sg, 1);
	crypto_hash_init(&desc);

	while ((tmp = page_chain_next(page))) {
		/* all but the last page will be fully used */
		sg_set_page(&sg, page, PAGE_SIZE, 0);
		crypto_hash_update(&desc, &sg, sg.length);
		page = tmp;
	}
	/* and now the last, possibly only partially used page */
270
	len = peer_req->i.size & (PAGE_SIZE - 1);
271 272 273 274 275 276
	sg_set_page(&sg, page, len ?: PAGE_SIZE, 0);
	crypto_hash_update(&desc, &sg, sg.length);
	crypto_hash_final(&desc, digest);
}

void drbd_csum_bio(struct drbd_conf *mdev, struct crypto_hash *tfm, struct bio *bio, void *digest)
P
Philipp Reisner 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
{
	struct hash_desc desc;
	struct scatterlist sg;
	struct bio_vec *bvec;
	int i;

	desc.tfm = tfm;
	desc.flags = 0;

	sg_init_table(&sg, 1);
	crypto_hash_init(&desc);

	__bio_for_each_segment(bvec, bio, i, 0) {
		sg_set_page(&sg, bvec->bv_page, bvec->bv_len, bvec->bv_offset);
		crypto_hash_update(&desc, &sg, sg.length);
	}
	crypto_hash_final(&desc, digest);
}

296
/* MAYBE merge common code with w_e_end_ov_req */
297
static int w_e_send_csum(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
298
{
299 300
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
	struct drbd_conf *mdev = w->mdev;
P
Philipp Reisner 已提交
301 302
	int digest_size;
	void *digest;
303
	int err = 0;
P
Philipp Reisner 已提交
304

305 306
	if (unlikely(cancel))
		goto out;
P
Philipp Reisner 已提交
307

308
	if (unlikely((peer_req->flags & EE_WAS_ERROR) != 0))
309
		goto out;
P
Philipp Reisner 已提交
310

311
	digest_size = crypto_hash_digestsize(mdev->tconn->csums_tfm);
312 313
	digest = kmalloc(digest_size, GFP_NOIO);
	if (digest) {
314 315
		sector_t sector = peer_req->i.sector;
		unsigned int size = peer_req->i.size;
316
		drbd_csum_ee(mdev, mdev->tconn->csums_tfm, peer_req, digest);
317
		/* Free peer_req and pages before send.
318 319 320 321
		 * In case we block on congestion, we could otherwise run into
		 * some distributed deadlock, if the other side blocks on
		 * congestion as well, because our receiver blocks in
		 * drbd_pp_alloc due to pp_in_use > max_buffers. */
322 323
		drbd_free_ee(mdev, peer_req);
		peer_req = NULL;
324
		inc_rs_pending(mdev);
325
		err = drbd_send_drequest_csum(mdev, sector, size,
326 327
					      digest, digest_size,
					      P_CSUM_RS_REQUEST);
328 329 330
		kfree(digest);
	} else {
		dev_err(DEV, "kmalloc() of digest failed.\n");
331
		err = -ENOMEM;
332
	}
P
Philipp Reisner 已提交
333

334
out:
335 336
	if (peer_req)
		drbd_free_ee(mdev, peer_req);
P
Philipp Reisner 已提交
337

338
	if (unlikely(err))
P
Philipp Reisner 已提交
339
		dev_err(DEV, "drbd_send_drequest(..., csum) failed\n");
340
	return err;
P
Philipp Reisner 已提交
341 342 343 344 345 346
}

#define GFP_TRY	(__GFP_HIGHMEM | __GFP_NOWARN)

static int read_for_csum(struct drbd_conf *mdev, sector_t sector, int size)
{
347
	struct drbd_peer_request *peer_req;
P
Philipp Reisner 已提交
348 349

	if (!get_ldev(mdev))
350
		return -EIO;
P
Philipp Reisner 已提交
351

352
	if (drbd_rs_should_slow_down(mdev, sector))
353 354
		goto defer;

P
Philipp Reisner 已提交
355 356
	/* GFP_TRY, because if there is no memory available right now, this may
	 * be rescheduled for later. It is "only" background resync, after all. */
357 358
	peer_req = drbd_alloc_ee(mdev, ID_SYNCER /* unused */, sector, size, GFP_TRY);
	if (!peer_req)
359
		goto defer;
P
Philipp Reisner 已提交
360

361
	peer_req->w.cb = w_e_send_csum;
362
	spin_lock_irq(&mdev->tconn->req_lock);
363
	list_add(&peer_req->w.list, &mdev->read_ee);
364
	spin_unlock_irq(&mdev->tconn->req_lock);
P
Philipp Reisner 已提交
365

366
	atomic_add(size >> 9, &mdev->rs_sect_ev);
367
	if (drbd_submit_peer_request(mdev, peer_req, READ, DRBD_FAULT_RS_RD) == 0)
368
		return 0;
P
Philipp Reisner 已提交
369

370 371 372 373
	/* If it failed because of ENOMEM, retry should help.  If it failed
	 * because bio_add_page failed (probably broken lower level driver),
	 * retry may or may not help.
	 * If it does not, you may need to force disconnect. */
374
	spin_lock_irq(&mdev->tconn->req_lock);
375
	list_del(&peer_req->w.list);
376
	spin_unlock_irq(&mdev->tconn->req_lock);
377

378
	drbd_free_ee(mdev, peer_req);
379
defer:
380
	put_ldev(mdev);
381
	return -EAGAIN;
P
Philipp Reisner 已提交
382 383
}

384
int w_resync_timer(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
385
{
386
	struct drbd_conf *mdev = w->mdev;
387 388
	switch (mdev->state.conn) {
	case C_VERIFY_S:
389
		w_make_ov_request(w, cancel);
390 391
		break;
	case C_SYNC_TARGET:
392
		w_make_resync_request(w, cancel);
393
		break;
P
Philipp Reisner 已提交
394 395
	}

396
	return 0;
397 398 399 400 401 402 403
}

void resync_timer_fn(unsigned long data)
{
	struct drbd_conf *mdev = (struct drbd_conf *) data;

	if (list_empty(&mdev->resync_work.list))
404
		drbd_queue_work(&mdev->tconn->data.work, &mdev->resync_work);
P
Philipp Reisner 已提交
405 406
}

407 408 409 410 411
static void fifo_set(struct fifo_buffer *fb, int value)
{
	int i;

	for (i = 0; i < fb->size; i++)
412
		fb->values[i] = value;
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
}

static int fifo_push(struct fifo_buffer *fb, int value)
{
	int ov;

	ov = fb->values[fb->head_index];
	fb->values[fb->head_index++] = value;

	if (fb->head_index >= fb->size)
		fb->head_index = 0;

	return ov;
}

static void fifo_add_val(struct fifo_buffer *fb, int value)
{
	int i;

	for (i = 0; i < fb->size; i++)
		fb->values[i] += value;
}

436
static int drbd_rs_controller(struct drbd_conf *mdev)
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
{
	unsigned int sect_in;  /* Number of sectors that came in since the last turn */
	unsigned int want;     /* The number of sectors we want in the proxy */
	int req_sect; /* Number of sectors to request in this turn */
	int correction; /* Number of sectors more we need in the proxy*/
	int cps; /* correction per invocation of drbd_rs_controller() */
	int steps; /* Number of time steps to plan ahead */
	int curr_corr;
	int max_sect;

	sect_in = atomic_xchg(&mdev->rs_sect_in, 0); /* Number of sectors that came in */
	mdev->rs_in_flight -= sect_in;

	spin_lock(&mdev->peer_seq_lock); /* get an atomic view on mdev->rs_plan_s */

452
	steps = mdev->rs_plan_s.size; /* (mdev->ldev->dc.c_plan_ahead * 10 * SLEEP_TIME) / HZ; */
453 454

	if (mdev->rs_in_flight + sect_in == 0) { /* At start of resync */
455
		want = ((mdev->ldev->dc.resync_rate * 2 * SLEEP_TIME) / HZ) * steps;
456
	} else { /* normal path */
457 458
		want = mdev->ldev->dc.c_fill_target ? mdev->ldev->dc.c_fill_target :
			sect_in * mdev->ldev->dc.c_delay_target * HZ / (SLEEP_TIME * 10);
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
	}

	correction = want - mdev->rs_in_flight - mdev->rs_planed;

	/* Plan ahead */
	cps = correction / steps;
	fifo_add_val(&mdev->rs_plan_s, cps);
	mdev->rs_planed += cps * steps;

	/* What we do in this step */
	curr_corr = fifo_push(&mdev->rs_plan_s, 0);
	spin_unlock(&mdev->peer_seq_lock);
	mdev->rs_planed -= curr_corr;

	req_sect = sect_in + curr_corr;
	if (req_sect < 0)
		req_sect = 0;

477
	max_sect = (mdev->ldev->dc.c_max_rate * 2 * SLEEP_TIME) / HZ;
478 479 480 481 482 483 484 485 486 487 488 489
	if (req_sect > max_sect)
		req_sect = max_sect;

	/*
	dev_warn(DEV, "si=%u if=%d wa=%u co=%d st=%d cps=%d pl=%d cc=%d rs=%d\n",
		 sect_in, mdev->rs_in_flight, want, correction,
		 steps, cps, mdev->rs_planed, curr_corr, req_sect);
	*/

	return req_sect;
}

490
static int drbd_rs_number_requests(struct drbd_conf *mdev)
491 492
{
	int number;
493
	if (mdev->rs_plan_s.size) { /* mdev->ldev->dc.c_plan_ahead */
494 495 496
		number = drbd_rs_controller(mdev) >> (BM_BLOCK_SHIFT - 9);
		mdev->c_sync_rate = number * HZ * (BM_BLOCK_SIZE / 1024) / SLEEP_TIME;
	} else {
497
		mdev->c_sync_rate = mdev->ldev->dc.resync_rate;
498 499 500 501 502 503 504 505
		number = SLEEP_TIME * mdev->c_sync_rate  / ((BM_BLOCK_SIZE / 1024) * HZ);
	}

	/* ignore the amount of pending requests, the resync controller should
	 * throttle down to incoming reply rate soon enough anyways. */
	return number;
}

506
int w_make_resync_request(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
507
{
508
	struct drbd_conf *mdev = w->mdev;
P
Philipp Reisner 已提交
509 510 511
	unsigned long bit;
	sector_t sector;
	const sector_t capacity = drbd_get_capacity(mdev->this_bdev);
512
	int max_bio_size;
513
	int number, rollback_i, size;
P
Philipp Reisner 已提交
514
	int align, queued, sndbuf;
515
	int i = 0;
P
Philipp Reisner 已提交
516 517

	if (unlikely(cancel))
518
		return 0;
P
Philipp Reisner 已提交
519

520 521 522
	if (mdev->rs_total == 0) {
		/* empty resync? */
		drbd_resync_finished(mdev);
523
		return 0;
524 525
	}

P
Philipp Reisner 已提交
526 527 528 529 530 531
	if (!get_ldev(mdev)) {
		/* Since we only need to access mdev->rsync a
		   get_ldev_if_state(mdev,D_FAILED) would be sufficient, but
		   to continue resync with a broken disk makes no sense at
		   all */
		dev_err(DEV, "Disk broke down during resync!\n");
532
		return 0;
P
Philipp Reisner 已提交
533 534
	}

535
	max_bio_size = queue_max_hw_sectors(mdev->rq_queue) << 9;
536 537
	number = drbd_rs_number_requests(mdev);
	if (number == 0)
538
		goto requeue;
P
Philipp Reisner 已提交
539 540 541

	for (i = 0; i < number; i++) {
		/* Stop generating RS requests, when half of the send buffer is filled */
542 543 544 545
		mutex_lock(&mdev->tconn->data.mutex);
		if (mdev->tconn->data.socket) {
			queued = mdev->tconn->data.socket->sk->sk_wmem_queued;
			sndbuf = mdev->tconn->data.socket->sk->sk_sndbuf;
P
Philipp Reisner 已提交
546 547 548 549
		} else {
			queued = 1;
			sndbuf = 0;
		}
550
		mutex_unlock(&mdev->tconn->data.mutex);
P
Philipp Reisner 已提交
551 552 553 554 555 556 557
		if (queued > sndbuf / 2)
			goto requeue;

next_sector:
		size = BM_BLOCK_SIZE;
		bit  = drbd_bm_find_next(mdev, mdev->bm_resync_fo);

558
		if (bit == DRBD_END_OF_BITMAP) {
P
Philipp Reisner 已提交
559 560
			mdev->bm_resync_fo = drbd_bm_bits(mdev);
			put_ldev(mdev);
561
			return 0;
P
Philipp Reisner 已提交
562 563 564 565
		}

		sector = BM_BIT_TO_SECT(bit);

566 567
		if (drbd_rs_should_slow_down(mdev, sector) ||
		    drbd_try_rs_begin_io(mdev, sector)) {
P
Philipp Reisner 已提交
568 569 570 571 572 573 574 575 576 577
			mdev->bm_resync_fo = bit;
			goto requeue;
		}
		mdev->bm_resync_fo = bit + 1;

		if (unlikely(drbd_bm_test_bit(mdev, bit) == 0)) {
			drbd_rs_complete_io(mdev, sector);
			goto next_sector;
		}

578
#if DRBD_MAX_BIO_SIZE > BM_BLOCK_SIZE
P
Philipp Reisner 已提交
579 580 581 582 583 584 585
		/* try to find some adjacent bits.
		 * we stop if we have already the maximum req size.
		 *
		 * Additionally always align bigger requests, in order to
		 * be prepared for all stripe sizes of software RAIDs.
		 */
		align = 1;
586
		rollback_i = i;
P
Philipp Reisner 已提交
587
		for (;;) {
588
			if (size + BM_BLOCK_SIZE > max_bio_size)
P
Philipp Reisner 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619
				break;

			/* Be always aligned */
			if (sector & ((1<<(align+3))-1))
				break;

			/* do not cross extent boundaries */
			if (((bit+1) & BM_BLOCKS_PER_BM_EXT_MASK) == 0)
				break;
			/* now, is it actually dirty, after all?
			 * caution, drbd_bm_test_bit is tri-state for some
			 * obscure reason; ( b == 0 ) would get the out-of-band
			 * only accidentally right because of the "oddly sized"
			 * adjustment below */
			if (drbd_bm_test_bit(mdev, bit+1) != 1)
				break;
			bit++;
			size += BM_BLOCK_SIZE;
			if ((BM_BLOCK_SIZE << align) <= size)
				align++;
			i++;
		}
		/* if we merged some,
		 * reset the offset to start the next drbd_bm_find_next from */
		if (size > BM_BLOCK_SIZE)
			mdev->bm_resync_fo = bit + 1;
#endif

		/* adjust very last sectors, in case we are oddly sized */
		if (sector + (size>>9) > capacity)
			size = (capacity-sector)<<9;
620
		if (mdev->tconn->agreed_pro_version >= 89 && mdev->tconn->csums_tfm) {
P
Philipp Reisner 已提交
621
			switch (read_for_csum(mdev, sector, size)) {
622
			case -EIO: /* Disk failure */
P
Philipp Reisner 已提交
623
				put_ldev(mdev);
624
				return -EIO;
625
			case -EAGAIN: /* allocation failed, or ldev busy */
P
Philipp Reisner 已提交
626 627
				drbd_rs_complete_io(mdev, sector);
				mdev->bm_resync_fo = BM_SECT_TO_BIT(sector);
628
				i = rollback_i;
P
Philipp Reisner 已提交
629
				goto requeue;
630 631 632 633 634
			case 0:
				/* everything ok */
				break;
			default:
				BUG();
P
Philipp Reisner 已提交
635 636
			}
		} else {
637 638
			int err;

P
Philipp Reisner 已提交
639
			inc_rs_pending(mdev);
640 641 642
			err = drbd_send_drequest(mdev, P_RS_DATA_REQUEST,
						 sector, size, ID_SYNCER);
			if (err) {
P
Philipp Reisner 已提交
643 644 645
				dev_err(DEV, "drbd_send_drequest() failed, aborting...\n");
				dec_rs_pending(mdev);
				put_ldev(mdev);
646
				return err;
P
Philipp Reisner 已提交
647 648 649 650 651 652 653 654 655 656 657 658
			}
		}
	}

	if (mdev->bm_resync_fo >= drbd_bm_bits(mdev)) {
		/* last syncer _request_ was sent,
		 * but the P_RS_DATA_REPLY not yet received.  sync will end (and
		 * next sync group will resume), as soon as we receive the last
		 * resync data block, and the last bit is cleared.
		 * until then resync "work" is "inactive" ...
		 */
		put_ldev(mdev);
659
		return 0;
P
Philipp Reisner 已提交
660 661 662
	}

 requeue:
663
	mdev->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9));
P
Philipp Reisner 已提交
664 665
	mod_timer(&mdev->resync_timer, jiffies + SLEEP_TIME);
	put_ldev(mdev);
666
	return 0;
P
Philipp Reisner 已提交
667 668
}

669
static int w_make_ov_request(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
670
{
671
	struct drbd_conf *mdev = w->mdev;
P
Philipp Reisner 已提交
672 673 674 675 676 677 678
	int number, i, size;
	sector_t sector;
	const sector_t capacity = drbd_get_capacity(mdev->this_bdev);

	if (unlikely(cancel))
		return 1;

679
	number = drbd_rs_number_requests(mdev);
P
Philipp Reisner 已提交
680 681 682 683 684 685 686 687 688

	sector = mdev->ov_position;
	for (i = 0; i < number; i++) {
		if (sector >= capacity) {
			return 1;
		}

		size = BM_BLOCK_SIZE;

689 690
		if (drbd_rs_should_slow_down(mdev, sector) ||
		    drbd_try_rs_begin_io(mdev, sector)) {
P
Philipp Reisner 已提交
691 692 693 694 695 696 697 698
			mdev->ov_position = sector;
			goto requeue;
		}

		if (sector + (size>>9) > capacity)
			size = (capacity-sector)<<9;

		inc_rs_pending(mdev);
699
		if (drbd_send_ov_request(mdev, sector, size)) {
P
Philipp Reisner 已提交
700 701 702 703 704 705 706 707
			dec_rs_pending(mdev);
			return 0;
		}
		sector += BM_SECT_PER_BIT;
	}
	mdev->ov_position = sector;

 requeue:
708
	mdev->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9));
P
Philipp Reisner 已提交
709 710 711 712
	mod_timer(&mdev->resync_timer, jiffies + SLEEP_TIME);
	return 1;
}

713
int w_ov_finished(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
714
{
715
	struct drbd_conf *mdev = w->mdev;
P
Philipp Reisner 已提交
716
	kfree(w);
717
	ov_out_of_sync_print(mdev);
P
Philipp Reisner 已提交
718 719
	drbd_resync_finished(mdev);

720
	return 0;
P
Philipp Reisner 已提交
721 722
}

723
static int w_resync_finished(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
724
{
725
	struct drbd_conf *mdev = w->mdev;
P
Philipp Reisner 已提交
726 727 728 729
	kfree(w);

	drbd_resync_finished(mdev);

730
	return 0;
P
Philipp Reisner 已提交
731 732
}

733 734
static void ping_peer(struct drbd_conf *mdev)
{
735 736 737 738 739 740
	struct drbd_tconn *tconn = mdev->tconn;

	clear_bit(GOT_PING_ACK, &tconn->flags);
	request_ping(tconn);
	wait_event(tconn->ping_wait,
		   test_bit(GOT_PING_ACK, &tconn->flags) || mdev->state.conn < C_CONNECTED);
741 742
}

P
Philipp Reisner 已提交
743 744 745 746 747 748 749
int drbd_resync_finished(struct drbd_conf *mdev)
{
	unsigned long db, dt, dbdt;
	unsigned long n_oos;
	union drbd_state os, ns;
	struct drbd_work *w;
	char *khelper_cmd = NULL;
750
	int verify_done = 0;
P
Philipp Reisner 已提交
751 752 753 754 755 756 757 758 759 760

	/* Remove all elements from the resync LRU. Since future actions
	 * might set bits in the (main) bitmap, then the entries in the
	 * resync LRU would be wrong. */
	if (drbd_rs_del_all(mdev)) {
		/* In case this is not possible now, most probably because
		 * there are P_RS_DATA_REPLY Packets lingering on the worker's
		 * queue (or even the read operations for those packets
		 * is not finished by now).   Retry in 100ms. */

761
		schedule_timeout_interruptible(HZ / 10);
P
Philipp Reisner 已提交
762 763 764
		w = kmalloc(sizeof(struct drbd_work), GFP_ATOMIC);
		if (w) {
			w->cb = w_resync_finished;
765
			drbd_queue_work(&mdev->tconn->data.work, w);
P
Philipp Reisner 已提交
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
			return 1;
		}
		dev_err(DEV, "Warn failed to drbd_rs_del_all() and to kmalloc(w).\n");
	}

	dt = (jiffies - mdev->rs_start - mdev->rs_paused) / HZ;
	if (dt <= 0)
		dt = 1;
	db = mdev->rs_total;
	dbdt = Bit2KB(db/dt);
	mdev->rs_paused /= HZ;

	if (!get_ldev(mdev))
		goto out;

781 782
	ping_peer(mdev);

783
	spin_lock_irq(&mdev->tconn->req_lock);
P
Philipp Reisner 已提交
784 785
	os = mdev->state;

786 787
	verify_done = (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T);

P
Philipp Reisner 已提交
788 789 790 791 792 793 794 795 796
	/* This protects us against multiple calls (that can happen in the presence
	   of application IO), and against connectivity loss just before we arrive here. */
	if (os.conn <= C_CONNECTED)
		goto out_unlock;

	ns = os;
	ns.conn = C_CONNECTED;

	dev_info(DEV, "%s done (total %lu sec; paused %lu sec; %lu K/sec)\n",
797
	     verify_done ? "Online verify " : "Resync",
P
Philipp Reisner 已提交
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
	     dt + mdev->rs_paused, mdev->rs_paused, dbdt);

	n_oos = drbd_bm_total_weight(mdev);

	if (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T) {
		if (n_oos) {
			dev_alert(DEV, "Online verify found %lu %dk block out of sync!\n",
			      n_oos, Bit2KB(1));
			khelper_cmd = "out-of-sync";
		}
	} else {
		D_ASSERT((n_oos - mdev->rs_failed) == 0);

		if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T)
			khelper_cmd = "after-resync-target";

814
		if (mdev->tconn->csums_tfm && mdev->rs_total) {
P
Philipp Reisner 已提交
815 816 817 818 819
			const unsigned long s = mdev->rs_same_csum;
			const unsigned long t = mdev->rs_total;
			const int ratio =
				(t == 0)     ? 0 :
			(t < 100000) ? ((s*100)/t) : (s/(t/100));
B
Bart Van Assche 已提交
820
			dev_info(DEV, "%u %% had equal checksums, eliminated: %luK; "
P
Philipp Reisner 已提交
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
			     "transferred %luK total %luK\n",
			     ratio,
			     Bit2KB(mdev->rs_same_csum),
			     Bit2KB(mdev->rs_total - mdev->rs_same_csum),
			     Bit2KB(mdev->rs_total));
		}
	}

	if (mdev->rs_failed) {
		dev_info(DEV, "            %lu failed blocks\n", mdev->rs_failed);

		if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) {
			ns.disk = D_INCONSISTENT;
			ns.pdsk = D_UP_TO_DATE;
		} else {
			ns.disk = D_UP_TO_DATE;
			ns.pdsk = D_INCONSISTENT;
		}
	} else {
		ns.disk = D_UP_TO_DATE;
		ns.pdsk = D_UP_TO_DATE;

		if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) {
			if (mdev->p_uuid) {
				int i;
				for (i = UI_BITMAP ; i <= UI_HISTORY_END ; i++)
					_drbd_uuid_set(mdev, i, mdev->p_uuid[i]);
				drbd_uuid_set(mdev, UI_BITMAP, mdev->ldev->md.uuid[UI_CURRENT]);
				_drbd_uuid_set(mdev, UI_CURRENT, mdev->p_uuid[UI_CURRENT]);
			} else {
				dev_err(DEV, "mdev->p_uuid is NULL! BUG\n");
			}
		}

855 856 857 858 859 860 861 862 863 864 865 866
		if (!(os.conn == C_VERIFY_S || os.conn == C_VERIFY_T)) {
			/* for verify runs, we don't update uuids here,
			 * so there would be nothing to report. */
			drbd_uuid_set_bm(mdev, 0UL);
			drbd_print_uuids(mdev, "updated UUIDs");
			if (mdev->p_uuid) {
				/* Now the two UUID sets are equal, update what we
				 * know of the peer. */
				int i;
				for (i = UI_CURRENT ; i <= UI_HISTORY_END ; i++)
					mdev->p_uuid[i] = mdev->ldev->md.uuid[i];
			}
P
Philipp Reisner 已提交
867 868 869 870 871
		}
	}

	_drbd_set_state(mdev, ns, CS_VERBOSE, NULL);
out_unlock:
872
	spin_unlock_irq(&mdev->tconn->req_lock);
P
Philipp Reisner 已提交
873 874 875 876 877
	put_ldev(mdev);
out:
	mdev->rs_total  = 0;
	mdev->rs_failed = 0;
	mdev->rs_paused = 0;
878 879
	if (verify_done)
		mdev->ov_start_sector = 0;
P
Philipp Reisner 已提交
880

881 882
	drbd_md_sync(mdev);

P
Philipp Reisner 已提交
883 884 885 886 887 888 889
	if (khelper_cmd)
		drbd_khelper(mdev, khelper_cmd);

	return 1;
}

/* helper */
890
static void move_to_net_ee_or_free(struct drbd_conf *mdev, struct drbd_peer_request *peer_req)
P
Philipp Reisner 已提交
891
{
892
	if (drbd_ee_has_active_page(peer_req)) {
P
Philipp Reisner 已提交
893
		/* This might happen if sendpage() has not finished */
894
		int i = (peer_req->i.size + PAGE_SIZE -1) >> PAGE_SHIFT;
895 896
		atomic_add(i, &mdev->pp_in_use_by_net);
		atomic_sub(i, &mdev->pp_in_use);
897
		spin_lock_irq(&mdev->tconn->req_lock);
898
		list_add_tail(&peer_req->w.list, &mdev->net_ee);
899
		spin_unlock_irq(&mdev->tconn->req_lock);
900
		wake_up(&drbd_pp_wait);
P
Philipp Reisner 已提交
901
	} else
902
		drbd_free_ee(mdev, peer_req);
P
Philipp Reisner 已提交
903 904 905 906 907 908 909 910
}

/**
 * w_e_end_data_req() - Worker callback, to send a P_DATA_REPLY packet in response to a P_DATA_REQUEST
 * @mdev:	DRBD device.
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
911
int w_e_end_data_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
912
{
913
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
914
	struct drbd_conf *mdev = w->mdev;
915
	int err;
P
Philipp Reisner 已提交
916 917

	if (unlikely(cancel)) {
918
		drbd_free_ee(mdev, peer_req);
P
Philipp Reisner 已提交
919
		dec_unacked(mdev);
920
		return 0;
P
Philipp Reisner 已提交
921 922
	}

923
	if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
924
		err = drbd_send_block(mdev, P_DATA_REPLY, peer_req);
P
Philipp Reisner 已提交
925 926 927
	} else {
		if (__ratelimit(&drbd_ratelimit_state))
			dev_err(DEV, "Sending NegDReply. sector=%llus.\n",
928
			    (unsigned long long)peer_req->i.sector);
P
Philipp Reisner 已提交
929

930
		err = drbd_send_ack(mdev, P_NEG_DREPLY, peer_req);
P
Philipp Reisner 已提交
931 932 933 934
	}

	dec_unacked(mdev);

935
	move_to_net_ee_or_free(mdev, peer_req);
P
Philipp Reisner 已提交
936

937
	if (unlikely(err))
P
Philipp Reisner 已提交
938
		dev_err(DEV, "drbd_send_block() failed\n");
939
	return err;
P
Philipp Reisner 已提交
940 941 942 943 944 945 946 947
}

/**
 * w_e_end_rsdata_req() - Worker callback to send a P_RS_DATA_REPLY packet in response to a P_RS_DATA_REQUESTRS
 * @mdev:	DRBD device.
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
948
int w_e_end_rsdata_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
949
{
950
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
951
	struct drbd_conf *mdev = w->mdev;
952
	int err;
P
Philipp Reisner 已提交
953 954

	if (unlikely(cancel)) {
955
		drbd_free_ee(mdev, peer_req);
P
Philipp Reisner 已提交
956
		dec_unacked(mdev);
957
		return 0;
P
Philipp Reisner 已提交
958 959 960
	}

	if (get_ldev_if_state(mdev, D_FAILED)) {
961
		drbd_rs_complete_io(mdev, peer_req->i.sector);
P
Philipp Reisner 已提交
962 963 964
		put_ldev(mdev);
	}

965
	if (mdev->state.conn == C_AHEAD) {
966
		err = drbd_send_ack(mdev, P_RS_CANCEL, peer_req);
967
	} else if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
P
Philipp Reisner 已提交
968 969
		if (likely(mdev->state.pdsk >= D_INCONSISTENT)) {
			inc_rs_pending(mdev);
970
			err = drbd_send_block(mdev, P_RS_DATA_REPLY, peer_req);
P
Philipp Reisner 已提交
971 972 973 974
		} else {
			if (__ratelimit(&drbd_ratelimit_state))
				dev_err(DEV, "Not sending RSDataReply, "
				    "partner DISKLESS!\n");
975
			err = 0;
P
Philipp Reisner 已提交
976 977 978 979
		}
	} else {
		if (__ratelimit(&drbd_ratelimit_state))
			dev_err(DEV, "Sending NegRSDReply. sector %llus.\n",
980
			    (unsigned long long)peer_req->i.sector);
P
Philipp Reisner 已提交
981

982
		err = drbd_send_ack(mdev, P_NEG_RS_DREPLY, peer_req);
P
Philipp Reisner 已提交
983 984

		/* update resync data with failure */
985
		drbd_rs_failed_io(mdev, peer_req->i.sector, peer_req->i.size);
P
Philipp Reisner 已提交
986 987 988 989
	}

	dec_unacked(mdev);

990
	move_to_net_ee_or_free(mdev, peer_req);
P
Philipp Reisner 已提交
991

992
	if (unlikely(err))
P
Philipp Reisner 已提交
993
		dev_err(DEV, "drbd_send_block() failed\n");
994
	return err;
P
Philipp Reisner 已提交
995 996
}

997
int w_e_end_csum_rs_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
998
{
999
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1000
	struct drbd_conf *mdev = w->mdev;
P
Philipp Reisner 已提交
1001 1002 1003
	struct digest_info *di;
	int digest_size;
	void *digest = NULL;
1004
	int err, eq = 0;
P
Philipp Reisner 已提交
1005 1006

	if (unlikely(cancel)) {
1007
		drbd_free_ee(mdev, peer_req);
P
Philipp Reisner 已提交
1008
		dec_unacked(mdev);
1009
		return 0;
P
Philipp Reisner 已提交
1010 1011
	}

1012
	if (get_ldev(mdev)) {
1013
		drbd_rs_complete_io(mdev, peer_req->i.sector);
1014 1015
		put_ldev(mdev);
	}
P
Philipp Reisner 已提交
1016

1017
	di = peer_req->digest;
P
Philipp Reisner 已提交
1018

1019
	if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
P
Philipp Reisner 已提交
1020 1021 1022
		/* quick hack to try to avoid a race against reconfiguration.
		 * a real fix would be much more involved,
		 * introducing more locking mechanisms */
1023 1024
		if (mdev->tconn->csums_tfm) {
			digest_size = crypto_hash_digestsize(mdev->tconn->csums_tfm);
P
Philipp Reisner 已提交
1025 1026 1027 1028
			D_ASSERT(digest_size == di->digest_size);
			digest = kmalloc(digest_size, GFP_NOIO);
		}
		if (digest) {
1029
			drbd_csum_ee(mdev, mdev->tconn->csums_tfm, peer_req, digest);
P
Philipp Reisner 已提交
1030 1031 1032 1033 1034
			eq = !memcmp(digest, di->digest, digest_size);
			kfree(digest);
		}

		if (eq) {
1035
			drbd_set_in_sync(mdev, peer_req->i.sector, peer_req->i.size);
1036
			/* rs_same_csums unit is BM_BLOCK_SIZE */
1037
			mdev->rs_same_csum += peer_req->i.size >> BM_BLOCK_SHIFT;
1038
			err = drbd_send_ack(mdev, P_RS_IS_IN_SYNC, peer_req);
P
Philipp Reisner 已提交
1039 1040
		} else {
			inc_rs_pending(mdev);
1041 1042
			peer_req->block_id = ID_SYNCER; /* By setting block_id, digest pointer becomes invalid! */
			peer_req->flags &= ~EE_HAS_DIGEST; /* This peer request no longer has a digest pointer */
1043
			kfree(di);
1044
			err = drbd_send_block(mdev, P_RS_DATA_REPLY, peer_req);
P
Philipp Reisner 已提交
1045 1046
		}
	} else {
1047
		err = drbd_send_ack(mdev, P_NEG_RS_DREPLY, peer_req);
P
Philipp Reisner 已提交
1048 1049 1050 1051 1052
		if (__ratelimit(&drbd_ratelimit_state))
			dev_err(DEV, "Sending NegDReply. I guess it gets messy.\n");
	}

	dec_unacked(mdev);
1053
	move_to_net_ee_or_free(mdev, peer_req);
P
Philipp Reisner 已提交
1054

1055
	if (unlikely(err))
P
Philipp Reisner 已提交
1056
		dev_err(DEV, "drbd_send_block/ack() failed\n");
1057
	return err;
P
Philipp Reisner 已提交
1058 1059
}

1060
int w_e_end_ov_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1061
{
1062
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1063
	struct drbd_conf *mdev = w->mdev;
1064 1065
	sector_t sector = peer_req->i.sector;
	unsigned int size = peer_req->i.size;
P
Philipp Reisner 已提交
1066 1067
	int digest_size;
	void *digest;
1068
	int err = 0;
P
Philipp Reisner 已提交
1069 1070 1071 1072

	if (unlikely(cancel))
		goto out;

1073
	digest_size = crypto_hash_digestsize(mdev->tconn->verify_tfm);
P
Philipp Reisner 已提交
1074
	digest = kmalloc(digest_size, GFP_NOIO);
1075
	if (!digest) {
1076
		err = 1;	/* terminate the connection in case the allocation failed */
1077
		goto out;
P
Philipp Reisner 已提交
1078 1079
	}

1080
	if (likely(!(peer_req->flags & EE_WAS_ERROR)))
1081
		drbd_csum_ee(mdev, mdev->tconn->verify_tfm, peer_req, digest);
1082 1083 1084
	else
		memset(digest, 0, digest_size);

1085 1086 1087 1088 1089
	/* Free e and pages before send.
	 * In case we block on congestion, we could otherwise run into
	 * some distributed deadlock, if the other side blocks on
	 * congestion as well, because our receiver blocks in
	 * drbd_pp_alloc due to pp_in_use > max_buffers. */
1090 1091
	drbd_free_ee(mdev, peer_req);
	peer_req = NULL;
1092
	inc_rs_pending(mdev);
1093 1094
	err = drbd_send_drequest_csum(mdev, sector, size, digest, digest_size, P_OV_REPLY);
	if (err)
1095 1096 1097
		dec_rs_pending(mdev);
	kfree(digest);

P
Philipp Reisner 已提交
1098
out:
1099 1100
	if (peer_req)
		drbd_free_ee(mdev, peer_req);
P
Philipp Reisner 已提交
1101
	dec_unacked(mdev);
1102
	return err;
P
Philipp Reisner 已提交
1103 1104
}

1105
void drbd_ov_out_of_sync_found(struct drbd_conf *mdev, sector_t sector, int size)
P
Philipp Reisner 已提交
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
{
	if (mdev->ov_last_oos_start + mdev->ov_last_oos_size == sector) {
		mdev->ov_last_oos_size += size>>9;
	} else {
		mdev->ov_last_oos_start = sector;
		mdev->ov_last_oos_size = size>>9;
	}
	drbd_set_out_of_sync(mdev, sector, size);
}

1116
int w_e_end_ov_reply(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1117
{
1118
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1119
	struct drbd_conf *mdev = w->mdev;
P
Philipp Reisner 已提交
1120 1121
	struct digest_info *di;
	void *digest;
1122 1123
	sector_t sector = peer_req->i.sector;
	unsigned int size = peer_req->i.size;
1124
	int digest_size;
1125
	int err, eq = 0;
P
Philipp Reisner 已提交
1126 1127

	if (unlikely(cancel)) {
1128
		drbd_free_ee(mdev, peer_req);
P
Philipp Reisner 已提交
1129
		dec_unacked(mdev);
1130
		return 0;
P
Philipp Reisner 已提交
1131 1132 1133 1134
	}

	/* after "cancel", because after drbd_disconnect/drbd_rs_cancel_all
	 * the resync lru has been cleaned up already */
1135
	if (get_ldev(mdev)) {
1136
		drbd_rs_complete_io(mdev, peer_req->i.sector);
1137 1138
		put_ldev(mdev);
	}
P
Philipp Reisner 已提交
1139

1140
	di = peer_req->digest;
P
Philipp Reisner 已提交
1141

1142
	if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
1143
		digest_size = crypto_hash_digestsize(mdev->tconn->verify_tfm);
P
Philipp Reisner 已提交
1144 1145
		digest = kmalloc(digest_size, GFP_NOIO);
		if (digest) {
1146
			drbd_csum_ee(mdev, mdev->tconn->verify_tfm, peer_req, digest);
P
Philipp Reisner 已提交
1147 1148 1149 1150 1151 1152 1153

			D_ASSERT(digest_size == di->digest_size);
			eq = !memcmp(digest, di->digest, digest_size);
			kfree(digest);
		}
	}

1154 1155 1156 1157 1158
	/* Free peer_req and pages before send.
	 * In case we block on congestion, we could otherwise run into
	 * some distributed deadlock, if the other side blocks on
	 * congestion as well, because our receiver blocks in
	 * drbd_pp_alloc due to pp_in_use > max_buffers. */
1159
	drbd_free_ee(mdev, peer_req);
P
Philipp Reisner 已提交
1160
	if (!eq)
1161
		drbd_ov_out_of_sync_found(mdev, sector, size);
P
Philipp Reisner 已提交
1162
	else
1163
		ov_out_of_sync_print(mdev);
P
Philipp Reisner 已提交
1164

1165
	err = drbd_send_ack_ex(mdev, P_OV_RESULT, sector, size,
1166
			       eq ? ID_IN_SYNC : ID_OUT_OF_SYNC);
P
Philipp Reisner 已提交
1167

1168
	dec_unacked(mdev);
P
Philipp Reisner 已提交
1169

1170 1171 1172 1173 1174 1175 1176
	--mdev->ov_left;

	/* let's advance progress step marks only for every other megabyte */
	if ((mdev->ov_left & 0x200) == 0x200)
		drbd_advance_rs_marks(mdev, mdev->ov_left);

	if (mdev->ov_left == 0) {
1177
		ov_out_of_sync_print(mdev);
P
Philipp Reisner 已提交
1178 1179 1180
		drbd_resync_finished(mdev);
	}

1181
	return err;
P
Philipp Reisner 已提交
1182 1183
}

1184
int w_prev_work_done(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1185 1186
{
	struct drbd_wq_barrier *b = container_of(w, struct drbd_wq_barrier, w);
1187

P
Philipp Reisner 已提交
1188
	complete(&b->done);
1189
	return 0;
P
Philipp Reisner 已提交
1190 1191
}

1192
int w_send_barrier(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1193 1194
{
	struct drbd_tl_epoch *b = container_of(w, struct drbd_tl_epoch, w);
1195
	struct drbd_conf *mdev = w->mdev;
1196
	struct p_barrier *p = mdev->tconn->data.sbuf;
1197
	int err = 0;
P
Philipp Reisner 已提交
1198 1199 1200 1201 1202 1203

	/* really avoid racing with tl_clear.  w.cb may have been referenced
	 * just before it was reassigned and re-queued, so double check that.
	 * actually, this race was harmless, since we only try to send the
	 * barrier packet here, and otherwise do nothing with the object.
	 * but compare with the head of w_clear_epoch */
1204
	spin_lock_irq(&mdev->tconn->req_lock);
P
Philipp Reisner 已提交
1205 1206
	if (w->cb != w_send_barrier || mdev->state.conn < C_CONNECTED)
		cancel = 1;
1207
	spin_unlock_irq(&mdev->tconn->req_lock);
P
Philipp Reisner 已提交
1208 1209
	if (cancel)
		return 0;
1210 1211 1212 1213

	err = drbd_get_data_sock(mdev->tconn);
	if (err)
		return err;
P
Philipp Reisner 已提交
1214 1215 1216 1217
	p->barrier = b->br_number;
	/* inc_ap_pending was done where this was queued.
	 * dec_ap_pending will be done in got_BarrierAck
	 * or (on connection loss) in w_clear_epoch.  */
1218
	err = _drbd_send_cmd(mdev, &mdev->tconn->data, P_BARRIER,
1219
			     &p->head, sizeof(*p), 0);
1220
	drbd_put_data_sock(mdev->tconn);
P
Philipp Reisner 已提交
1221

1222
	return err;
P
Philipp Reisner 已提交
1223 1224
}

1225
int w_send_write_hint(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1226
{
1227
	struct drbd_conf *mdev = w->mdev;
P
Philipp Reisner 已提交
1228
	if (cancel)
1229 1230
		return 0;
	return drbd_send_short_cmd(mdev, P_UNPLUG_REMOTE);
P
Philipp Reisner 已提交
1231 1232
}

1233
int w_send_out_of_sync(struct drbd_work *w, int cancel)
1234 1235
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1236
	struct drbd_conf *mdev = w->mdev;
1237
	int err;
1238 1239

	if (unlikely(cancel)) {
1240
		req_mod(req, SEND_CANCELED);
1241
		return 0;
1242 1243
	}

1244
	err = drbd_send_out_of_sync(mdev, req);
1245
	req_mod(req, OOS_HANDED_TO_NETWORK);
1246

1247
	return err;
1248 1249
}

P
Philipp Reisner 已提交
1250 1251 1252 1253 1254 1255
/**
 * w_send_dblock() - Worker callback to send a P_DATA packet in order to mirror a write request
 * @mdev:	DRBD device.
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
1256
int w_send_dblock(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1257 1258
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1259
	struct drbd_conf *mdev = w->mdev;
1260
	int err;
P
Philipp Reisner 已提交
1261 1262

	if (unlikely(cancel)) {
1263
		req_mod(req, SEND_CANCELED);
1264
		return 0;
P
Philipp Reisner 已提交
1265 1266
	}

1267 1268
	err = drbd_send_dblock(mdev, req);
	req_mod(req, err ? SEND_FAILED : HANDED_OVER_TO_NETWORK);
P
Philipp Reisner 已提交
1269

1270
	return err;
P
Philipp Reisner 已提交
1271 1272 1273 1274 1275 1276 1277 1278
}

/**
 * w_send_read_req() - Worker callback to send a read request (P_DATA_REQUEST) packet
 * @mdev:	DRBD device.
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
1279
int w_send_read_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1280 1281
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1282
	struct drbd_conf *mdev = w->mdev;
1283
	int err;
P
Philipp Reisner 已提交
1284 1285

	if (unlikely(cancel)) {
1286
		req_mod(req, SEND_CANCELED);
1287
		return 0;
P
Philipp Reisner 已提交
1288 1289
	}

1290
	err = drbd_send_drequest(mdev, P_DATA_REQUEST, req->i.sector, req->i.size,
1291
				 (unsigned long)req);
P
Philipp Reisner 已提交
1292

1293
	req_mod(req, err ? SEND_FAILED : HANDED_OVER_TO_NETWORK);
P
Philipp Reisner 已提交
1294

1295
	return err;
P
Philipp Reisner 已提交
1296 1297
}

1298
int w_restart_disk_io(struct drbd_work *w, int cancel)
1299 1300
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1301
	struct drbd_conf *mdev = w->mdev;
1302

1303
	if (bio_data_dir(req->master_bio) == WRITE && req->rq_state & RQ_IN_ACT_LOG)
1304
		drbd_al_begin_io(mdev, &req->i);
1305 1306 1307 1308 1309 1310 1311 1312 1313
	/* Calling drbd_al_begin_io() out of the worker might deadlocks
	   theoretically. Practically it can not deadlock, since this is
	   only used when unfreezing IOs. All the extents of the requests
	   that made it into the TL are already active */

	drbd_req_make_private_bio(req, req->master_bio);
	req->private_bio->bi_bdev = mdev->ldev->backing_bdev;
	generic_make_request(req->private_bio);

1314
	return 0;
1315 1316
}

P
Philipp Reisner 已提交
1317 1318 1319 1320 1321
static int _drbd_may_sync_now(struct drbd_conf *mdev)
{
	struct drbd_conf *odev = mdev;

	while (1) {
1322 1323
		if (!odev->ldev)
			return 1;
1324
		if (odev->ldev->dc.resync_after == -1)
P
Philipp Reisner 已提交
1325
			return 1;
1326
		odev = minor_to_mdev(odev->ldev->dc.resync_after);
1327 1328
		if (!expect(odev))
			return 1;
P
Philipp Reisner 已提交
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
		if ((odev->state.conn >= C_SYNC_SOURCE &&
		     odev->state.conn <= C_PAUSED_SYNC_T) ||
		    odev->state.aftr_isp || odev->state.peer_isp ||
		    odev->state.user_isp)
			return 0;
	}
}

/**
 * _drbd_pause_after() - Pause resync on all devices that may not resync now
 * @mdev:	DRBD device.
 *
 * Called from process context only (admin command and after_state_ch).
 */
static int _drbd_pause_after(struct drbd_conf *mdev)
{
	struct drbd_conf *odev;
	int i, rv = 0;

1348
	idr_for_each_entry(&minors, odev, i) {
P
Philipp Reisner 已提交
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
		if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS)
			continue;
		if (!_drbd_may_sync_now(odev))
			rv |= (__drbd_set_state(_NS(odev, aftr_isp, 1), CS_HARD, NULL)
			       != SS_NOTHING_TO_DO);
	}

	return rv;
}

/**
 * _drbd_resume_next() - Resume resync on all devices that may resync now
 * @mdev:	DRBD device.
 *
 * Called from process context only (admin command and worker).
 */
static int _drbd_resume_next(struct drbd_conf *mdev)
{
	struct drbd_conf *odev;
	int i, rv = 0;

1370
	idr_for_each_entry(&minors, odev, i) {
P
Philipp Reisner 已提交
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
		if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS)
			continue;
		if (odev->state.aftr_isp) {
			if (_drbd_may_sync_now(odev))
				rv |= (__drbd_set_state(_NS(odev, aftr_isp, 0),
							CS_HARD, NULL)
				       != SS_NOTHING_TO_DO) ;
		}
	}
	return rv;
}

void resume_next_sg(struct drbd_conf *mdev)
{
	write_lock_irq(&global_state_lock);
	_drbd_resume_next(mdev);
	write_unlock_irq(&global_state_lock);
}

void suspend_other_sg(struct drbd_conf *mdev)
{
	write_lock_irq(&global_state_lock);
	_drbd_pause_after(mdev);
	write_unlock_irq(&global_state_lock);
}

static int sync_after_error(struct drbd_conf *mdev, int o_minor)
{
	struct drbd_conf *odev;

	if (o_minor == -1)
		return NO_ERROR;
	if (o_minor < -1 || minor_to_mdev(o_minor) == NULL)
		return ERR_SYNC_AFTER;

	/* check for loops */
	odev = minor_to_mdev(o_minor);
	while (1) {
		if (odev == mdev)
			return ERR_SYNC_AFTER_CYCLE;

		/* dependency chain ends here, no cycles. */
1413
		if (odev->ldev->dc.resync_after == -1)
P
Philipp Reisner 已提交
1414 1415 1416
			return NO_ERROR;

		/* follow the dependency chain */
1417
		odev = minor_to_mdev(odev->ldev->dc.resync_after);
P
Philipp Reisner 已提交
1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
	}
}

int drbd_alter_sa(struct drbd_conf *mdev, int na)
{
	int changes;
	int retcode;

	write_lock_irq(&global_state_lock);
	retcode = sync_after_error(mdev, na);
	if (retcode == NO_ERROR) {
1429
		mdev->ldev->dc.resync_after = na;
P
Philipp Reisner 已提交
1430 1431 1432 1433 1434 1435 1436 1437 1438
		do {
			changes  = _drbd_pause_after(mdev);
			changes |= _drbd_resume_next(mdev);
		} while (changes);
	}
	write_unlock_irq(&global_state_lock);
	return retcode;
}

1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
void drbd_rs_controller_reset(struct drbd_conf *mdev)
{
	atomic_set(&mdev->rs_sect_in, 0);
	atomic_set(&mdev->rs_sect_ev, 0);
	mdev->rs_in_flight = 0;
	mdev->rs_planed = 0;
	spin_lock(&mdev->peer_seq_lock);
	fifo_set(&mdev->rs_plan_s, 0);
	spin_unlock(&mdev->peer_seq_lock);
}

P
Philipp Reisner 已提交
1450 1451 1452 1453 1454 1455 1456
void start_resync_timer_fn(unsigned long data)
{
	struct drbd_conf *mdev = (struct drbd_conf *) data;

	drbd_queue_work(&mdev->tconn->data.work, &mdev->start_resync_work);
}

1457
int w_start_resync(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1458
{
1459 1460
	struct drbd_conf *mdev = w->mdev;

P
Philipp Reisner 已提交
1461 1462 1463 1464
	if (atomic_read(&mdev->unacked_cnt) || atomic_read(&mdev->rs_pending_cnt)) {
		dev_warn(DEV, "w_start_resync later...\n");
		mdev->start_resync_timer.expires = jiffies + HZ/10;
		add_timer(&mdev->start_resync_timer);
1465
		return 0;
P
Philipp Reisner 已提交
1466 1467 1468 1469
	}

	drbd_start_resync(mdev, C_SYNC_SOURCE);
	clear_bit(AHEAD_TO_SYNC_SOURCE, &mdev->current_epoch->flags);
1470
	return 0;
P
Philipp Reisner 已提交
1471 1472
}

P
Philipp Reisner 已提交
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
/**
 * drbd_start_resync() - Start the resync process
 * @mdev:	DRBD device.
 * @side:	Either C_SYNC_SOURCE or C_SYNC_TARGET
 *
 * This function might bring you directly into one of the
 * C_PAUSED_SYNC_* states.
 */
void drbd_start_resync(struct drbd_conf *mdev, enum drbd_conns side)
{
	union drbd_state ns;
	int r;

1486
	if (mdev->state.conn >= C_SYNC_SOURCE && mdev->state.conn < C_AHEAD) {
P
Philipp Reisner 已提交
1487 1488 1489 1490
		dev_err(DEV, "Resync already running!\n");
		return;
	}

1491 1492 1493 1494 1495 1496 1497
	if (mdev->state.conn < C_AHEAD) {
		/* In case a previous resync run was aborted by an IO error/detach on the peer. */
		drbd_rs_cancel_all(mdev);
		/* This should be done when we abort the resync. We definitely do not
		   want to have this for connections going back and forth between
		   Ahead/Behind and SyncSource/SyncTarget */
	}
P
Philipp Reisner 已提交
1498

1499 1500 1501 1502 1503 1504 1505 1506 1507
	if (!test_bit(B_RS_H_DONE, &mdev->flags)) {
		if (side == C_SYNC_TARGET) {
			/* Since application IO was locked out during C_WF_BITMAP_T and
			   C_WF_SYNC_UUID we are still unmodified. Before going to C_SYNC_TARGET
			   we check that we might make the data inconsistent. */
			r = drbd_khelper(mdev, "before-resync-target");
			r = (r >> 8) & 0xff;
			if (r > 0) {
				dev_info(DEV, "before-resync-target handler returned %d, "
1508
					 "dropping connection.\n", r);
1509
				conn_request_state(mdev->tconn, NS(conn, C_DISCONNECTING), CS_HARD);
1510 1511
				return;
			}
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521
		} else /* C_SYNC_SOURCE */ {
			r = drbd_khelper(mdev, "before-resync-source");
			r = (r >> 8) & 0xff;
			if (r > 0) {
				if (r == 3) {
					dev_info(DEV, "before-resync-source handler returned %d, "
						 "ignoring. Old userland tools?", r);
				} else {
					dev_info(DEV, "before-resync-source handler returned %d, "
						 "dropping connection.\n", r);
1522
					conn_request_state(mdev->tconn, NS(conn, C_DISCONNECTING), CS_HARD);
1523 1524 1525
					return;
				}
			}
1526
		}
P
Philipp Reisner 已提交
1527 1528
	}

1529
	if (current == mdev->tconn->worker.task) {
1530
		/* The worker should not sleep waiting for state_mutex,
1531
		   that can take long */
1532
		if (!mutex_trylock(mdev->state_mutex)) {
1533 1534 1535 1536 1537 1538
			set_bit(B_RS_H_DONE, &mdev->flags);
			mdev->start_resync_timer.expires = jiffies + HZ/5;
			add_timer(&mdev->start_resync_timer);
			return;
		}
	} else {
1539
		mutex_lock(mdev->state_mutex);
1540 1541
	}
	clear_bit(B_RS_H_DONE, &mdev->flags);
P
Philipp Reisner 已提交
1542 1543

	if (!get_ldev_if_state(mdev, D_NEGOTIATING)) {
1544
		mutex_unlock(mdev->state_mutex);
P
Philipp Reisner 已提交
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566
		return;
	}

	write_lock_irq(&global_state_lock);
	ns = mdev->state;

	ns.aftr_isp = !_drbd_may_sync_now(mdev);

	ns.conn = side;

	if (side == C_SYNC_TARGET)
		ns.disk = D_INCONSISTENT;
	else /* side == C_SYNC_SOURCE */
		ns.pdsk = D_INCONSISTENT;

	r = __drbd_set_state(mdev, ns, CS_VERBOSE, NULL);
	ns = mdev->state;

	if (ns.conn < C_CONNECTED)
		r = SS_UNKNOWN_ERROR;

	if (r == SS_SUCCESS) {
1567 1568 1569 1570
		unsigned long tw = drbd_bm_total_weight(mdev);
		unsigned long now = jiffies;
		int i;

P
Philipp Reisner 已提交
1571 1572 1573
		mdev->rs_failed    = 0;
		mdev->rs_paused    = 0;
		mdev->rs_same_csum = 0;
1574 1575
		mdev->rs_last_events = 0;
		mdev->rs_last_sect_ev = 0;
1576 1577 1578 1579 1580 1581
		mdev->rs_total     = tw;
		mdev->rs_start     = now;
		for (i = 0; i < DRBD_SYNC_MARKS; i++) {
			mdev->rs_mark_left[i] = tw;
			mdev->rs_mark_time[i] = now;
		}
P
Philipp Reisner 已提交
1582 1583 1584
		_drbd_pause_after(mdev);
	}
	write_unlock_irq(&global_state_lock);
1585

P
Philipp Reisner 已提交
1586 1587 1588 1589 1590
	if (r == SS_SUCCESS) {
		dev_info(DEV, "Began resync as %s (will sync %lu KB [%lu bits set]).\n",
		     drbd_conn_str(ns.conn),
		     (unsigned long) mdev->rs_total << (BM_BLOCK_SHIFT-10),
		     (unsigned long) mdev->rs_total);
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
		if (side == C_SYNC_TARGET)
			mdev->bm_resync_fo = 0;

		/* Since protocol 96, we must serialize drbd_gen_and_send_sync_uuid
		 * with w_send_oos, or the sync target will get confused as to
		 * how much bits to resync.  We cannot do that always, because for an
		 * empty resync and protocol < 95, we need to do it here, as we call
		 * drbd_resync_finished from here in that case.
		 * We drbd_gen_and_send_sync_uuid here for protocol < 96,
		 * and from after_state_ch otherwise. */
1601
		if (side == C_SYNC_SOURCE && mdev->tconn->agreed_pro_version < 96)
1602
			drbd_gen_and_send_sync_uuid(mdev);
P
Philipp Reisner 已提交
1603

1604
		if (mdev->tconn->agreed_pro_version < 95 && mdev->rs_total == 0) {
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
			/* This still has a race (about when exactly the peers
			 * detect connection loss) that can lead to a full sync
			 * on next handshake. In 8.3.9 we fixed this with explicit
			 * resync-finished notifications, but the fix
			 * introduces a protocol change.  Sleeping for some
			 * time longer than the ping interval + timeout on the
			 * SyncSource, to give the SyncTarget the chance to
			 * detect connection loss, then waiting for a ping
			 * response (implicit in drbd_resync_finished) reduces
			 * the race considerably, but does not solve it. */
			if (side == C_SYNC_SOURCE)
				schedule_timeout_interruptible(
1617 1618
					mdev->tconn->net_conf->ping_int * HZ +
					mdev->tconn->net_conf->ping_timeo*HZ/9);
P
Philipp Reisner 已提交
1619 1620 1621
			drbd_resync_finished(mdev);
		}

1622
		drbd_rs_controller_reset(mdev);
P
Philipp Reisner 已提交
1623 1624 1625 1626 1627 1628 1629 1630 1631
		/* ns.conn may already be != mdev->state.conn,
		 * we may have been paused in between, or become paused until
		 * the timer triggers.
		 * No matter, that is handled in resync_timer_fn() */
		if (ns.conn == C_SYNC_TARGET)
			mod_timer(&mdev->resync_timer, jiffies);

		drbd_md_sync(mdev);
	}
1632
	put_ldev(mdev);
1633
	mutex_unlock(mdev->state_mutex);
P
Philipp Reisner 已提交
1634 1635 1636 1637
}

int drbd_worker(struct drbd_thread *thi)
{
1638
	struct drbd_tconn *tconn = thi->tconn;
P
Philipp Reisner 已提交
1639
	struct drbd_work *w = NULL;
1640
	struct drbd_conf *mdev;
P
Philipp Reisner 已提交
1641
	LIST_HEAD(work_list);
1642
	int vnr, intr = 0;
P
Philipp Reisner 已提交
1643

1644
	while (get_t_state(thi) == RUNNING) {
1645
		drbd_thread_current_set_cpu(thi);
P
Philipp Reisner 已提交
1646

1647 1648 1649 1650 1651
		if (down_trylock(&tconn->data.work.s)) {
			mutex_lock(&tconn->data.mutex);
			if (tconn->data.socket && !tconn->net_conf->no_cork)
				drbd_tcp_uncork(tconn->data.socket);
			mutex_unlock(&tconn->data.mutex);
P
Philipp Reisner 已提交
1652

1653
			intr = down_interruptible(&tconn->data.work.s);
P
Philipp Reisner 已提交
1654

1655 1656 1657 1658
			mutex_lock(&tconn->data.mutex);
			if (tconn->data.socket  && !tconn->net_conf->no_cork)
				drbd_tcp_cork(tconn->data.socket);
			mutex_unlock(&tconn->data.mutex);
P
Philipp Reisner 已提交
1659 1660 1661 1662
		}

		if (intr) {
			flush_signals(current);
1663 1664
			if (get_t_state(thi) == RUNNING) {
				conn_warn(tconn, "Worker got an unexpected signal\n");
P
Philipp Reisner 已提交
1665
				continue;
1666
			}
P
Philipp Reisner 已提交
1667 1668 1669
			break;
		}

1670
		if (get_t_state(thi) != RUNNING)
P
Philipp Reisner 已提交
1671 1672 1673 1674 1675 1676
			break;
		/* With this break, we have done a down() but not consumed
		   the entry from the list. The cleanup code takes care of
		   this...   */

		w = NULL;
1677 1678
		spin_lock_irq(&tconn->data.work.q_lock);
		if (list_empty(&tconn->data.work.q)) {
P
Philipp Reisner 已提交
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
			/* something terribly wrong in our logic.
			 * we were able to down() the semaphore,
			 * but the list is empty... doh.
			 *
			 * what is the best thing to do now?
			 * try again from scratch, restarting the receiver,
			 * asender, whatnot? could break even more ugly,
			 * e.g. when we are primary, but no good local data.
			 *
			 * I'll try to get away just starting over this loop.
			 */
1690 1691
			conn_warn(tconn, "Work list unexpectedly empty\n");
			spin_unlock_irq(&tconn->data.work.q_lock);
P
Philipp Reisner 已提交
1692 1693
			continue;
		}
1694
		w = list_entry(tconn->data.work.q.next, struct drbd_work, list);
P
Philipp Reisner 已提交
1695
		list_del_init(&w->list);
1696
		spin_unlock_irq(&tconn->data.work.q_lock);
P
Philipp Reisner 已提交
1697

1698
		if (w->cb(w, tconn->cstate < C_WF_REPORT_PARAMS)) {
P
Philipp Reisner 已提交
1699
			/* dev_warn(DEV, "worker: a callback failed! \n"); */
1700 1701
			if (tconn->cstate >= C_WF_REPORT_PARAMS)
				conn_request_state(tconn, NS(conn, C_NETWORK_FAILURE), CS_HARD);
P
Philipp Reisner 已提交
1702 1703 1704
		}
	}

1705 1706 1707 1708
	spin_lock_irq(&tconn->data.work.q_lock);
	while (!list_empty(&tconn->data.work.q)) {
		list_splice_init(&tconn->data.work.q, &work_list);
		spin_unlock_irq(&tconn->data.work.q_lock);
P
Philipp Reisner 已提交
1709 1710 1711 1712

		while (!list_empty(&work_list)) {
			w = list_entry(work_list.next, struct drbd_work, list);
			list_del_init(&w->list);
1713
			w->cb(w, 1);
P
Philipp Reisner 已提交
1714 1715
		}

1716
		spin_lock_irq(&tconn->data.work.q_lock);
P
Philipp Reisner 已提交
1717
	}
1718
	sema_init(&tconn->data.work.s, 0);
P
Philipp Reisner 已提交
1719 1720 1721 1722 1723
	/* DANGEROUS race: if someone did queue his work within the spinlock,
	 * but up() ed outside the spinlock, we could get an up() on the
	 * semaphore without corresponding list entry.
	 * So don't do that.
	 */
1724
	spin_unlock_irq(&tconn->data.work.q_lock);
P
Philipp Reisner 已提交
1725

1726
	drbd_thread_stop(&tconn->receiver);
1727
	idr_for_each_entry(&tconn->volumes, mdev, vnr) {
1728 1729 1730 1731 1732 1733 1734 1735
		D_ASSERT(mdev->state.disk == D_DISKLESS && mdev->state.conn == C_STANDALONE);
		/* _drbd_set_state only uses stop_nowait.
		 * wait here for the exiting receiver. */
		drbd_mdev_cleanup(mdev);
	}
	clear_bit(OBJECT_DYING, &tconn->flags);
	clear_bit(CONFIG_PENDING, &tconn->flags);
	wake_up(&tconn->ping_wait);
P
Philipp Reisner 已提交
1736 1737 1738

	return 0;
}