blob: 6cfc5417da8e757dcd34dce0c7dd517f6d41de7d [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
24 */
25
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"
39#include "drbd_req.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070040
Philipp Reisnerb411b362009-09-25 16:07:19 -070041static int w_make_ov_request(struct drbd_conf *mdev, struct drbd_work *w, int cancel);
42
43
44
45/* defined here:
46 drbd_md_io_complete
Lars Ellenberg45bb9122010-05-14 17:10:48 +020047 drbd_endio_sec
Philipp Reisnerb411b362009-09-25 16:07:19 -070048 drbd_endio_pri
49
50 * more endio handlers:
51 atodb_endio in drbd_actlog.c
52 drbd_bm_async_io_complete in drbd_bitmap.c
53
54 * For all these callbacks, note the following:
55 * The callbacks will be called in irq context by the IDE drivers,
56 * and in Softirqs/Tasklets/BH context by the SCSI drivers.
57 * Try to get the locking right :)
58 *
59 */
60
61
62/* About the global_state_lock
63 Each state transition on an device holds a read lock. In case we have
64 to evaluate the sync after dependencies, we grab a write lock, because
65 we need stable states on all devices for that. */
66rwlock_t global_state_lock;
67
68/* used for synchronous meta data and bitmap IO
69 * submitted by drbd_md_sync_page_io()
70 */
71void drbd_md_io_complete(struct bio *bio, int error)
72{
73 struct drbd_md_io *md_io;
74
75 md_io = (struct drbd_md_io *)bio->bi_private;
76 md_io->error = error;
77
Philipp Reisnerb411b362009-09-25 16:07:19 -070078 complete(&md_io->event);
79}
80
81/* reads on behalf of the partner,
82 * "submitted" by the receiver
83 */
Lars Ellenberg45bb9122010-05-14 17:10:48 +020084void drbd_endio_read_sec_final(struct drbd_epoch_entry *e) __releases(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -070085{
86 unsigned long flags = 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +020087 struct drbd_conf *mdev = e->mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -070088
89 D_ASSERT(e->block_id != ID_VACANT);
90
Philipp Reisnerb411b362009-09-25 16:07:19 -070091 spin_lock_irqsave(&mdev->req_lock, flags);
92 mdev->read_cnt += e->size >> 9;
93 list_del(&e->w.list);
94 if (list_empty(&mdev->read_ee))
95 wake_up(&mdev->ee_wait);
Lars Ellenberg45bb9122010-05-14 17:10:48 +020096 if (test_bit(__EE_WAS_ERROR, &e->flags))
97 __drbd_chk_io_error(mdev, FALSE);
Philipp Reisnerb411b362009-09-25 16:07:19 -070098 spin_unlock_irqrestore(&mdev->req_lock, flags);
99
Philipp Reisnerb411b362009-09-25 16:07:19 -0700100 drbd_queue_work(&mdev->data.work, &e->w);
101 put_ldev(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700102}
103
104/* writes on behalf of the partner, or resync writes,
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200105 * "submitted" by the receiver, final stage. */
106static void drbd_endio_write_sec_final(struct drbd_epoch_entry *e) __releases(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700107{
108 unsigned long flags = 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200109 struct drbd_conf *mdev = e->mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700110 sector_t e_sector;
111 int do_wake;
112 int is_syncer_req;
113 int do_al_complete_io;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700114
Philipp Reisnerb411b362009-09-25 16:07:19 -0700115 D_ASSERT(e->block_id != ID_VACANT);
116
Philipp Reisnerb411b362009-09-25 16:07:19 -0700117 /* after we moved e to done_ee,
118 * we may no longer access it,
119 * it may be freed/reused already!
120 * (as soon as we release the req_lock) */
121 e_sector = e->sector;
122 do_al_complete_io = e->flags & EE_CALL_AL_COMPLETE_IO;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200123 is_syncer_req = is_syncer_block_id(e->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700124
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200125 spin_lock_irqsave(&mdev->req_lock, flags);
126 mdev->writ_cnt += e->size >> 9;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700127 list_del(&e->w.list); /* has been on active_ee or sync_ee */
128 list_add_tail(&e->w.list, &mdev->done_ee);
129
Philipp Reisnerb411b362009-09-25 16:07:19 -0700130 /* No hlist_del_init(&e->colision) here, we did not send the Ack yet,
131 * neither did we wake possibly waiting conflicting requests.
132 * done from "drbd_process_done_ee" within the appropriate w.cb
133 * (e_end_block/e_end_resync_block) or from _drbd_clear_done_ee */
134
135 do_wake = is_syncer_req
136 ? list_empty(&mdev->sync_ee)
137 : list_empty(&mdev->active_ee);
138
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200139 if (test_bit(__EE_WAS_ERROR, &e->flags))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700140 __drbd_chk_io_error(mdev, FALSE);
141 spin_unlock_irqrestore(&mdev->req_lock, flags);
142
143 if (is_syncer_req)
144 drbd_rs_complete_io(mdev, e_sector);
145
146 if (do_wake)
147 wake_up(&mdev->ee_wait);
148
149 if (do_al_complete_io)
150 drbd_al_complete_io(mdev, e_sector);
151
152 wake_asender(mdev);
153 put_ldev(mdev);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200154}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700155
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200156/* writes on behalf of the partner, or resync writes,
157 * "submitted" by the receiver.
158 */
159void drbd_endio_sec(struct bio *bio, int error)
160{
161 struct drbd_epoch_entry *e = bio->bi_private;
162 struct drbd_conf *mdev = e->mdev;
163 int uptodate = bio_flagged(bio, BIO_UPTODATE);
164 int is_write = bio_data_dir(bio) == WRITE;
165
166 if (error)
167 dev_warn(DEV, "%s: error=%d s=%llus\n",
168 is_write ? "write" : "read", error,
169 (unsigned long long)e->sector);
170 if (!error && !uptodate) {
171 dev_warn(DEV, "%s: setting error to -EIO s=%llus\n",
172 is_write ? "write" : "read",
173 (unsigned long long)e->sector);
174 /* strange behavior of some lower level drivers...
175 * fail the request by clearing the uptodate flag,
176 * but do not return any error?! */
177 error = -EIO;
178 }
179
180 if (error)
181 set_bit(__EE_WAS_ERROR, &e->flags);
182
183 bio_put(bio); /* no need for the bio anymore */
184 if (atomic_dec_and_test(&e->pending_bios)) {
185 if (is_write)
186 drbd_endio_write_sec_final(e);
187 else
188 drbd_endio_read_sec_final(e);
189 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700190}
191
192/* read, readA or write requests on R_PRIMARY coming from drbd_make_request
193 */
194void drbd_endio_pri(struct bio *bio, int error)
195{
Lars Ellenberga1154132010-11-13 20:42:29 +0100196 unsigned long flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700197 struct drbd_request *req = bio->bi_private;
198 struct drbd_conf *mdev = req->mdev;
Lars Ellenberga1154132010-11-13 20:42:29 +0100199 struct bio_and_error m;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700200 enum drbd_req_event what;
201 int uptodate = bio_flagged(bio, BIO_UPTODATE);
202
Philipp Reisnerb411b362009-09-25 16:07:19 -0700203 if (!error && !uptodate) {
204 dev_warn(DEV, "p %s: setting error to -EIO\n",
205 bio_data_dir(bio) == WRITE ? "write" : "read");
206 /* strange behavior of some lower level drivers...
207 * fail the request by clearing the uptodate flag,
208 * but do not return any error?! */
209 error = -EIO;
210 }
211
Philipp Reisnerb411b362009-09-25 16:07:19 -0700212 /* to avoid recursion in __req_mod */
213 if (unlikely(error)) {
214 what = (bio_data_dir(bio) == WRITE)
215 ? write_completed_with_error
Lars Ellenberg5c3c7e62010-04-10 02:10:09 +0200216 : (bio_rw(bio) == READ)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700217 ? read_completed_with_error
218 : read_ahead_completed_with_error;
219 } else
220 what = completed_ok;
221
222 bio_put(req->private_bio);
223 req->private_bio = ERR_PTR(error);
224
Lars Ellenberga1154132010-11-13 20:42:29 +0100225 /* not req_mod(), we need irqsave here! */
226 spin_lock_irqsave(&mdev->req_lock, flags);
227 __req_mod(req, what, &m);
228 spin_unlock_irqrestore(&mdev->req_lock, flags);
229
230 if (m.bio)
231 complete_master_bio(mdev, &m);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700232}
233
Philipp Reisnerb411b362009-09-25 16:07:19 -0700234int w_read_retry_remote(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
235{
236 struct drbd_request *req = container_of(w, struct drbd_request, w);
237
238 /* We should not detach for read io-error,
239 * but try to WRITE the P_DATA_REPLY to the failed location,
240 * to give the disk the chance to relocate that block */
241
242 spin_lock_irq(&mdev->req_lock);
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200243 if (cancel || mdev->state.pdsk != D_UP_TO_DATE) {
244 _req_mod(req, read_retry_remote_canceled);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700245 spin_unlock_irq(&mdev->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700246 return 1;
247 }
248 spin_unlock_irq(&mdev->req_lock);
249
250 return w_send_read_req(mdev, w, 0);
251}
252
253int w_resync_inactive(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
254{
255 ERR_IF(cancel) return 1;
256 dev_err(DEV, "resync inactive, but callback triggered??\n");
257 return 1; /* Simply ignore this! */
258}
259
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200260void drbd_csum_ee(struct drbd_conf *mdev, struct crypto_hash *tfm, struct drbd_epoch_entry *e, void *digest)
261{
262 struct hash_desc desc;
263 struct scatterlist sg;
264 struct page *page = e->pages;
265 struct page *tmp;
266 unsigned len;
267
268 desc.tfm = tfm;
269 desc.flags = 0;
270
271 sg_init_table(&sg, 1);
272 crypto_hash_init(&desc);
273
274 while ((tmp = page_chain_next(page))) {
275 /* all but the last page will be fully used */
276 sg_set_page(&sg, page, PAGE_SIZE, 0);
277 crypto_hash_update(&desc, &sg, sg.length);
278 page = tmp;
279 }
280 /* and now the last, possibly only partially used page */
281 len = e->size & (PAGE_SIZE - 1);
282 sg_set_page(&sg, page, len ?: PAGE_SIZE, 0);
283 crypto_hash_update(&desc, &sg, sg.length);
284 crypto_hash_final(&desc, digest);
285}
286
287void drbd_csum_bio(struct drbd_conf *mdev, struct crypto_hash *tfm, struct bio *bio, void *digest)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700288{
289 struct hash_desc desc;
290 struct scatterlist sg;
291 struct bio_vec *bvec;
292 int i;
293
294 desc.tfm = tfm;
295 desc.flags = 0;
296
297 sg_init_table(&sg, 1);
298 crypto_hash_init(&desc);
299
300 __bio_for_each_segment(bvec, bio, i, 0) {
301 sg_set_page(&sg, bvec->bv_page, bvec->bv_len, bvec->bv_offset);
302 crypto_hash_update(&desc, &sg, sg.length);
303 }
304 crypto_hash_final(&desc, digest);
305}
306
307static int w_e_send_csum(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
308{
309 struct drbd_epoch_entry *e = container_of(w, struct drbd_epoch_entry, w);
310 int digest_size;
311 void *digest;
312 int ok;
313
314 D_ASSERT(e->block_id == DRBD_MAGIC + 0xbeef);
315
316 if (unlikely(cancel)) {
317 drbd_free_ee(mdev, e);
318 return 1;
319 }
320
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200321 if (likely((e->flags & EE_WAS_ERROR) == 0)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700322 digest_size = crypto_hash_digestsize(mdev->csums_tfm);
323 digest = kmalloc(digest_size, GFP_NOIO);
324 if (digest) {
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200325 drbd_csum_ee(mdev, mdev->csums_tfm, e, digest);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700326
327 inc_rs_pending(mdev);
328 ok = drbd_send_drequest_csum(mdev,
329 e->sector,
330 e->size,
331 digest,
332 digest_size,
333 P_CSUM_RS_REQUEST);
334 kfree(digest);
335 } else {
336 dev_err(DEV, "kmalloc() of digest failed.\n");
337 ok = 0;
338 }
339 } else
340 ok = 1;
341
342 drbd_free_ee(mdev, e);
343
344 if (unlikely(!ok))
345 dev_err(DEV, "drbd_send_drequest(..., csum) failed\n");
346 return ok;
347}
348
349#define GFP_TRY (__GFP_HIGHMEM | __GFP_NOWARN)
350
351static int read_for_csum(struct drbd_conf *mdev, sector_t sector, int size)
352{
353 struct drbd_epoch_entry *e;
354
355 if (!get_ldev(mdev))
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200356 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700357
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200358 if (drbd_rs_should_slow_down(mdev))
359 goto defer;
360
Philipp Reisnerb411b362009-09-25 16:07:19 -0700361 /* GFP_TRY, because if there is no memory available right now, this may
362 * be rescheduled for later. It is "only" background resync, after all. */
363 e = drbd_alloc_ee(mdev, DRBD_MAGIC+0xbeef, sector, size, GFP_TRY);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200364 if (!e)
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200365 goto defer;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700366
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200367 e->w.cb = w_e_send_csum;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700368 spin_lock_irq(&mdev->req_lock);
369 list_add(&e->w.list, &mdev->read_ee);
370 spin_unlock_irq(&mdev->req_lock);
371
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200372 atomic_add(size >> 9, &mdev->rs_sect_ev);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200373 if (drbd_submit_ee(mdev, e, READ, DRBD_FAULT_RS_RD) == 0)
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200374 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700375
Lars Ellenberg22cc37a2010-09-14 20:40:41 +0200376 /* drbd_submit_ee currently fails for one reason only:
377 * not being able to allocate enough bios.
378 * Is dropping the connection going to help? */
379 spin_lock_irq(&mdev->req_lock);
380 list_del(&e->w.list);
381 spin_unlock_irq(&mdev->req_lock);
382
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200383 drbd_free_ee(mdev, e);
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200384defer:
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200385 put_ldev(mdev);
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200386 return -EAGAIN;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700387}
388
389void resync_timer_fn(unsigned long data)
390{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700391 struct drbd_conf *mdev = (struct drbd_conf *) data;
392 int queue;
393
Philipp Reisner63106d32010-09-01 15:47:15 +0200394 queue = 1;
395 switch (mdev->state.conn) {
396 case C_VERIFY_S:
397 mdev->resync_work.cb = w_make_ov_request;
398 break;
399 case C_SYNC_TARGET:
400 mdev->resync_work.cb = w_make_resync_request;
401 break;
402 default:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700403 queue = 0;
404 mdev->resync_work.cb = w_resync_inactive;
405 }
406
Philipp Reisnerb411b362009-09-25 16:07:19 -0700407 /* harmless race: list_empty outside data.work.q_lock */
408 if (list_empty(&mdev->resync_work.list) && queue)
409 drbd_queue_work(&mdev->data.work, &mdev->resync_work);
410}
411
Philipp Reisner778f2712010-07-06 11:14:00 +0200412static void fifo_set(struct fifo_buffer *fb, int value)
413{
414 int i;
415
416 for (i = 0; i < fb->size; i++)
Philipp Reisnerf10f2622010-10-05 16:50:17 +0200417 fb->values[i] = value;
Philipp Reisner778f2712010-07-06 11:14:00 +0200418}
419
420static int fifo_push(struct fifo_buffer *fb, int value)
421{
422 int ov;
423
424 ov = fb->values[fb->head_index];
425 fb->values[fb->head_index++] = value;
426
427 if (fb->head_index >= fb->size)
428 fb->head_index = 0;
429
430 return ov;
431}
432
433static void fifo_add_val(struct fifo_buffer *fb, int value)
434{
435 int i;
436
437 for (i = 0; i < fb->size; i++)
438 fb->values[i] += value;
439}
440
441int drbd_rs_controller(struct drbd_conf *mdev)
442{
443 unsigned int sect_in; /* Number of sectors that came in since the last turn */
444 unsigned int want; /* The number of sectors we want in the proxy */
445 int req_sect; /* Number of sectors to request in this turn */
446 int correction; /* Number of sectors more we need in the proxy*/
447 int cps; /* correction per invocation of drbd_rs_controller() */
448 int steps; /* Number of time steps to plan ahead */
449 int curr_corr;
450 int max_sect;
451
452 sect_in = atomic_xchg(&mdev->rs_sect_in, 0); /* Number of sectors that came in */
453 mdev->rs_in_flight -= sect_in;
454
455 spin_lock(&mdev->peer_seq_lock); /* get an atomic view on mdev->rs_plan_s */
456
457 steps = mdev->rs_plan_s.size; /* (mdev->sync_conf.c_plan_ahead * 10 * SLEEP_TIME) / HZ; */
458
459 if (mdev->rs_in_flight + sect_in == 0) { /* At start of resync */
460 want = ((mdev->sync_conf.rate * 2 * SLEEP_TIME) / HZ) * steps;
461 } else { /* normal path */
462 want = mdev->sync_conf.c_fill_target ? mdev->sync_conf.c_fill_target :
463 sect_in * mdev->sync_conf.c_delay_target * HZ / (SLEEP_TIME * 10);
464 }
465
466 correction = want - mdev->rs_in_flight - mdev->rs_planed;
467
468 /* Plan ahead */
469 cps = correction / steps;
470 fifo_add_val(&mdev->rs_plan_s, cps);
471 mdev->rs_planed += cps * steps;
472
473 /* What we do in this step */
474 curr_corr = fifo_push(&mdev->rs_plan_s, 0);
475 spin_unlock(&mdev->peer_seq_lock);
476 mdev->rs_planed -= curr_corr;
477
478 req_sect = sect_in + curr_corr;
479 if (req_sect < 0)
480 req_sect = 0;
481
482 max_sect = (mdev->sync_conf.c_max_rate * 2 * SLEEP_TIME) / HZ;
483 if (req_sect > max_sect)
484 req_sect = max_sect;
485
486 /*
487 dev_warn(DEV, "si=%u if=%d wa=%u co=%d st=%d cps=%d pl=%d cc=%d rs=%d\n",
488 sect_in, mdev->rs_in_flight, want, correction,
489 steps, cps, mdev->rs_planed, curr_corr, req_sect);
490 */
491
492 return req_sect;
493}
494
Philipp Reisnerb411b362009-09-25 16:07:19 -0700495int w_make_resync_request(struct drbd_conf *mdev,
496 struct drbd_work *w, int cancel)
497{
498 unsigned long bit;
499 sector_t sector;
500 const sector_t capacity = drbd_get_capacity(mdev->this_bdev);
Lars Ellenbergbb3d0002010-05-14 19:08:55 +0200501 int max_segment_size;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200502 int number, rollback_i, size, pe, mx;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700503 int align, queued, sndbuf;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200504 int i = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700505
506 if (unlikely(cancel))
507 return 1;
508
509 if (unlikely(mdev->state.conn < C_CONNECTED)) {
510 dev_err(DEV, "Confused in w_make_resync_request()! cstate < Connected");
511 return 0;
512 }
513
514 if (mdev->state.conn != C_SYNC_TARGET)
515 dev_err(DEV, "%s in w_make_resync_request\n",
516 drbd_conn_str(mdev->state.conn));
517
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +0200518 if (mdev->rs_total == 0) {
519 /* empty resync? */
520 drbd_resync_finished(mdev);
521 return 1;
522 }
523
Philipp Reisnerb411b362009-09-25 16:07:19 -0700524 if (!get_ldev(mdev)) {
525 /* Since we only need to access mdev->rsync a
526 get_ldev_if_state(mdev,D_FAILED) would be sufficient, but
527 to continue resync with a broken disk makes no sense at
528 all */
529 dev_err(DEV, "Disk broke down during resync!\n");
530 mdev->resync_work.cb = w_resync_inactive;
531 return 1;
532 }
533
Lars Ellenbergbb3d0002010-05-14 19:08:55 +0200534 /* starting with drbd 8.3.8, we can handle multi-bio EEs,
535 * if it should be necessary */
Philipp Reisner5a75cc72010-09-09 14:22:21 +0200536 max_segment_size =
537 mdev->agreed_pro_version < 94 ? queue_max_segment_size(mdev->rq_queue) :
538 mdev->agreed_pro_version < 95 ? DRBD_MAX_SIZE_H80_PACKET : DRBD_MAX_SEGMENT_SIZE;
Lars Ellenbergbb3d0002010-05-14 19:08:55 +0200539
Philipp Reisner778f2712010-07-06 11:14:00 +0200540 if (mdev->rs_plan_s.size) { /* mdev->sync_conf.c_plan_ahead */
541 number = drbd_rs_controller(mdev) >> (BM_BLOCK_SHIFT - 9);
542 mdev->c_sync_rate = number * HZ * (BM_BLOCK_SIZE / 1024) / SLEEP_TIME;
543 } else {
544 mdev->c_sync_rate = mdev->sync_conf.rate;
545 number = SLEEP_TIME * mdev->c_sync_rate / ((BM_BLOCK_SIZE / 1024) * HZ);
546 }
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200547
548 /* Throttle resync on lower level disk activity, which may also be
549 * caused by application IO on Primary/SyncTarget.
550 * Keep this after the call to drbd_rs_controller, as that assumes
551 * to be called as precisely as possible every SLEEP_TIME,
552 * and would be confused otherwise. */
553 if (drbd_rs_should_slow_down(mdev))
554 goto requeue;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700555
556 mutex_lock(&mdev->data.mutex);
557 if (mdev->data.socket)
558 mx = mdev->data.socket->sk->sk_rcvbuf / sizeof(struct p_block_req);
559 else
560 mx = 1;
561 mutex_unlock(&mdev->data.mutex);
562
563 /* For resync rates >160MB/sec, allow more pending RS requests */
564 if (number > mx)
565 mx = number;
566
567 /* Limit the number of pending RS requests to no more than the peer's receive buffer */
Lars Ellenberg0f0601f2010-08-11 23:40:24 +0200568 pe = atomic_read(&mdev->rs_pending_cnt);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700569 if ((pe + number) > mx) {
570 number = mx - pe;
571 }
572
573 for (i = 0; i < number; i++) {
574 /* Stop generating RS requests, when half of the send buffer is filled */
575 mutex_lock(&mdev->data.mutex);
576 if (mdev->data.socket) {
577 queued = mdev->data.socket->sk->sk_wmem_queued;
578 sndbuf = mdev->data.socket->sk->sk_sndbuf;
579 } else {
580 queued = 1;
581 sndbuf = 0;
582 }
583 mutex_unlock(&mdev->data.mutex);
584 if (queued > sndbuf / 2)
585 goto requeue;
586
587next_sector:
588 size = BM_BLOCK_SIZE;
589 bit = drbd_bm_find_next(mdev, mdev->bm_resync_fo);
590
591 if (bit == -1UL) {
592 mdev->bm_resync_fo = drbd_bm_bits(mdev);
593 mdev->resync_work.cb = w_resync_inactive;
594 put_ldev(mdev);
595 return 1;
596 }
597
598 sector = BM_BIT_TO_SECT(bit);
599
600 if (drbd_try_rs_begin_io(mdev, sector)) {
601 mdev->bm_resync_fo = bit;
602 goto requeue;
603 }
604 mdev->bm_resync_fo = bit + 1;
605
606 if (unlikely(drbd_bm_test_bit(mdev, bit) == 0)) {
607 drbd_rs_complete_io(mdev, sector);
608 goto next_sector;
609 }
610
611#if DRBD_MAX_SEGMENT_SIZE > BM_BLOCK_SIZE
612 /* try to find some adjacent bits.
613 * we stop if we have already the maximum req size.
614 *
615 * Additionally always align bigger requests, in order to
616 * be prepared for all stripe sizes of software RAIDs.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700617 */
618 align = 1;
Philipp Reisnerd2074502010-07-22 15:27:27 +0200619 rollback_i = i;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700620 for (;;) {
621 if (size + BM_BLOCK_SIZE > max_segment_size)
622 break;
623
624 /* Be always aligned */
625 if (sector & ((1<<(align+3))-1))
626 break;
627
628 /* do not cross extent boundaries */
629 if (((bit+1) & BM_BLOCKS_PER_BM_EXT_MASK) == 0)
630 break;
631 /* now, is it actually dirty, after all?
632 * caution, drbd_bm_test_bit is tri-state for some
633 * obscure reason; ( b == 0 ) would get the out-of-band
634 * only accidentally right because of the "oddly sized"
635 * adjustment below */
636 if (drbd_bm_test_bit(mdev, bit+1) != 1)
637 break;
638 bit++;
639 size += BM_BLOCK_SIZE;
640 if ((BM_BLOCK_SIZE << align) <= size)
641 align++;
642 i++;
643 }
644 /* if we merged some,
645 * reset the offset to start the next drbd_bm_find_next from */
646 if (size > BM_BLOCK_SIZE)
647 mdev->bm_resync_fo = bit + 1;
648#endif
649
650 /* adjust very last sectors, in case we are oddly sized */
651 if (sector + (size>>9) > capacity)
652 size = (capacity-sector)<<9;
653 if (mdev->agreed_pro_version >= 89 && mdev->csums_tfm) {
654 switch (read_for_csum(mdev, sector, size)) {
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200655 case -EIO: /* Disk failure */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700656 put_ldev(mdev);
657 return 0;
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200658 case -EAGAIN: /* allocation failed, or ldev busy */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700659 drbd_rs_complete_io(mdev, sector);
660 mdev->bm_resync_fo = BM_SECT_TO_BIT(sector);
Philipp Reisnerd2074502010-07-22 15:27:27 +0200661 i = rollback_i;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700662 goto requeue;
Lars Ellenberg80a40e42010-08-11 23:28:00 +0200663 case 0:
664 /* everything ok */
665 break;
666 default:
667 BUG();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700668 }
669 } else {
670 inc_rs_pending(mdev);
671 if (!drbd_send_drequest(mdev, P_RS_DATA_REQUEST,
672 sector, size, ID_SYNCER)) {
673 dev_err(DEV, "drbd_send_drequest() failed, aborting...\n");
674 dec_rs_pending(mdev);
675 put_ldev(mdev);
676 return 0;
677 }
678 }
679 }
680
681 if (mdev->bm_resync_fo >= drbd_bm_bits(mdev)) {
682 /* last syncer _request_ was sent,
683 * but the P_RS_DATA_REPLY not yet received. sync will end (and
684 * next sync group will resume), as soon as we receive the last
685 * resync data block, and the last bit is cleared.
686 * until then resync "work" is "inactive" ...
687 */
688 mdev->resync_work.cb = w_resync_inactive;
689 put_ldev(mdev);
690 return 1;
691 }
692
693 requeue:
Philipp Reisner778f2712010-07-06 11:14:00 +0200694 mdev->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700695 mod_timer(&mdev->resync_timer, jiffies + SLEEP_TIME);
696 put_ldev(mdev);
697 return 1;
698}
699
700static int w_make_ov_request(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
701{
702 int number, i, size;
703 sector_t sector;
704 const sector_t capacity = drbd_get_capacity(mdev->this_bdev);
705
706 if (unlikely(cancel))
707 return 1;
708
709 if (unlikely(mdev->state.conn < C_CONNECTED)) {
710 dev_err(DEV, "Confused in w_make_ov_request()! cstate < Connected");
711 return 0;
712 }
713
714 number = SLEEP_TIME*mdev->sync_conf.rate / ((BM_BLOCK_SIZE/1024)*HZ);
715 if (atomic_read(&mdev->rs_pending_cnt) > number)
716 goto requeue;
717
718 number -= atomic_read(&mdev->rs_pending_cnt);
719
720 sector = mdev->ov_position;
721 for (i = 0; i < number; i++) {
722 if (sector >= capacity) {
723 mdev->resync_work.cb = w_resync_inactive;
724 return 1;
725 }
726
727 size = BM_BLOCK_SIZE;
728
729 if (drbd_try_rs_begin_io(mdev, sector)) {
730 mdev->ov_position = sector;
731 goto requeue;
732 }
733
734 if (sector + (size>>9) > capacity)
735 size = (capacity-sector)<<9;
736
737 inc_rs_pending(mdev);
738 if (!drbd_send_ov_request(mdev, sector, size)) {
739 dec_rs_pending(mdev);
740 return 0;
741 }
742 sector += BM_SECT_PER_BIT;
743 }
744 mdev->ov_position = sector;
745
746 requeue:
747 mod_timer(&mdev->resync_timer, jiffies + SLEEP_TIME);
748 return 1;
749}
750
751
752int w_ov_finished(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
753{
754 kfree(w);
755 ov_oos_print(mdev);
756 drbd_resync_finished(mdev);
757
758 return 1;
759}
760
761static int w_resync_finished(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
762{
763 kfree(w);
764
765 drbd_resync_finished(mdev);
766
767 return 1;
768}
769
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +0200770static void ping_peer(struct drbd_conf *mdev)
771{
772 clear_bit(GOT_PING_ACK, &mdev->flags);
773 request_ping(mdev);
774 wait_event(mdev->misc_wait,
775 test_bit(GOT_PING_ACK, &mdev->flags) || mdev->state.conn < C_CONNECTED);
776}
777
Philipp Reisnerb411b362009-09-25 16:07:19 -0700778int drbd_resync_finished(struct drbd_conf *mdev)
779{
780 unsigned long db, dt, dbdt;
781 unsigned long n_oos;
782 union drbd_state os, ns;
783 struct drbd_work *w;
784 char *khelper_cmd = NULL;
Lars Ellenberg26525612010-11-05 09:56:33 +0100785 int verify_done = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700786
787 /* Remove all elements from the resync LRU. Since future actions
788 * might set bits in the (main) bitmap, then the entries in the
789 * resync LRU would be wrong. */
790 if (drbd_rs_del_all(mdev)) {
791 /* In case this is not possible now, most probably because
792 * there are P_RS_DATA_REPLY Packets lingering on the worker's
793 * queue (or even the read operations for those packets
794 * is not finished by now). Retry in 100ms. */
795
Philipp Reisnerb411b362009-09-25 16:07:19 -0700796 __set_current_state(TASK_INTERRUPTIBLE);
797 schedule_timeout(HZ / 10);
798 w = kmalloc(sizeof(struct drbd_work), GFP_ATOMIC);
799 if (w) {
800 w->cb = w_resync_finished;
801 drbd_queue_work(&mdev->data.work, w);
802 return 1;
803 }
804 dev_err(DEV, "Warn failed to drbd_rs_del_all() and to kmalloc(w).\n");
805 }
806
807 dt = (jiffies - mdev->rs_start - mdev->rs_paused) / HZ;
808 if (dt <= 0)
809 dt = 1;
810 db = mdev->rs_total;
811 dbdt = Bit2KB(db/dt);
812 mdev->rs_paused /= HZ;
813
814 if (!get_ldev(mdev))
815 goto out;
816
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +0200817 ping_peer(mdev);
818
Philipp Reisnerb411b362009-09-25 16:07:19 -0700819 spin_lock_irq(&mdev->req_lock);
820 os = mdev->state;
821
Lars Ellenberg26525612010-11-05 09:56:33 +0100822 verify_done = (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T);
823
Philipp Reisnerb411b362009-09-25 16:07:19 -0700824 /* This protects us against multiple calls (that can happen in the presence
825 of application IO), and against connectivity loss just before we arrive here. */
826 if (os.conn <= C_CONNECTED)
827 goto out_unlock;
828
829 ns = os;
830 ns.conn = C_CONNECTED;
831
832 dev_info(DEV, "%s done (total %lu sec; paused %lu sec; %lu K/sec)\n",
Lars Ellenberg26525612010-11-05 09:56:33 +0100833 verify_done ? "Online verify " : "Resync",
Philipp Reisnerb411b362009-09-25 16:07:19 -0700834 dt + mdev->rs_paused, mdev->rs_paused, dbdt);
835
836 n_oos = drbd_bm_total_weight(mdev);
837
838 if (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T) {
839 if (n_oos) {
840 dev_alert(DEV, "Online verify found %lu %dk block out of sync!\n",
841 n_oos, Bit2KB(1));
842 khelper_cmd = "out-of-sync";
843 }
844 } else {
845 D_ASSERT((n_oos - mdev->rs_failed) == 0);
846
847 if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T)
848 khelper_cmd = "after-resync-target";
849
850 if (mdev->csums_tfm && mdev->rs_total) {
851 const unsigned long s = mdev->rs_same_csum;
852 const unsigned long t = mdev->rs_total;
853 const int ratio =
854 (t == 0) ? 0 :
855 (t < 100000) ? ((s*100)/t) : (s/(t/100));
856 dev_info(DEV, "%u %% had equal check sums, eliminated: %luK; "
857 "transferred %luK total %luK\n",
858 ratio,
859 Bit2KB(mdev->rs_same_csum),
860 Bit2KB(mdev->rs_total - mdev->rs_same_csum),
861 Bit2KB(mdev->rs_total));
862 }
863 }
864
865 if (mdev->rs_failed) {
866 dev_info(DEV, " %lu failed blocks\n", mdev->rs_failed);
867
868 if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) {
869 ns.disk = D_INCONSISTENT;
870 ns.pdsk = D_UP_TO_DATE;
871 } else {
872 ns.disk = D_UP_TO_DATE;
873 ns.pdsk = D_INCONSISTENT;
874 }
875 } else {
876 ns.disk = D_UP_TO_DATE;
877 ns.pdsk = D_UP_TO_DATE;
878
879 if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) {
880 if (mdev->p_uuid) {
881 int i;
882 for (i = UI_BITMAP ; i <= UI_HISTORY_END ; i++)
883 _drbd_uuid_set(mdev, i, mdev->p_uuid[i]);
884 drbd_uuid_set(mdev, UI_BITMAP, mdev->ldev->md.uuid[UI_CURRENT]);
885 _drbd_uuid_set(mdev, UI_CURRENT, mdev->p_uuid[UI_CURRENT]);
886 } else {
887 dev_err(DEV, "mdev->p_uuid is NULL! BUG\n");
888 }
889 }
890
891 drbd_uuid_set_bm(mdev, 0UL);
892
893 if (mdev->p_uuid) {
894 /* Now the two UUID sets are equal, update what we
895 * know of the peer. */
896 int i;
897 for (i = UI_CURRENT ; i <= UI_HISTORY_END ; i++)
898 mdev->p_uuid[i] = mdev->ldev->md.uuid[i];
899 }
900 }
901
902 _drbd_set_state(mdev, ns, CS_VERBOSE, NULL);
903out_unlock:
904 spin_unlock_irq(&mdev->req_lock);
905 put_ldev(mdev);
906out:
907 mdev->rs_total = 0;
908 mdev->rs_failed = 0;
909 mdev->rs_paused = 0;
Lars Ellenberg26525612010-11-05 09:56:33 +0100910 if (verify_done)
911 mdev->ov_start_sector = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700912
Lars Ellenberg13d42682010-10-13 17:37:54 +0200913 drbd_md_sync(mdev);
914
Philipp Reisnerb411b362009-09-25 16:07:19 -0700915 if (test_and_clear_bit(WRITE_BM_AFTER_RESYNC, &mdev->flags)) {
Lars Ellenbergbc571b82010-10-21 18:07:31 +0200916 dev_info(DEV, "Writing the whole bitmap\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700917 drbd_queue_bitmap_io(mdev, &drbd_bm_write, NULL, "write from resync_finished");
918 }
919
920 if (khelper_cmd)
921 drbd_khelper(mdev, khelper_cmd);
922
923 return 1;
924}
925
926/* helper */
927static void move_to_net_ee_or_free(struct drbd_conf *mdev, struct drbd_epoch_entry *e)
928{
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200929 if (drbd_ee_has_active_page(e)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700930 /* This might happen if sendpage() has not finished */
Lars Ellenberg78db8922010-09-13 13:27:10 +0200931 int i = (e->size + PAGE_SIZE -1) >> PAGE_SHIFT;
Lars Ellenberg435f0742010-09-06 12:30:25 +0200932 atomic_add(i, &mdev->pp_in_use_by_net);
933 atomic_sub(i, &mdev->pp_in_use);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700934 spin_lock_irq(&mdev->req_lock);
935 list_add_tail(&e->w.list, &mdev->net_ee);
936 spin_unlock_irq(&mdev->req_lock);
Lars Ellenberg435f0742010-09-06 12:30:25 +0200937 wake_up(&drbd_pp_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700938 } else
939 drbd_free_ee(mdev, e);
940}
941
942/**
943 * w_e_end_data_req() - Worker callback, to send a P_DATA_REPLY packet in response to a P_DATA_REQUEST
944 * @mdev: DRBD device.
945 * @w: work object.
946 * @cancel: The connection will be closed anyways
947 */
948int w_e_end_data_req(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
949{
950 struct drbd_epoch_entry *e = container_of(w, struct drbd_epoch_entry, w);
951 int ok;
952
953 if (unlikely(cancel)) {
954 drbd_free_ee(mdev, e);
955 dec_unacked(mdev);
956 return 1;
957 }
958
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200959 if (likely((e->flags & EE_WAS_ERROR) == 0)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700960 ok = drbd_send_block(mdev, P_DATA_REPLY, e);
961 } else {
962 if (__ratelimit(&drbd_ratelimit_state))
963 dev_err(DEV, "Sending NegDReply. sector=%llus.\n",
964 (unsigned long long)e->sector);
965
966 ok = drbd_send_ack(mdev, P_NEG_DREPLY, e);
967 }
968
969 dec_unacked(mdev);
970
971 move_to_net_ee_or_free(mdev, e);
972
973 if (unlikely(!ok))
974 dev_err(DEV, "drbd_send_block() failed\n");
975 return ok;
976}
977
978/**
979 * w_e_end_rsdata_req() - Worker callback to send a P_RS_DATA_REPLY packet in response to a P_RS_DATA_REQUESTRS
980 * @mdev: DRBD device.
981 * @w: work object.
982 * @cancel: The connection will be closed anyways
983 */
984int w_e_end_rsdata_req(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
985{
986 struct drbd_epoch_entry *e = container_of(w, struct drbd_epoch_entry, w);
987 int ok;
988
989 if (unlikely(cancel)) {
990 drbd_free_ee(mdev, e);
991 dec_unacked(mdev);
992 return 1;
993 }
994
995 if (get_ldev_if_state(mdev, D_FAILED)) {
996 drbd_rs_complete_io(mdev, e->sector);
997 put_ldev(mdev);
998 }
999
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001000 if (likely((e->flags & EE_WAS_ERROR) == 0)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001001 if (likely(mdev->state.pdsk >= D_INCONSISTENT)) {
1002 inc_rs_pending(mdev);
1003 ok = drbd_send_block(mdev, P_RS_DATA_REPLY, e);
1004 } else {
1005 if (__ratelimit(&drbd_ratelimit_state))
1006 dev_err(DEV, "Not sending RSDataReply, "
1007 "partner DISKLESS!\n");
1008 ok = 1;
1009 }
1010 } else {
1011 if (__ratelimit(&drbd_ratelimit_state))
1012 dev_err(DEV, "Sending NegRSDReply. sector %llus.\n",
1013 (unsigned long long)e->sector);
1014
1015 ok = drbd_send_ack(mdev, P_NEG_RS_DREPLY, e);
1016
1017 /* update resync data with failure */
1018 drbd_rs_failed_io(mdev, e->sector, e->size);
1019 }
1020
1021 dec_unacked(mdev);
1022
1023 move_to_net_ee_or_free(mdev, e);
1024
1025 if (unlikely(!ok))
1026 dev_err(DEV, "drbd_send_block() failed\n");
1027 return ok;
1028}
1029
1030int w_e_end_csum_rs_req(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1031{
1032 struct drbd_epoch_entry *e = container_of(w, struct drbd_epoch_entry, w);
1033 struct digest_info *di;
1034 int digest_size;
1035 void *digest = NULL;
1036 int ok, eq = 0;
1037
1038 if (unlikely(cancel)) {
1039 drbd_free_ee(mdev, e);
1040 dec_unacked(mdev);
1041 return 1;
1042 }
1043
Lars Ellenberg1d53f092010-09-05 01:13:24 +02001044 if (get_ldev(mdev)) {
1045 drbd_rs_complete_io(mdev, e->sector);
1046 put_ldev(mdev);
1047 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001048
Philipp Reisner85719572010-07-21 10:20:17 +02001049 di = e->digest;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001050
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001051 if (likely((e->flags & EE_WAS_ERROR) == 0)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001052 /* quick hack to try to avoid a race against reconfiguration.
1053 * a real fix would be much more involved,
1054 * introducing more locking mechanisms */
1055 if (mdev->csums_tfm) {
1056 digest_size = crypto_hash_digestsize(mdev->csums_tfm);
1057 D_ASSERT(digest_size == di->digest_size);
1058 digest = kmalloc(digest_size, GFP_NOIO);
1059 }
1060 if (digest) {
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001061 drbd_csum_ee(mdev, mdev->csums_tfm, e, digest);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001062 eq = !memcmp(digest, di->digest, digest_size);
1063 kfree(digest);
1064 }
1065
1066 if (eq) {
1067 drbd_set_in_sync(mdev, e->sector, e->size);
Lars Ellenberg676396d2010-03-03 02:08:22 +01001068 /* rs_same_csums unit is BM_BLOCK_SIZE */
1069 mdev->rs_same_csum += e->size >> BM_BLOCK_SHIFT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001070 ok = drbd_send_ack(mdev, P_RS_IS_IN_SYNC, e);
1071 } else {
1072 inc_rs_pending(mdev);
Philipp Reisner204bba92010-08-23 16:17:13 +02001073 e->block_id = ID_SYNCER; /* By setting block_id, digest pointer becomes invalid! */
1074 e->flags &= ~EE_HAS_DIGEST; /* This e no longer has a digest pointer */
1075 kfree(di);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001076 ok = drbd_send_block(mdev, P_RS_DATA_REPLY, e);
1077 }
1078 } else {
1079 ok = drbd_send_ack(mdev, P_NEG_RS_DREPLY, e);
1080 if (__ratelimit(&drbd_ratelimit_state))
1081 dev_err(DEV, "Sending NegDReply. I guess it gets messy.\n");
1082 }
1083
1084 dec_unacked(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001085 move_to_net_ee_or_free(mdev, e);
1086
1087 if (unlikely(!ok))
1088 dev_err(DEV, "drbd_send_block/ack() failed\n");
1089 return ok;
1090}
1091
1092int w_e_end_ov_req(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1093{
1094 struct drbd_epoch_entry *e = container_of(w, struct drbd_epoch_entry, w);
1095 int digest_size;
1096 void *digest;
1097 int ok = 1;
1098
1099 if (unlikely(cancel))
1100 goto out;
1101
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001102 if (unlikely((e->flags & EE_WAS_ERROR) != 0))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001103 goto out;
1104
1105 digest_size = crypto_hash_digestsize(mdev->verify_tfm);
1106 /* FIXME if this allocation fails, online verify will not terminate! */
1107 digest = kmalloc(digest_size, GFP_NOIO);
1108 if (digest) {
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001109 drbd_csum_ee(mdev, mdev->verify_tfm, e, digest);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001110 inc_rs_pending(mdev);
1111 ok = drbd_send_drequest_csum(mdev, e->sector, e->size,
1112 digest, digest_size, P_OV_REPLY);
1113 if (!ok)
1114 dec_rs_pending(mdev);
1115 kfree(digest);
1116 }
1117
1118out:
1119 drbd_free_ee(mdev, e);
1120
1121 dec_unacked(mdev);
1122
1123 return ok;
1124}
1125
1126void drbd_ov_oos_found(struct drbd_conf *mdev, sector_t sector, int size)
1127{
1128 if (mdev->ov_last_oos_start + mdev->ov_last_oos_size == sector) {
1129 mdev->ov_last_oos_size += size>>9;
1130 } else {
1131 mdev->ov_last_oos_start = sector;
1132 mdev->ov_last_oos_size = size>>9;
1133 }
1134 drbd_set_out_of_sync(mdev, sector, size);
1135 set_bit(WRITE_BM_AFTER_RESYNC, &mdev->flags);
1136}
1137
1138int w_e_end_ov_reply(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1139{
1140 struct drbd_epoch_entry *e = container_of(w, struct drbd_epoch_entry, w);
1141 struct digest_info *di;
1142 int digest_size;
1143 void *digest;
1144 int ok, eq = 0;
1145
1146 if (unlikely(cancel)) {
1147 drbd_free_ee(mdev, e);
1148 dec_unacked(mdev);
1149 return 1;
1150 }
1151
1152 /* after "cancel", because after drbd_disconnect/drbd_rs_cancel_all
1153 * the resync lru has been cleaned up already */
Lars Ellenberg1d53f092010-09-05 01:13:24 +02001154 if (get_ldev(mdev)) {
1155 drbd_rs_complete_io(mdev, e->sector);
1156 put_ldev(mdev);
1157 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001158
Philipp Reisner85719572010-07-21 10:20:17 +02001159 di = e->digest;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001160
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001161 if (likely((e->flags & EE_WAS_ERROR) == 0)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001162 digest_size = crypto_hash_digestsize(mdev->verify_tfm);
1163 digest = kmalloc(digest_size, GFP_NOIO);
1164 if (digest) {
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001165 drbd_csum_ee(mdev, mdev->verify_tfm, e, digest);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001166
1167 D_ASSERT(digest_size == di->digest_size);
1168 eq = !memcmp(digest, di->digest, digest_size);
1169 kfree(digest);
1170 }
1171 } else {
1172 ok = drbd_send_ack(mdev, P_NEG_RS_DREPLY, e);
1173 if (__ratelimit(&drbd_ratelimit_state))
1174 dev_err(DEV, "Sending NegDReply. I guess it gets messy.\n");
1175 }
1176
1177 dec_unacked(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001178 if (!eq)
1179 drbd_ov_oos_found(mdev, e->sector, e->size);
1180 else
1181 ov_oos_print(mdev);
1182
1183 ok = drbd_send_ack_ex(mdev, P_OV_RESULT, e->sector, e->size,
1184 eq ? ID_IN_SYNC : ID_OUT_OF_SYNC);
1185
1186 drbd_free_ee(mdev, e);
1187
1188 if (--mdev->ov_left == 0) {
1189 ov_oos_print(mdev);
1190 drbd_resync_finished(mdev);
1191 }
1192
1193 return ok;
1194}
1195
1196int w_prev_work_done(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1197{
1198 struct drbd_wq_barrier *b = container_of(w, struct drbd_wq_barrier, w);
1199 complete(&b->done);
1200 return 1;
1201}
1202
1203int w_send_barrier(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1204{
1205 struct drbd_tl_epoch *b = container_of(w, struct drbd_tl_epoch, w);
1206 struct p_barrier *p = &mdev->data.sbuf.barrier;
1207 int ok = 1;
1208
1209 /* really avoid racing with tl_clear. w.cb may have been referenced
1210 * just before it was reassigned and re-queued, so double check that.
1211 * actually, this race was harmless, since we only try to send the
1212 * barrier packet here, and otherwise do nothing with the object.
1213 * but compare with the head of w_clear_epoch */
1214 spin_lock_irq(&mdev->req_lock);
1215 if (w->cb != w_send_barrier || mdev->state.conn < C_CONNECTED)
1216 cancel = 1;
1217 spin_unlock_irq(&mdev->req_lock);
1218 if (cancel)
1219 return 1;
1220
1221 if (!drbd_get_data_sock(mdev))
1222 return 0;
1223 p->barrier = b->br_number;
1224 /* inc_ap_pending was done where this was queued.
1225 * dec_ap_pending will be done in got_BarrierAck
1226 * or (on connection loss) in w_clear_epoch. */
1227 ok = _drbd_send_cmd(mdev, mdev->data.socket, P_BARRIER,
Philipp Reisner0b70a132010-08-20 13:36:10 +02001228 (struct p_header80 *)p, sizeof(*p), 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001229 drbd_put_data_sock(mdev);
1230
1231 return ok;
1232}
1233
1234int w_send_write_hint(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1235{
1236 if (cancel)
1237 return 1;
1238 return drbd_send_short_cmd(mdev, P_UNPLUG_REMOTE);
1239}
1240
1241/**
1242 * w_send_dblock() - Worker callback to send a P_DATA packet in order to mirror a write request
1243 * @mdev: DRBD device.
1244 * @w: work object.
1245 * @cancel: The connection will be closed anyways
1246 */
1247int w_send_dblock(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1248{
1249 struct drbd_request *req = container_of(w, struct drbd_request, w);
1250 int ok;
1251
1252 if (unlikely(cancel)) {
1253 req_mod(req, send_canceled);
1254 return 1;
1255 }
1256
1257 ok = drbd_send_dblock(mdev, req);
1258 req_mod(req, ok ? handed_over_to_network : send_failed);
1259
1260 return ok;
1261}
1262
1263/**
1264 * w_send_read_req() - Worker callback to send a read request (P_DATA_REQUEST) packet
1265 * @mdev: DRBD device.
1266 * @w: work object.
1267 * @cancel: The connection will be closed anyways
1268 */
1269int w_send_read_req(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1270{
1271 struct drbd_request *req = container_of(w, struct drbd_request, w);
1272 int ok;
1273
1274 if (unlikely(cancel)) {
1275 req_mod(req, send_canceled);
1276 return 1;
1277 }
1278
1279 ok = drbd_send_drequest(mdev, P_DATA_REQUEST, req->sector, req->size,
1280 (unsigned long)req);
1281
1282 if (!ok) {
1283 /* ?? we set C_TIMEOUT or C_BROKEN_PIPE in drbd_send();
1284 * so this is probably redundant */
1285 if (mdev->state.conn >= C_CONNECTED)
1286 drbd_force_state(mdev, NS(conn, C_NETWORK_FAILURE));
1287 }
1288 req_mod(req, ok ? handed_over_to_network : send_failed);
1289
1290 return ok;
1291}
1292
Philipp Reisner265be2d2010-05-31 10:14:17 +02001293int w_restart_disk_io(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1294{
1295 struct drbd_request *req = container_of(w, struct drbd_request, w);
1296
Philipp Reisner07782862010-08-31 12:00:50 +02001297 if (bio_data_dir(req->master_bio) == WRITE && req->rq_state & RQ_IN_ACT_LOG)
Philipp Reisner265be2d2010-05-31 10:14:17 +02001298 drbd_al_begin_io(mdev, req->sector);
1299 /* Calling drbd_al_begin_io() out of the worker might deadlocks
1300 theoretically. Practically it can not deadlock, since this is
1301 only used when unfreezing IOs. All the extents of the requests
1302 that made it into the TL are already active */
1303
1304 drbd_req_make_private_bio(req, req->master_bio);
1305 req->private_bio->bi_bdev = mdev->ldev->backing_bdev;
1306 generic_make_request(req->private_bio);
1307
1308 return 1;
1309}
1310
Philipp Reisnerb411b362009-09-25 16:07:19 -07001311static int _drbd_may_sync_now(struct drbd_conf *mdev)
1312{
1313 struct drbd_conf *odev = mdev;
1314
1315 while (1) {
1316 if (odev->sync_conf.after == -1)
1317 return 1;
1318 odev = minor_to_mdev(odev->sync_conf.after);
1319 ERR_IF(!odev) return 1;
1320 if ((odev->state.conn >= C_SYNC_SOURCE &&
1321 odev->state.conn <= C_PAUSED_SYNC_T) ||
1322 odev->state.aftr_isp || odev->state.peer_isp ||
1323 odev->state.user_isp)
1324 return 0;
1325 }
1326}
1327
1328/**
1329 * _drbd_pause_after() - Pause resync on all devices that may not resync now
1330 * @mdev: DRBD device.
1331 *
1332 * Called from process context only (admin command and after_state_ch).
1333 */
1334static int _drbd_pause_after(struct drbd_conf *mdev)
1335{
1336 struct drbd_conf *odev;
1337 int i, rv = 0;
1338
1339 for (i = 0; i < minor_count; i++) {
1340 odev = minor_to_mdev(i);
1341 if (!odev)
1342 continue;
1343 if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS)
1344 continue;
1345 if (!_drbd_may_sync_now(odev))
1346 rv |= (__drbd_set_state(_NS(odev, aftr_isp, 1), CS_HARD, NULL)
1347 != SS_NOTHING_TO_DO);
1348 }
1349
1350 return rv;
1351}
1352
1353/**
1354 * _drbd_resume_next() - Resume resync on all devices that may resync now
1355 * @mdev: DRBD device.
1356 *
1357 * Called from process context only (admin command and worker).
1358 */
1359static int _drbd_resume_next(struct drbd_conf *mdev)
1360{
1361 struct drbd_conf *odev;
1362 int i, rv = 0;
1363
1364 for (i = 0; i < minor_count; i++) {
1365 odev = minor_to_mdev(i);
1366 if (!odev)
1367 continue;
1368 if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS)
1369 continue;
1370 if (odev->state.aftr_isp) {
1371 if (_drbd_may_sync_now(odev))
1372 rv |= (__drbd_set_state(_NS(odev, aftr_isp, 0),
1373 CS_HARD, NULL)
1374 != SS_NOTHING_TO_DO) ;
1375 }
1376 }
1377 return rv;
1378}
1379
1380void resume_next_sg(struct drbd_conf *mdev)
1381{
1382 write_lock_irq(&global_state_lock);
1383 _drbd_resume_next(mdev);
1384 write_unlock_irq(&global_state_lock);
1385}
1386
1387void suspend_other_sg(struct drbd_conf *mdev)
1388{
1389 write_lock_irq(&global_state_lock);
1390 _drbd_pause_after(mdev);
1391 write_unlock_irq(&global_state_lock);
1392}
1393
1394static int sync_after_error(struct drbd_conf *mdev, int o_minor)
1395{
1396 struct drbd_conf *odev;
1397
1398 if (o_minor == -1)
1399 return NO_ERROR;
1400 if (o_minor < -1 || minor_to_mdev(o_minor) == NULL)
1401 return ERR_SYNC_AFTER;
1402
1403 /* check for loops */
1404 odev = minor_to_mdev(o_minor);
1405 while (1) {
1406 if (odev == mdev)
1407 return ERR_SYNC_AFTER_CYCLE;
1408
1409 /* dependency chain ends here, no cycles. */
1410 if (odev->sync_conf.after == -1)
1411 return NO_ERROR;
1412
1413 /* follow the dependency chain */
1414 odev = minor_to_mdev(odev->sync_conf.after);
1415 }
1416}
1417
1418int drbd_alter_sa(struct drbd_conf *mdev, int na)
1419{
1420 int changes;
1421 int retcode;
1422
1423 write_lock_irq(&global_state_lock);
1424 retcode = sync_after_error(mdev, na);
1425 if (retcode == NO_ERROR) {
1426 mdev->sync_conf.after = na;
1427 do {
1428 changes = _drbd_pause_after(mdev);
1429 changes |= _drbd_resume_next(mdev);
1430 } while (changes);
1431 }
1432 write_unlock_irq(&global_state_lock);
1433 return retcode;
1434}
1435
1436/**
1437 * drbd_start_resync() - Start the resync process
1438 * @mdev: DRBD device.
1439 * @side: Either C_SYNC_SOURCE or C_SYNC_TARGET
1440 *
1441 * This function might bring you directly into one of the
1442 * C_PAUSED_SYNC_* states.
1443 */
1444void drbd_start_resync(struct drbd_conf *mdev, enum drbd_conns side)
1445{
1446 union drbd_state ns;
1447 int r;
1448
1449 if (mdev->state.conn >= C_SYNC_SOURCE) {
1450 dev_err(DEV, "Resync already running!\n");
1451 return;
1452 }
1453
Philipp Reisnerb411b362009-09-25 16:07:19 -07001454 /* In case a previous resync run was aborted by an IO error/detach on the peer. */
1455 drbd_rs_cancel_all(mdev);
1456
1457 if (side == C_SYNC_TARGET) {
1458 /* Since application IO was locked out during C_WF_BITMAP_T and
1459 C_WF_SYNC_UUID we are still unmodified. Before going to C_SYNC_TARGET
1460 we check that we might make the data inconsistent. */
1461 r = drbd_khelper(mdev, "before-resync-target");
1462 r = (r >> 8) & 0xff;
1463 if (r > 0) {
1464 dev_info(DEV, "before-resync-target handler returned %d, "
1465 "dropping connection.\n", r);
1466 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
1467 return;
1468 }
1469 }
1470
1471 drbd_state_lock(mdev);
1472
1473 if (!get_ldev_if_state(mdev, D_NEGOTIATING)) {
1474 drbd_state_unlock(mdev);
1475 return;
1476 }
1477
1478 if (side == C_SYNC_TARGET) {
1479 mdev->bm_resync_fo = 0;
1480 } else /* side == C_SYNC_SOURCE */ {
1481 u64 uuid;
1482
1483 get_random_bytes(&uuid, sizeof(u64));
1484 drbd_uuid_set(mdev, UI_BITMAP, uuid);
1485 drbd_send_sync_uuid(mdev, uuid);
1486
1487 D_ASSERT(mdev->state.disk == D_UP_TO_DATE);
1488 }
1489
1490 write_lock_irq(&global_state_lock);
1491 ns = mdev->state;
1492
1493 ns.aftr_isp = !_drbd_may_sync_now(mdev);
1494
1495 ns.conn = side;
1496
1497 if (side == C_SYNC_TARGET)
1498 ns.disk = D_INCONSISTENT;
1499 else /* side == C_SYNC_SOURCE */
1500 ns.pdsk = D_INCONSISTENT;
1501
1502 r = __drbd_set_state(mdev, ns, CS_VERBOSE, NULL);
1503 ns = mdev->state;
1504
1505 if (ns.conn < C_CONNECTED)
1506 r = SS_UNKNOWN_ERROR;
1507
1508 if (r == SS_SUCCESS) {
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001509 unsigned long tw = drbd_bm_total_weight(mdev);
1510 unsigned long now = jiffies;
1511 int i;
1512
Philipp Reisnerb411b362009-09-25 16:07:19 -07001513 mdev->rs_failed = 0;
1514 mdev->rs_paused = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001515 mdev->rs_same_csum = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001516 mdev->rs_last_events = 0;
1517 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001518 mdev->rs_total = tw;
1519 mdev->rs_start = now;
1520 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
1521 mdev->rs_mark_left[i] = tw;
1522 mdev->rs_mark_time[i] = now;
1523 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001524 _drbd_pause_after(mdev);
1525 }
1526 write_unlock_irq(&global_state_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001527 put_ldev(mdev);
1528
1529 if (r == SS_SUCCESS) {
1530 dev_info(DEV, "Began resync as %s (will sync %lu KB [%lu bits set]).\n",
1531 drbd_conn_str(ns.conn),
1532 (unsigned long) mdev->rs_total << (BM_BLOCK_SHIFT-10),
1533 (unsigned long) mdev->rs_total);
1534
Lars Ellenbergaf85e8e2010-10-07 16:07:55 +02001535 if (mdev->agreed_pro_version < 95 && mdev->rs_total == 0) {
1536 /* This still has a race (about when exactly the peers
1537 * detect connection loss) that can lead to a full sync
1538 * on next handshake. In 8.3.9 we fixed this with explicit
1539 * resync-finished notifications, but the fix
1540 * introduces a protocol change. Sleeping for some
1541 * time longer than the ping interval + timeout on the
1542 * SyncSource, to give the SyncTarget the chance to
1543 * detect connection loss, then waiting for a ping
1544 * response (implicit in drbd_resync_finished) reduces
1545 * the race considerably, but does not solve it. */
1546 if (side == C_SYNC_SOURCE)
1547 schedule_timeout_interruptible(
1548 mdev->net_conf->ping_int * HZ +
1549 mdev->net_conf->ping_timeo*HZ/9);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001550 drbd_resync_finished(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001551 }
1552
Philipp Reisner778f2712010-07-06 11:14:00 +02001553 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001554 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02001555 mdev->rs_in_flight = 0;
1556 mdev->rs_planed = 0;
1557 spin_lock(&mdev->peer_seq_lock);
1558 fifo_set(&mdev->rs_plan_s, 0);
1559 spin_unlock(&mdev->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001560 /* ns.conn may already be != mdev->state.conn,
1561 * we may have been paused in between, or become paused until
1562 * the timer triggers.
1563 * No matter, that is handled in resync_timer_fn() */
1564 if (ns.conn == C_SYNC_TARGET)
1565 mod_timer(&mdev->resync_timer, jiffies);
1566
1567 drbd_md_sync(mdev);
1568 }
Philipp Reisnerd0c3f602010-03-02 15:06:45 +01001569 drbd_state_unlock(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001570}
1571
1572int drbd_worker(struct drbd_thread *thi)
1573{
1574 struct drbd_conf *mdev = thi->mdev;
1575 struct drbd_work *w = NULL;
1576 LIST_HEAD(work_list);
1577 int intr = 0, i;
1578
1579 sprintf(current->comm, "drbd%d_worker", mdev_to_minor(mdev));
1580
1581 while (get_t_state(thi) == Running) {
1582 drbd_thread_current_set_cpu(mdev);
1583
1584 if (down_trylock(&mdev->data.work.s)) {
1585 mutex_lock(&mdev->data.mutex);
1586 if (mdev->data.socket && !mdev->net_conf->no_cork)
1587 drbd_tcp_uncork(mdev->data.socket);
1588 mutex_unlock(&mdev->data.mutex);
1589
1590 intr = down_interruptible(&mdev->data.work.s);
1591
1592 mutex_lock(&mdev->data.mutex);
1593 if (mdev->data.socket && !mdev->net_conf->no_cork)
1594 drbd_tcp_cork(mdev->data.socket);
1595 mutex_unlock(&mdev->data.mutex);
1596 }
1597
1598 if (intr) {
1599 D_ASSERT(intr == -EINTR);
1600 flush_signals(current);
1601 ERR_IF (get_t_state(thi) == Running)
1602 continue;
1603 break;
1604 }
1605
1606 if (get_t_state(thi) != Running)
1607 break;
1608 /* With this break, we have done a down() but not consumed
1609 the entry from the list. The cleanup code takes care of
1610 this... */
1611
1612 w = NULL;
1613 spin_lock_irq(&mdev->data.work.q_lock);
1614 ERR_IF(list_empty(&mdev->data.work.q)) {
1615 /* something terribly wrong in our logic.
1616 * we were able to down() the semaphore,
1617 * but the list is empty... doh.
1618 *
1619 * what is the best thing to do now?
1620 * try again from scratch, restarting the receiver,
1621 * asender, whatnot? could break even more ugly,
1622 * e.g. when we are primary, but no good local data.
1623 *
1624 * I'll try to get away just starting over this loop.
1625 */
1626 spin_unlock_irq(&mdev->data.work.q_lock);
1627 continue;
1628 }
1629 w = list_entry(mdev->data.work.q.next, struct drbd_work, list);
1630 list_del_init(&w->list);
1631 spin_unlock_irq(&mdev->data.work.q_lock);
1632
1633 if (!w->cb(mdev, w, mdev->state.conn < C_CONNECTED)) {
1634 /* dev_warn(DEV, "worker: a callback failed! \n"); */
1635 if (mdev->state.conn >= C_CONNECTED)
1636 drbd_force_state(mdev,
1637 NS(conn, C_NETWORK_FAILURE));
1638 }
1639 }
1640 D_ASSERT(test_bit(DEVICE_DYING, &mdev->flags));
1641 D_ASSERT(test_bit(CONFIG_PENDING, &mdev->flags));
1642
1643 spin_lock_irq(&mdev->data.work.q_lock);
1644 i = 0;
1645 while (!list_empty(&mdev->data.work.q)) {
1646 list_splice_init(&mdev->data.work.q, &work_list);
1647 spin_unlock_irq(&mdev->data.work.q_lock);
1648
1649 while (!list_empty(&work_list)) {
1650 w = list_entry(work_list.next, struct drbd_work, list);
1651 list_del_init(&w->list);
1652 w->cb(mdev, w, 1);
1653 i++; /* dead debugging code */
1654 }
1655
1656 spin_lock_irq(&mdev->data.work.q_lock);
1657 }
1658 sema_init(&mdev->data.work.s, 0);
1659 /* DANGEROUS race: if someone did queue his work within the spinlock,
1660 * but up() ed outside the spinlock, we could get an up() on the
1661 * semaphore without corresponding list entry.
1662 * So don't do that.
1663 */
1664 spin_unlock_irq(&mdev->data.work.q_lock);
1665
1666 D_ASSERT(mdev->state.disk == D_DISKLESS && mdev->state.conn == C_STANDALONE);
1667 /* _drbd_set_state only uses stop_nowait.
1668 * wait here for the Exiting receiver. */
1669 drbd_thread_stop(&mdev->receiver);
1670 drbd_mdev_cleanup(mdev);
1671
1672 dev_info(DEV, "worker terminated\n");
1673
1674 clear_bit(DEVICE_DYING, &mdev->flags);
1675 clear_bit(CONFIG_PENDING, &mdev->flags);
1676 wake_up(&mdev->state_wait);
1677
1678 return 0;
1679}