1 // SPDX-License-Identifier: GPL-2.0-or-later
5 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
7 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
8 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
9 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
14 #include <linux/module.h>
15 #include <linux/drbd.h>
16 #include <linux/sched/signal.h>
17 #include <linux/wait.h>
19 #include <linux/memcontrol.h>
20 #include <linux/mm_inline.h>
21 #include <linux/slab.h>
22 #include <linux/random.h>
23 #include <linux/string.h>
24 #include <linux/scatterlist.h>
25 #include <linux/part_stat.h>
28 #include "drbd_protocol.h"
31 static int make_ov_request(struct drbd_device
*, int);
32 static int make_resync_request(struct drbd_device
*, int);
35 * drbd_md_endio (defined here)
36 * drbd_request_endio (defined here)
37 * drbd_peer_request_endio (defined here)
38 * drbd_bm_endio (defined in drbd_bitmap.c)
40 * For all these callbacks, note the following:
41 * The callbacks will be called in irq context by the IDE drivers,
42 * and in Softirqs/Tasklets/BH context by the SCSI drivers.
43 * Try to get the locking right :)
47 /* used for synchronous meta data and bitmap IO
48 * submitted by drbd_md_sync_page_io()
50 void drbd_md_endio(struct bio
*bio
)
52 struct drbd_device
*device
;
54 device
= bio
->bi_private
;
55 device
->md_io
.error
= blk_status_to_errno(bio
->bi_status
);
57 /* special case: drbd_md_read() during drbd_adm_attach() */
62 /* We grabbed an extra reference in _drbd_md_sync_page_io() to be able
63 * to timeout on the lower level device, and eventually detach from it.
64 * If this io completion runs after that timeout expired, this
65 * drbd_md_put_buffer() may allow us to finally try and re-attach.
66 * During normal operation, this only puts that extra reference
68 * Make sure we first drop the reference, and only then signal
69 * completion, or we may (in drbd_al_read_log()) cycle so fast into the
70 * next drbd_md_sync_page_io(), that we trigger the
71 * ASSERT(atomic_read(&device->md_io_in_use) == 1) there.
73 drbd_md_put_buffer(device
);
74 device
->md_io
.done
= 1;
75 wake_up(&device
->misc_wait
);
78 /* reads on behalf of the partner,
79 * "submitted" by the receiver
81 static void drbd_endio_read_sec_final(struct drbd_peer_request
*peer_req
) __releases(local
)
83 unsigned long flags
= 0;
84 struct drbd_peer_device
*peer_device
= peer_req
->peer_device
;
85 struct drbd_device
*device
= peer_device
->device
;
87 spin_lock_irqsave(&device
->resource
->req_lock
, flags
);
88 device
->read_cnt
+= peer_req
->i
.size
>> 9;
89 list_del(&peer_req
->w
.list
);
90 if (list_empty(&device
->read_ee
))
91 wake_up(&device
->ee_wait
);
92 if (test_bit(__EE_WAS_ERROR
, &peer_req
->flags
))
93 __drbd_chk_io_error(device
, DRBD_READ_ERROR
);
94 spin_unlock_irqrestore(&device
->resource
->req_lock
, flags
);
96 drbd_queue_work(&peer_device
->connection
->sender_work
, &peer_req
->w
);
100 /* writes on behalf of the partner, or resync writes,
101 * "submitted" by the receiver, final stage. */
102 void drbd_endio_write_sec_final(struct drbd_peer_request
*peer_req
) __releases(local
)
104 unsigned long flags
= 0;
105 struct drbd_peer_device
*peer_device
= peer_req
->peer_device
;
106 struct drbd_device
*device
= peer_device
->device
;
107 struct drbd_connection
*connection
= peer_device
->connection
;
108 struct drbd_interval i
;
111 int do_al_complete_io
;
113 /* after we moved peer_req to done_ee,
114 * we may no longer access it,
115 * it may be freed/reused already!
116 * (as soon as we release the req_lock) */
118 do_al_complete_io
= peer_req
->flags
& EE_CALL_AL_COMPLETE_IO
;
119 block_id
= peer_req
->block_id
;
120 peer_req
->flags
&= ~EE_CALL_AL_COMPLETE_IO
;
122 if (peer_req
->flags
& EE_WAS_ERROR
) {
123 /* In protocol != C, we usually do not send write acks.
124 * In case of a write error, send the neg ack anyways. */
125 if (!__test_and_set_bit(__EE_SEND_WRITE_ACK
, &peer_req
->flags
))
127 drbd_set_out_of_sync(device
, peer_req
->i
.sector
, peer_req
->i
.size
);
130 spin_lock_irqsave(&device
->resource
->req_lock
, flags
);
131 device
->writ_cnt
+= peer_req
->i
.size
>> 9;
132 list_move_tail(&peer_req
->w
.list
, &device
->done_ee
);
135 * Do not remove from the write_requests tree here: we did not send the
136 * Ack yet and did not wake possibly waiting conflicting requests.
137 * Removed from the tree from "drbd_process_done_ee" within the
138 * appropriate dw.cb (e_end_block/e_end_resync_block) or from
139 * _drbd_clear_done_ee.
142 do_wake
= list_empty(block_id
== ID_SYNCER
? &device
->sync_ee
: &device
->active_ee
);
144 /* FIXME do we want to detach for failed REQ_OP_DISCARD?
145 * ((peer_req->flags & (EE_WAS_ERROR|EE_TRIM)) == EE_WAS_ERROR) */
146 if (peer_req
->flags
& EE_WAS_ERROR
)
147 __drbd_chk_io_error(device
, DRBD_WRITE_ERROR
);
149 if (connection
->cstate
>= C_WF_REPORT_PARAMS
) {
150 kref_get(&device
->kref
); /* put is in drbd_send_acks_wf() */
151 if (!queue_work(connection
->ack_sender
, &peer_device
->send_acks_work
))
152 kref_put(&device
->kref
, drbd_destroy_device
);
154 spin_unlock_irqrestore(&device
->resource
->req_lock
, flags
);
156 if (block_id
== ID_SYNCER
)
157 drbd_rs_complete_io(device
, i
.sector
);
160 wake_up(&device
->ee_wait
);
162 if (do_al_complete_io
)
163 drbd_al_complete_io(device
, &i
);
168 /* writes on behalf of the partner, or resync writes,
169 * "submitted" by the receiver.
171 void drbd_peer_request_endio(struct bio
*bio
)
173 struct drbd_peer_request
*peer_req
= bio
->bi_private
;
174 struct drbd_device
*device
= peer_req
->peer_device
->device
;
175 bool is_write
= bio_data_dir(bio
) == WRITE
;
176 bool is_discard
= bio_op(bio
) == REQ_OP_WRITE_ZEROES
||
177 bio_op(bio
) == REQ_OP_DISCARD
;
179 if (bio
->bi_status
&& __ratelimit(&drbd_ratelimit_state
))
180 drbd_warn(device
, "%s: error=%d s=%llus\n",
181 is_write
? (is_discard
? "discard" : "write")
182 : "read", bio
->bi_status
,
183 (unsigned long long)peer_req
->i
.sector
);
186 set_bit(__EE_WAS_ERROR
, &peer_req
->flags
);
188 bio_put(bio
); /* no need for the bio anymore */
189 if (atomic_dec_and_test(&peer_req
->pending_bios
)) {
191 drbd_endio_write_sec_final(peer_req
);
193 drbd_endio_read_sec_final(peer_req
);
198 drbd_panic_after_delayed_completion_of_aborted_request(struct drbd_device
*device
)
200 panic("drbd%u %s/%u potential random memory corruption caused by delayed completion of aborted local request\n",
201 device
->minor
, device
->resource
->name
, device
->vnr
);
204 /* read, readA or write requests on R_PRIMARY coming from drbd_make_request
206 void drbd_request_endio(struct bio
*bio
)
209 struct drbd_request
*req
= bio
->bi_private
;
210 struct drbd_device
*device
= req
->device
;
211 struct bio_and_error m
;
212 enum drbd_req_event what
;
214 /* If this request was aborted locally before,
215 * but now was completed "successfully",
216 * chances are that this caused arbitrary data corruption.
218 * "aborting" requests, or force-detaching the disk, is intended for
219 * completely blocked/hung local backing devices which do no longer
220 * complete requests at all, not even do error completions. In this
221 * situation, usually a hard-reset and failover is the only way out.
223 * By "aborting", basically faking a local error-completion,
224 * we allow for a more graceful swichover by cleanly migrating services.
225 * Still the affected node has to be rebooted "soon".
227 * By completing these requests, we allow the upper layers to re-use
228 * the associated data pages.
230 * If later the local backing device "recovers", and now DMAs some data
231 * from disk into the original request pages, in the best case it will
232 * just put random data into unused pages; but typically it will corrupt
233 * meanwhile completely unrelated data, causing all sorts of damage.
235 * Which means delayed successful completion,
236 * especially for READ requests,
237 * is a reason to panic().
239 * We assume that a delayed *error* completion is OK,
240 * though we still will complain noisily about it.
242 if (unlikely(req
->rq_state
& RQ_LOCAL_ABORTED
)) {
243 if (__ratelimit(&drbd_ratelimit_state
))
244 drbd_emerg(device
, "delayed completion of aborted local request; disk-timeout may be too aggressive\n");
247 drbd_panic_after_delayed_completion_of_aborted_request(device
);
250 /* to avoid recursion in __req_mod */
251 if (unlikely(bio
->bi_status
)) {
252 switch (bio_op(bio
)) {
253 case REQ_OP_WRITE_ZEROES
:
255 if (bio
->bi_status
== BLK_STS_NOTSUPP
)
256 what
= DISCARD_COMPLETED_NOTSUPP
;
258 what
= DISCARD_COMPLETED_WITH_ERROR
;
261 if (bio
->bi_opf
& REQ_RAHEAD
)
262 what
= READ_AHEAD_COMPLETED_WITH_ERROR
;
264 what
= READ_COMPLETED_WITH_ERROR
;
267 what
= WRITE_COMPLETED_WITH_ERROR
;
274 req
->private_bio
= ERR_PTR(blk_status_to_errno(bio
->bi_status
));
277 /* not req_mod(), we need irqsave here! */
278 spin_lock_irqsave(&device
->resource
->req_lock
, flags
);
279 __req_mod(req
, what
, &m
);
280 spin_unlock_irqrestore(&device
->resource
->req_lock
, flags
);
284 complete_master_bio(device
, &m
);
287 void drbd_csum_ee(struct crypto_shash
*tfm
, struct drbd_peer_request
*peer_req
, void *digest
)
289 SHASH_DESC_ON_STACK(desc
, tfm
);
290 struct page
*page
= peer_req
->pages
;
297 crypto_shash_init(desc
);
299 src
= kmap_atomic(page
);
300 while ((tmp
= page_chain_next(page
))) {
301 /* all but the last page will be fully used */
302 crypto_shash_update(desc
, src
, PAGE_SIZE
);
305 src
= kmap_atomic(page
);
307 /* and now the last, possibly only partially used page */
308 len
= peer_req
->i
.size
& (PAGE_SIZE
- 1);
309 crypto_shash_update(desc
, src
, len
?: PAGE_SIZE
);
312 crypto_shash_final(desc
, digest
);
313 shash_desc_zero(desc
);
316 void drbd_csum_bio(struct crypto_shash
*tfm
, struct bio
*bio
, void *digest
)
318 SHASH_DESC_ON_STACK(desc
, tfm
);
320 struct bvec_iter iter
;
324 crypto_shash_init(desc
);
326 bio_for_each_segment(bvec
, bio
, iter
) {
329 src
= kmap_atomic(bvec
.bv_page
);
330 crypto_shash_update(desc
, src
+ bvec
.bv_offset
, bvec
.bv_len
);
333 /* REQ_OP_WRITE_SAME has only one segment,
334 * checksum the payload only once. */
335 if (bio_op(bio
) == REQ_OP_WRITE_SAME
)
338 crypto_shash_final(desc
, digest
);
339 shash_desc_zero(desc
);
342 /* MAYBE merge common code with w_e_end_ov_req */
343 static int w_e_send_csum(struct drbd_work
*w
, int cancel
)
345 struct drbd_peer_request
*peer_req
= container_of(w
, struct drbd_peer_request
, w
);
346 struct drbd_peer_device
*peer_device
= peer_req
->peer_device
;
347 struct drbd_device
*device
= peer_device
->device
;
352 if (unlikely(cancel
))
355 if (unlikely((peer_req
->flags
& EE_WAS_ERROR
) != 0))
358 digest_size
= crypto_shash_digestsize(peer_device
->connection
->csums_tfm
);
359 digest
= kmalloc(digest_size
, GFP_NOIO
);
361 sector_t sector
= peer_req
->i
.sector
;
362 unsigned int size
= peer_req
->i
.size
;
363 drbd_csum_ee(peer_device
->connection
->csums_tfm
, peer_req
, digest
);
364 /* Free peer_req and pages before send.
365 * In case we block on congestion, we could otherwise run into
366 * some distributed deadlock, if the other side blocks on
367 * congestion as well, because our receiver blocks in
368 * drbd_alloc_pages due to pp_in_use > max_buffers. */
369 drbd_free_peer_req(device
, peer_req
);
371 inc_rs_pending(device
);
372 err
= drbd_send_drequest_csum(peer_device
, sector
, size
,
377 drbd_err(device
, "kmalloc() of digest failed.\n");
383 drbd_free_peer_req(device
, peer_req
);
386 drbd_err(device
, "drbd_send_drequest(..., csum) failed\n");
390 #define GFP_TRY (__GFP_HIGHMEM | __GFP_NOWARN)
392 static int read_for_csum(struct drbd_peer_device
*peer_device
, sector_t sector
, int size
)
394 struct drbd_device
*device
= peer_device
->device
;
395 struct drbd_peer_request
*peer_req
;
397 if (!get_ldev(device
))
400 /* GFP_TRY, because if there is no memory available right now, this may
401 * be rescheduled for later. It is "only" background resync, after all. */
402 peer_req
= drbd_alloc_peer_req(peer_device
, ID_SYNCER
/* unused */, sector
,
403 size
, size
, GFP_TRY
);
407 peer_req
->w
.cb
= w_e_send_csum
;
408 spin_lock_irq(&device
->resource
->req_lock
);
409 list_add_tail(&peer_req
->w
.list
, &device
->read_ee
);
410 spin_unlock_irq(&device
->resource
->req_lock
);
412 atomic_add(size
>> 9, &device
->rs_sect_ev
);
413 if (drbd_submit_peer_request(device
, peer_req
, REQ_OP_READ
, 0,
414 DRBD_FAULT_RS_RD
) == 0)
417 /* If it failed because of ENOMEM, retry should help. If it failed
418 * because bio_add_page failed (probably broken lower level driver),
419 * retry may or may not help.
420 * If it does not, you may need to force disconnect. */
421 spin_lock_irq(&device
->resource
->req_lock
);
422 list_del(&peer_req
->w
.list
);
423 spin_unlock_irq(&device
->resource
->req_lock
);
425 drbd_free_peer_req(device
, peer_req
);
431 int w_resync_timer(struct drbd_work
*w
, int cancel
)
433 struct drbd_device
*device
=
434 container_of(w
, struct drbd_device
, resync_work
);
436 switch (device
->state
.conn
) {
438 make_ov_request(device
, cancel
);
441 make_resync_request(device
, cancel
);
448 void resync_timer_fn(struct timer_list
*t
)
450 struct drbd_device
*device
= from_timer(device
, t
, resync_timer
);
452 drbd_queue_work_if_unqueued(
453 &first_peer_device(device
)->connection
->sender_work
,
454 &device
->resync_work
);
457 static void fifo_set(struct fifo_buffer
*fb
, int value
)
461 for (i
= 0; i
< fb
->size
; i
++)
462 fb
->values
[i
] = value
;
465 static int fifo_push(struct fifo_buffer
*fb
, int value
)
469 ov
= fb
->values
[fb
->head_index
];
470 fb
->values
[fb
->head_index
++] = value
;
472 if (fb
->head_index
>= fb
->size
)
478 static void fifo_add_val(struct fifo_buffer
*fb
, int value
)
482 for (i
= 0; i
< fb
->size
; i
++)
483 fb
->values
[i
] += value
;
486 struct fifo_buffer
*fifo_alloc(unsigned int fifo_size
)
488 struct fifo_buffer
*fb
;
490 fb
= kzalloc(struct_size(fb
, values
, fifo_size
), GFP_NOIO
);
495 fb
->size
= fifo_size
;
501 static int drbd_rs_controller(struct drbd_device
*device
, unsigned int sect_in
)
503 struct disk_conf
*dc
;
504 unsigned int want
; /* The number of sectors we want in-flight */
505 int req_sect
; /* Number of sectors to request in this turn */
506 int correction
; /* Number of sectors more we need in-flight */
507 int cps
; /* correction per invocation of drbd_rs_controller() */
508 int steps
; /* Number of time steps to plan ahead */
511 struct fifo_buffer
*plan
;
513 dc
= rcu_dereference(device
->ldev
->disk_conf
);
514 plan
= rcu_dereference(device
->rs_plan_s
);
516 steps
= plan
->size
; /* (dc->c_plan_ahead * 10 * SLEEP_TIME) / HZ; */
518 if (device
->rs_in_flight
+ sect_in
== 0) { /* At start of resync */
519 want
= ((dc
->resync_rate
* 2 * SLEEP_TIME
) / HZ
) * steps
;
520 } else { /* normal path */
521 want
= dc
->c_fill_target
? dc
->c_fill_target
:
522 sect_in
* dc
->c_delay_target
* HZ
/ (SLEEP_TIME
* 10);
525 correction
= want
- device
->rs_in_flight
- plan
->total
;
528 cps
= correction
/ steps
;
529 fifo_add_val(plan
, cps
);
530 plan
->total
+= cps
* steps
;
532 /* What we do in this step */
533 curr_corr
= fifo_push(plan
, 0);
534 plan
->total
-= curr_corr
;
536 req_sect
= sect_in
+ curr_corr
;
540 max_sect
= (dc
->c_max_rate
* 2 * SLEEP_TIME
) / HZ
;
541 if (req_sect
> max_sect
)
545 drbd_warn(device, "si=%u if=%d wa=%u co=%d st=%d cps=%d pl=%d cc=%d rs=%d\n",
546 sect_in, device->rs_in_flight, want, correction,
547 steps, cps, device->rs_planed, curr_corr, req_sect);
553 static int drbd_rs_number_requests(struct drbd_device
*device
)
555 unsigned int sect_in
; /* Number of sectors that came in since the last turn */
558 sect_in
= atomic_xchg(&device
->rs_sect_in
, 0);
559 device
->rs_in_flight
-= sect_in
;
562 mxb
= drbd_get_max_buffers(device
) / 2;
563 if (rcu_dereference(device
->rs_plan_s
)->size
) {
564 number
= drbd_rs_controller(device
, sect_in
) >> (BM_BLOCK_SHIFT
- 9);
565 device
->c_sync_rate
= number
* HZ
* (BM_BLOCK_SIZE
/ 1024) / SLEEP_TIME
;
567 device
->c_sync_rate
= rcu_dereference(device
->ldev
->disk_conf
)->resync_rate
;
568 number
= SLEEP_TIME
* device
->c_sync_rate
/ ((BM_BLOCK_SIZE
/ 1024) * HZ
);
572 /* Don't have more than "max-buffers"/2 in-flight.
573 * Otherwise we may cause the remote site to stall on drbd_alloc_pages(),
574 * potentially causing a distributed deadlock on congestion during
575 * online-verify or (checksum-based) resync, if max-buffers,
576 * socket buffer sizes and resync rate settings are mis-configured. */
578 /* note that "number" is in units of "BM_BLOCK_SIZE" (which is 4k),
579 * mxb (as used here, and in drbd_alloc_pages on the peer) is
580 * "number of pages" (typically also 4k),
581 * but "rs_in_flight" is in "sectors" (512 Byte). */
582 if (mxb
- device
->rs_in_flight
/8 < number
)
583 number
= mxb
- device
->rs_in_flight
/8;
588 static int make_resync_request(struct drbd_device
*const device
, int cancel
)
590 struct drbd_peer_device
*const peer_device
= first_peer_device(device
);
591 struct drbd_connection
*const connection
= peer_device
? peer_device
->connection
: NULL
;
594 const sector_t capacity
= get_capacity(device
->vdisk
);
596 int number
, rollback_i
, size
;
597 int align
, requeue
= 0;
599 int discard_granularity
= 0;
601 if (unlikely(cancel
))
604 if (device
->rs_total
== 0) {
606 drbd_resync_finished(device
);
610 if (!get_ldev(device
)) {
611 /* Since we only need to access device->rsync a
612 get_ldev_if_state(device,D_FAILED) would be sufficient, but
613 to continue resync with a broken disk makes no sense at
615 drbd_err(device
, "Disk broke down during resync!\n");
619 if (connection
->agreed_features
& DRBD_FF_THIN_RESYNC
) {
621 discard_granularity
= rcu_dereference(device
->ldev
->disk_conf
)->rs_discard_granularity
;
625 max_bio_size
= queue_max_hw_sectors(device
->rq_queue
) << 9;
626 number
= drbd_rs_number_requests(device
);
630 for (i
= 0; i
< number
; i
++) {
631 /* Stop generating RS requests when half of the send buffer is filled,
632 * but notify TCP that we'd like to have more space. */
633 mutex_lock(&connection
->data
.mutex
);
634 if (connection
->data
.socket
) {
635 struct sock
*sk
= connection
->data
.socket
->sk
;
636 int queued
= sk
->sk_wmem_queued
;
637 int sndbuf
= sk
->sk_sndbuf
;
638 if (queued
> sndbuf
/ 2) {
641 set_bit(SOCK_NOSPACE
, &sk
->sk_socket
->flags
);
645 mutex_unlock(&connection
->data
.mutex
);
650 size
= BM_BLOCK_SIZE
;
651 bit
= drbd_bm_find_next(device
, device
->bm_resync_fo
);
653 if (bit
== DRBD_END_OF_BITMAP
) {
654 device
->bm_resync_fo
= drbd_bm_bits(device
);
659 sector
= BM_BIT_TO_SECT(bit
);
661 if (drbd_try_rs_begin_io(device
, sector
)) {
662 device
->bm_resync_fo
= bit
;
665 device
->bm_resync_fo
= bit
+ 1;
667 if (unlikely(drbd_bm_test_bit(device
, bit
) == 0)) {
668 drbd_rs_complete_io(device
, sector
);
672 #if DRBD_MAX_BIO_SIZE > BM_BLOCK_SIZE
673 /* try to find some adjacent bits.
674 * we stop if we have already the maximum req size.
676 * Additionally always align bigger requests, in order to
677 * be prepared for all stripe sizes of software RAIDs.
682 if (size
+ BM_BLOCK_SIZE
> max_bio_size
)
685 /* Be always aligned */
686 if (sector
& ((1<<(align
+3))-1))
689 if (discard_granularity
&& size
== discard_granularity
)
692 /* do not cross extent boundaries */
693 if (((bit
+1) & BM_BLOCKS_PER_BM_EXT_MASK
) == 0)
695 /* now, is it actually dirty, after all?
696 * caution, drbd_bm_test_bit is tri-state for some
697 * obscure reason; ( b == 0 ) would get the out-of-band
698 * only accidentally right because of the "oddly sized"
699 * adjustment below */
700 if (drbd_bm_test_bit(device
, bit
+1) != 1)
703 size
+= BM_BLOCK_SIZE
;
704 if ((BM_BLOCK_SIZE
<< align
) <= size
)
708 /* if we merged some,
709 * reset the offset to start the next drbd_bm_find_next from */
710 if (size
> BM_BLOCK_SIZE
)
711 device
->bm_resync_fo
= bit
+ 1;
714 /* adjust very last sectors, in case we are oddly sized */
715 if (sector
+ (size
>>9) > capacity
)
716 size
= (capacity
-sector
)<<9;
718 if (device
->use_csums
) {
719 switch (read_for_csum(peer_device
, sector
, size
)) {
720 case -EIO
: /* Disk failure */
723 case -EAGAIN
: /* allocation failed, or ldev busy */
724 drbd_rs_complete_io(device
, sector
);
725 device
->bm_resync_fo
= BM_SECT_TO_BIT(sector
);
737 inc_rs_pending(device
);
738 err
= drbd_send_drequest(peer_device
,
739 size
== discard_granularity
? P_RS_THIN_REQ
: P_RS_DATA_REQUEST
,
740 sector
, size
, ID_SYNCER
);
742 drbd_err(device
, "drbd_send_drequest() failed, aborting...\n");
743 dec_rs_pending(device
);
750 if (device
->bm_resync_fo
>= drbd_bm_bits(device
)) {
751 /* last syncer _request_ was sent,
752 * but the P_RS_DATA_REPLY not yet received. sync will end (and
753 * next sync group will resume), as soon as we receive the last
754 * resync data block, and the last bit is cleared.
755 * until then resync "work" is "inactive" ...
762 device
->rs_in_flight
+= (i
<< (BM_BLOCK_SHIFT
- 9));
763 mod_timer(&device
->resync_timer
, jiffies
+ SLEEP_TIME
);
768 static int make_ov_request(struct drbd_device
*device
, int cancel
)
772 const sector_t capacity
= get_capacity(device
->vdisk
);
773 bool stop_sector_reached
= false;
775 if (unlikely(cancel
))
778 number
= drbd_rs_number_requests(device
);
780 sector
= device
->ov_position
;
781 for (i
= 0; i
< number
; i
++) {
782 if (sector
>= capacity
)
785 /* We check for "finished" only in the reply path:
786 * w_e_end_ov_reply().
787 * We need to send at least one request out. */
788 stop_sector_reached
= i
> 0
789 && verify_can_do_stop_sector(device
)
790 && sector
>= device
->ov_stop_sector
;
791 if (stop_sector_reached
)
794 size
= BM_BLOCK_SIZE
;
796 if (drbd_try_rs_begin_io(device
, sector
)) {
797 device
->ov_position
= sector
;
801 if (sector
+ (size
>>9) > capacity
)
802 size
= (capacity
-sector
)<<9;
804 inc_rs_pending(device
);
805 if (drbd_send_ov_request(first_peer_device(device
), sector
, size
)) {
806 dec_rs_pending(device
);
809 sector
+= BM_SECT_PER_BIT
;
811 device
->ov_position
= sector
;
814 device
->rs_in_flight
+= (i
<< (BM_BLOCK_SHIFT
- 9));
815 if (i
== 0 || !stop_sector_reached
)
816 mod_timer(&device
->resync_timer
, jiffies
+ SLEEP_TIME
);
820 int w_ov_finished(struct drbd_work
*w
, int cancel
)
822 struct drbd_device_work
*dw
=
823 container_of(w
, struct drbd_device_work
, w
);
824 struct drbd_device
*device
= dw
->device
;
826 ov_out_of_sync_print(device
);
827 drbd_resync_finished(device
);
832 static int w_resync_finished(struct drbd_work
*w
, int cancel
)
834 struct drbd_device_work
*dw
=
835 container_of(w
, struct drbd_device_work
, w
);
836 struct drbd_device
*device
= dw
->device
;
839 drbd_resync_finished(device
);
844 static void ping_peer(struct drbd_device
*device
)
846 struct drbd_connection
*connection
= first_peer_device(device
)->connection
;
848 clear_bit(GOT_PING_ACK
, &connection
->flags
);
849 request_ping(connection
);
850 wait_event(connection
->ping_wait
,
851 test_bit(GOT_PING_ACK
, &connection
->flags
) || device
->state
.conn
< C_CONNECTED
);
854 int drbd_resync_finished(struct drbd_device
*device
)
856 struct drbd_connection
*connection
= first_peer_device(device
)->connection
;
857 unsigned long db
, dt
, dbdt
;
859 union drbd_state os
, ns
;
860 struct drbd_device_work
*dw
;
861 char *khelper_cmd
= NULL
;
864 /* Remove all elements from the resync LRU. Since future actions
865 * might set bits in the (main) bitmap, then the entries in the
866 * resync LRU would be wrong. */
867 if (drbd_rs_del_all(device
)) {
868 /* In case this is not possible now, most probably because
869 * there are P_RS_DATA_REPLY Packets lingering on the worker's
870 * queue (or even the read operations for those packets
871 * is not finished by now). Retry in 100ms. */
873 schedule_timeout_interruptible(HZ
/ 10);
874 dw
= kmalloc(sizeof(struct drbd_device_work
), GFP_ATOMIC
);
876 dw
->w
.cb
= w_resync_finished
;
878 drbd_queue_work(&connection
->sender_work
, &dw
->w
);
881 drbd_err(device
, "Warn failed to drbd_rs_del_all() and to kmalloc(dw).\n");
884 dt
= (jiffies
- device
->rs_start
- device
->rs_paused
) / HZ
;
888 db
= device
->rs_total
;
889 /* adjust for verify start and stop sectors, respective reached position */
890 if (device
->state
.conn
== C_VERIFY_S
|| device
->state
.conn
== C_VERIFY_T
)
891 db
-= device
->ov_left
;
893 dbdt
= Bit2KB(db
/dt
);
894 device
->rs_paused
/= HZ
;
896 if (!get_ldev(device
))
901 spin_lock_irq(&device
->resource
->req_lock
);
902 os
= drbd_read_state(device
);
904 verify_done
= (os
.conn
== C_VERIFY_S
|| os
.conn
== C_VERIFY_T
);
906 /* This protects us against multiple calls (that can happen in the presence
907 of application IO), and against connectivity loss just before we arrive here. */
908 if (os
.conn
<= C_CONNECTED
)
912 ns
.conn
= C_CONNECTED
;
914 drbd_info(device
, "%s done (total %lu sec; paused %lu sec; %lu K/sec)\n",
915 verify_done
? "Online verify" : "Resync",
916 dt
+ device
->rs_paused
, device
->rs_paused
, dbdt
);
918 n_oos
= drbd_bm_total_weight(device
);
920 if (os
.conn
== C_VERIFY_S
|| os
.conn
== C_VERIFY_T
) {
922 drbd_alert(device
, "Online verify found %lu %dk block out of sync!\n",
924 khelper_cmd
= "out-of-sync";
927 D_ASSERT(device
, (n_oos
- device
->rs_failed
) == 0);
929 if (os
.conn
== C_SYNC_TARGET
|| os
.conn
== C_PAUSED_SYNC_T
)
930 khelper_cmd
= "after-resync-target";
932 if (device
->use_csums
&& device
->rs_total
) {
933 const unsigned long s
= device
->rs_same_csum
;
934 const unsigned long t
= device
->rs_total
;
937 (t
< 100000) ? ((s
*100)/t
) : (s
/(t
/100));
938 drbd_info(device
, "%u %% had equal checksums, eliminated: %luK; "
939 "transferred %luK total %luK\n",
941 Bit2KB(device
->rs_same_csum
),
942 Bit2KB(device
->rs_total
- device
->rs_same_csum
),
943 Bit2KB(device
->rs_total
));
947 if (device
->rs_failed
) {
948 drbd_info(device
, " %lu failed blocks\n", device
->rs_failed
);
950 if (os
.conn
== C_SYNC_TARGET
|| os
.conn
== C_PAUSED_SYNC_T
) {
951 ns
.disk
= D_INCONSISTENT
;
952 ns
.pdsk
= D_UP_TO_DATE
;
954 ns
.disk
= D_UP_TO_DATE
;
955 ns
.pdsk
= D_INCONSISTENT
;
958 ns
.disk
= D_UP_TO_DATE
;
959 ns
.pdsk
= D_UP_TO_DATE
;
961 if (os
.conn
== C_SYNC_TARGET
|| os
.conn
== C_PAUSED_SYNC_T
) {
962 if (device
->p_uuid
) {
964 for (i
= UI_BITMAP
; i
<= UI_HISTORY_END
; i
++)
965 _drbd_uuid_set(device
, i
, device
->p_uuid
[i
]);
966 drbd_uuid_set(device
, UI_BITMAP
, device
->ldev
->md
.uuid
[UI_CURRENT
]);
967 _drbd_uuid_set(device
, UI_CURRENT
, device
->p_uuid
[UI_CURRENT
]);
969 drbd_err(device
, "device->p_uuid is NULL! BUG\n");
973 if (!(os
.conn
== C_VERIFY_S
|| os
.conn
== C_VERIFY_T
)) {
974 /* for verify runs, we don't update uuids here,
975 * so there would be nothing to report. */
976 drbd_uuid_set_bm(device
, 0UL);
977 drbd_print_uuids(device
, "updated UUIDs");
978 if (device
->p_uuid
) {
979 /* Now the two UUID sets are equal, update what we
980 * know of the peer. */
982 for (i
= UI_CURRENT
; i
<= UI_HISTORY_END
; i
++)
983 device
->p_uuid
[i
] = device
->ldev
->md
.uuid
[i
];
988 _drbd_set_state(device
, ns
, CS_VERBOSE
, NULL
);
990 spin_unlock_irq(&device
->resource
->req_lock
);
992 /* If we have been sync source, and have an effective fencing-policy,
993 * once *all* volumes are back in sync, call "unfence". */
994 if (os
.conn
== C_SYNC_SOURCE
) {
995 enum drbd_disk_state disk_state
= D_MASK
;
996 enum drbd_disk_state pdsk_state
= D_MASK
;
997 enum drbd_fencing_p fp
= FP_DONT_CARE
;
1000 fp
= rcu_dereference(device
->ldev
->disk_conf
)->fencing
;
1001 if (fp
!= FP_DONT_CARE
) {
1002 struct drbd_peer_device
*peer_device
;
1004 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
1005 struct drbd_device
*device
= peer_device
->device
;
1006 disk_state
= min_t(enum drbd_disk_state
, disk_state
, device
->state
.disk
);
1007 pdsk_state
= min_t(enum drbd_disk_state
, pdsk_state
, device
->state
.pdsk
);
1011 if (disk_state
== D_UP_TO_DATE
&& pdsk_state
== D_UP_TO_DATE
)
1012 conn_khelper(connection
, "unfence-peer");
1017 device
->rs_total
= 0;
1018 device
->rs_failed
= 0;
1019 device
->rs_paused
= 0;
1021 /* reset start sector, if we reached end of device */
1022 if (verify_done
&& device
->ov_left
== 0)
1023 device
->ov_start_sector
= 0;
1025 drbd_md_sync(device
);
1028 drbd_khelper(device
, khelper_cmd
);
1034 static void move_to_net_ee_or_free(struct drbd_device
*device
, struct drbd_peer_request
*peer_req
)
1036 if (drbd_peer_req_has_active_page(peer_req
)) {
1037 /* This might happen if sendpage() has not finished */
1038 int i
= (peer_req
->i
.size
+ PAGE_SIZE
-1) >> PAGE_SHIFT
;
1039 atomic_add(i
, &device
->pp_in_use_by_net
);
1040 atomic_sub(i
, &device
->pp_in_use
);
1041 spin_lock_irq(&device
->resource
->req_lock
);
1042 list_add_tail(&peer_req
->w
.list
, &device
->net_ee
);
1043 spin_unlock_irq(&device
->resource
->req_lock
);
1044 wake_up(&drbd_pp_wait
);
1046 drbd_free_peer_req(device
, peer_req
);
1050 * w_e_end_data_req() - Worker callback, to send a P_DATA_REPLY packet in response to a P_DATA_REQUEST
1052 * @cancel: The connection will be closed anyways
1054 int w_e_end_data_req(struct drbd_work
*w
, int cancel
)
1056 struct drbd_peer_request
*peer_req
= container_of(w
, struct drbd_peer_request
, w
);
1057 struct drbd_peer_device
*peer_device
= peer_req
->peer_device
;
1058 struct drbd_device
*device
= peer_device
->device
;
1061 if (unlikely(cancel
)) {
1062 drbd_free_peer_req(device
, peer_req
);
1063 dec_unacked(device
);
1067 if (likely((peer_req
->flags
& EE_WAS_ERROR
) == 0)) {
1068 err
= drbd_send_block(peer_device
, P_DATA_REPLY
, peer_req
);
1070 if (__ratelimit(&drbd_ratelimit_state
))
1071 drbd_err(device
, "Sending NegDReply. sector=%llus.\n",
1072 (unsigned long long)peer_req
->i
.sector
);
1074 err
= drbd_send_ack(peer_device
, P_NEG_DREPLY
, peer_req
);
1077 dec_unacked(device
);
1079 move_to_net_ee_or_free(device
, peer_req
);
1082 drbd_err(device
, "drbd_send_block() failed\n");
1086 static bool all_zero(struct drbd_peer_request
*peer_req
)
1088 struct page
*page
= peer_req
->pages
;
1089 unsigned int len
= peer_req
->i
.size
;
1091 page_chain_for_each(page
) {
1092 unsigned int l
= min_t(unsigned int, len
, PAGE_SIZE
);
1093 unsigned int i
, words
= l
/ sizeof(long);
1096 d
= kmap_atomic(page
);
1097 for (i
= 0; i
< words
; i
++) {
1111 * w_e_end_rsdata_req() - Worker callback to send a P_RS_DATA_REPLY packet in response to a P_RS_DATA_REQUEST
1113 * @cancel: The connection will be closed anyways
1115 int w_e_end_rsdata_req(struct drbd_work
*w
, int cancel
)
1117 struct drbd_peer_request
*peer_req
= container_of(w
, struct drbd_peer_request
, w
);
1118 struct drbd_peer_device
*peer_device
= peer_req
->peer_device
;
1119 struct drbd_device
*device
= peer_device
->device
;
1122 if (unlikely(cancel
)) {
1123 drbd_free_peer_req(device
, peer_req
);
1124 dec_unacked(device
);
1128 if (get_ldev_if_state(device
, D_FAILED
)) {
1129 drbd_rs_complete_io(device
, peer_req
->i
.sector
);
1133 if (device
->state
.conn
== C_AHEAD
) {
1134 err
= drbd_send_ack(peer_device
, P_RS_CANCEL
, peer_req
);
1135 } else if (likely((peer_req
->flags
& EE_WAS_ERROR
) == 0)) {
1136 if (likely(device
->state
.pdsk
>= D_INCONSISTENT
)) {
1137 inc_rs_pending(device
);
1138 if (peer_req
->flags
& EE_RS_THIN_REQ
&& all_zero(peer_req
))
1139 err
= drbd_send_rs_deallocated(peer_device
, peer_req
);
1141 err
= drbd_send_block(peer_device
, P_RS_DATA_REPLY
, peer_req
);
1143 if (__ratelimit(&drbd_ratelimit_state
))
1144 drbd_err(device
, "Not sending RSDataReply, "
1145 "partner DISKLESS!\n");
1149 if (__ratelimit(&drbd_ratelimit_state
))
1150 drbd_err(device
, "Sending NegRSDReply. sector %llus.\n",
1151 (unsigned long long)peer_req
->i
.sector
);
1153 err
= drbd_send_ack(peer_device
, P_NEG_RS_DREPLY
, peer_req
);
1155 /* update resync data with failure */
1156 drbd_rs_failed_io(device
, peer_req
->i
.sector
, peer_req
->i
.size
);
1159 dec_unacked(device
);
1161 move_to_net_ee_or_free(device
, peer_req
);
1164 drbd_err(device
, "drbd_send_block() failed\n");
1168 int w_e_end_csum_rs_req(struct drbd_work
*w
, int cancel
)
1170 struct drbd_peer_request
*peer_req
= container_of(w
, struct drbd_peer_request
, w
);
1171 struct drbd_peer_device
*peer_device
= peer_req
->peer_device
;
1172 struct drbd_device
*device
= peer_device
->device
;
1173 struct digest_info
*di
;
1175 void *digest
= NULL
;
1178 if (unlikely(cancel
)) {
1179 drbd_free_peer_req(device
, peer_req
);
1180 dec_unacked(device
);
1184 if (get_ldev(device
)) {
1185 drbd_rs_complete_io(device
, peer_req
->i
.sector
);
1189 di
= peer_req
->digest
;
1191 if (likely((peer_req
->flags
& EE_WAS_ERROR
) == 0)) {
1192 /* quick hack to try to avoid a race against reconfiguration.
1193 * a real fix would be much more involved,
1194 * introducing more locking mechanisms */
1195 if (peer_device
->connection
->csums_tfm
) {
1196 digest_size
= crypto_shash_digestsize(peer_device
->connection
->csums_tfm
);
1197 D_ASSERT(device
, digest_size
== di
->digest_size
);
1198 digest
= kmalloc(digest_size
, GFP_NOIO
);
1201 drbd_csum_ee(peer_device
->connection
->csums_tfm
, peer_req
, digest
);
1202 eq
= !memcmp(digest
, di
->digest
, digest_size
);
1207 drbd_set_in_sync(device
, peer_req
->i
.sector
, peer_req
->i
.size
);
1208 /* rs_same_csums unit is BM_BLOCK_SIZE */
1209 device
->rs_same_csum
+= peer_req
->i
.size
>> BM_BLOCK_SHIFT
;
1210 err
= drbd_send_ack(peer_device
, P_RS_IS_IN_SYNC
, peer_req
);
1212 inc_rs_pending(device
);
1213 peer_req
->block_id
= ID_SYNCER
; /* By setting block_id, digest pointer becomes invalid! */
1214 peer_req
->flags
&= ~EE_HAS_DIGEST
; /* This peer request no longer has a digest pointer */
1216 err
= drbd_send_block(peer_device
, P_RS_DATA_REPLY
, peer_req
);
1219 err
= drbd_send_ack(peer_device
, P_NEG_RS_DREPLY
, peer_req
);
1220 if (__ratelimit(&drbd_ratelimit_state
))
1221 drbd_err(device
, "Sending NegDReply. I guess it gets messy.\n");
1224 dec_unacked(device
);
1225 move_to_net_ee_or_free(device
, peer_req
);
1228 drbd_err(device
, "drbd_send_block/ack() failed\n");
1232 int w_e_end_ov_req(struct drbd_work
*w
, int cancel
)
1234 struct drbd_peer_request
*peer_req
= container_of(w
, struct drbd_peer_request
, w
);
1235 struct drbd_peer_device
*peer_device
= peer_req
->peer_device
;
1236 struct drbd_device
*device
= peer_device
->device
;
1237 sector_t sector
= peer_req
->i
.sector
;
1238 unsigned int size
= peer_req
->i
.size
;
1243 if (unlikely(cancel
))
1246 digest_size
= crypto_shash_digestsize(peer_device
->connection
->verify_tfm
);
1247 digest
= kmalloc(digest_size
, GFP_NOIO
);
1249 err
= 1; /* terminate the connection in case the allocation failed */
1253 if (likely(!(peer_req
->flags
& EE_WAS_ERROR
)))
1254 drbd_csum_ee(peer_device
->connection
->verify_tfm
, peer_req
, digest
);
1256 memset(digest
, 0, digest_size
);
1258 /* Free e and pages before send.
1259 * In case we block on congestion, we could otherwise run into
1260 * some distributed deadlock, if the other side blocks on
1261 * congestion as well, because our receiver blocks in
1262 * drbd_alloc_pages due to pp_in_use > max_buffers. */
1263 drbd_free_peer_req(device
, peer_req
);
1265 inc_rs_pending(device
);
1266 err
= drbd_send_drequest_csum(peer_device
, sector
, size
, digest
, digest_size
, P_OV_REPLY
);
1268 dec_rs_pending(device
);
1273 drbd_free_peer_req(device
, peer_req
);
1274 dec_unacked(device
);
1278 void drbd_ov_out_of_sync_found(struct drbd_device
*device
, sector_t sector
, int size
)
1280 if (device
->ov_last_oos_start
+ device
->ov_last_oos_size
== sector
) {
1281 device
->ov_last_oos_size
+= size
>>9;
1283 device
->ov_last_oos_start
= sector
;
1284 device
->ov_last_oos_size
= size
>>9;
1286 drbd_set_out_of_sync(device
, sector
, size
);
1289 int w_e_end_ov_reply(struct drbd_work
*w
, int cancel
)
1291 struct drbd_peer_request
*peer_req
= container_of(w
, struct drbd_peer_request
, w
);
1292 struct drbd_peer_device
*peer_device
= peer_req
->peer_device
;
1293 struct drbd_device
*device
= peer_device
->device
;
1294 struct digest_info
*di
;
1296 sector_t sector
= peer_req
->i
.sector
;
1297 unsigned int size
= peer_req
->i
.size
;
1300 bool stop_sector_reached
= false;
1302 if (unlikely(cancel
)) {
1303 drbd_free_peer_req(device
, peer_req
);
1304 dec_unacked(device
);
1308 /* after "cancel", because after drbd_disconnect/drbd_rs_cancel_all
1309 * the resync lru has been cleaned up already */
1310 if (get_ldev(device
)) {
1311 drbd_rs_complete_io(device
, peer_req
->i
.sector
);
1315 di
= peer_req
->digest
;
1317 if (likely((peer_req
->flags
& EE_WAS_ERROR
) == 0)) {
1318 digest_size
= crypto_shash_digestsize(peer_device
->connection
->verify_tfm
);
1319 digest
= kmalloc(digest_size
, GFP_NOIO
);
1321 drbd_csum_ee(peer_device
->connection
->verify_tfm
, peer_req
, digest
);
1323 D_ASSERT(device
, digest_size
== di
->digest_size
);
1324 eq
= !memcmp(digest
, di
->digest
, digest_size
);
1329 /* Free peer_req and pages before send.
1330 * In case we block on congestion, we could otherwise run into
1331 * some distributed deadlock, if the other side blocks on
1332 * congestion as well, because our receiver blocks in
1333 * drbd_alloc_pages due to pp_in_use > max_buffers. */
1334 drbd_free_peer_req(device
, peer_req
);
1336 drbd_ov_out_of_sync_found(device
, sector
, size
);
1338 ov_out_of_sync_print(device
);
1340 err
= drbd_send_ack_ex(peer_device
, P_OV_RESULT
, sector
, size
,
1341 eq
? ID_IN_SYNC
: ID_OUT_OF_SYNC
);
1343 dec_unacked(device
);
1347 /* let's advance progress step marks only for every other megabyte */
1348 if ((device
->ov_left
& 0x200) == 0x200)
1349 drbd_advance_rs_marks(device
, device
->ov_left
);
1351 stop_sector_reached
= verify_can_do_stop_sector(device
) &&
1352 (sector
+ (size
>>9)) >= device
->ov_stop_sector
;
1354 if (device
->ov_left
== 0 || stop_sector_reached
) {
1355 ov_out_of_sync_print(device
);
1356 drbd_resync_finished(device
);
1363 * We need to track the number of pending barrier acks,
1364 * and to be able to wait for them.
1365 * See also comment in drbd_adm_attach before drbd_suspend_io.
1367 static int drbd_send_barrier(struct drbd_connection
*connection
)
1369 struct p_barrier
*p
;
1370 struct drbd_socket
*sock
;
1372 sock
= &connection
->data
;
1373 p
= conn_prepare_command(connection
, sock
);
1376 p
->barrier
= connection
->send
.current_epoch_nr
;
1378 connection
->send
.current_epoch_writes
= 0;
1379 connection
->send
.last_sent_barrier_jif
= jiffies
;
1381 return conn_send_command(connection
, sock
, P_BARRIER
, sizeof(*p
), NULL
, 0);
1384 static int pd_send_unplug_remote(struct drbd_peer_device
*pd
)
1386 struct drbd_socket
*sock
= &pd
->connection
->data
;
1387 if (!drbd_prepare_command(pd
, sock
))
1389 return drbd_send_command(pd
, sock
, P_UNPLUG_REMOTE
, 0, NULL
, 0);
1392 int w_send_write_hint(struct drbd_work
*w
, int cancel
)
1394 struct drbd_device
*device
=
1395 container_of(w
, struct drbd_device
, unplug_work
);
1399 return pd_send_unplug_remote(first_peer_device(device
));
1402 static void re_init_if_first_write(struct drbd_connection
*connection
, unsigned int epoch
)
1404 if (!connection
->send
.seen_any_write_yet
) {
1405 connection
->send
.seen_any_write_yet
= true;
1406 connection
->send
.current_epoch_nr
= epoch
;
1407 connection
->send
.current_epoch_writes
= 0;
1408 connection
->send
.last_sent_barrier_jif
= jiffies
;
1412 static void maybe_send_barrier(struct drbd_connection
*connection
, unsigned int epoch
)
1414 /* re-init if first write on this connection */
1415 if (!connection
->send
.seen_any_write_yet
)
1417 if (connection
->send
.current_epoch_nr
!= epoch
) {
1418 if (connection
->send
.current_epoch_writes
)
1419 drbd_send_barrier(connection
);
1420 connection
->send
.current_epoch_nr
= epoch
;
1424 int w_send_out_of_sync(struct drbd_work
*w
, int cancel
)
1426 struct drbd_request
*req
= container_of(w
, struct drbd_request
, w
);
1427 struct drbd_device
*device
= req
->device
;
1428 struct drbd_peer_device
*const peer_device
= first_peer_device(device
);
1429 struct drbd_connection
*const connection
= peer_device
->connection
;
1432 if (unlikely(cancel
)) {
1433 req_mod(req
, SEND_CANCELED
);
1436 req
->pre_send_jif
= jiffies
;
1438 /* this time, no connection->send.current_epoch_writes++;
1439 * If it was sent, it was the closing barrier for the last
1440 * replicated epoch, before we went into AHEAD mode.
1441 * No more barriers will be sent, until we leave AHEAD mode again. */
1442 maybe_send_barrier(connection
, req
->epoch
);
1444 err
= drbd_send_out_of_sync(peer_device
, req
);
1445 req_mod(req
, OOS_HANDED_TO_NETWORK
);
1451 * w_send_dblock() - Worker callback to send a P_DATA packet in order to mirror a write request
1453 * @cancel: The connection will be closed anyways
1455 int w_send_dblock(struct drbd_work
*w
, int cancel
)
1457 struct drbd_request
*req
= container_of(w
, struct drbd_request
, w
);
1458 struct drbd_device
*device
= req
->device
;
1459 struct drbd_peer_device
*const peer_device
= first_peer_device(device
);
1460 struct drbd_connection
*connection
= peer_device
->connection
;
1461 bool do_send_unplug
= req
->rq_state
& RQ_UNPLUG
;
1464 if (unlikely(cancel
)) {
1465 req_mod(req
, SEND_CANCELED
);
1468 req
->pre_send_jif
= jiffies
;
1470 re_init_if_first_write(connection
, req
->epoch
);
1471 maybe_send_barrier(connection
, req
->epoch
);
1472 connection
->send
.current_epoch_writes
++;
1474 err
= drbd_send_dblock(peer_device
, req
);
1475 req_mod(req
, err
? SEND_FAILED
: HANDED_OVER_TO_NETWORK
);
1477 if (do_send_unplug
&& !err
)
1478 pd_send_unplug_remote(peer_device
);
1484 * w_send_read_req() - Worker callback to send a read request (P_DATA_REQUEST) packet
1486 * @cancel: The connection will be closed anyways
1488 int w_send_read_req(struct drbd_work
*w
, int cancel
)
1490 struct drbd_request
*req
= container_of(w
, struct drbd_request
, w
);
1491 struct drbd_device
*device
= req
->device
;
1492 struct drbd_peer_device
*const peer_device
= first_peer_device(device
);
1493 struct drbd_connection
*connection
= peer_device
->connection
;
1494 bool do_send_unplug
= req
->rq_state
& RQ_UNPLUG
;
1497 if (unlikely(cancel
)) {
1498 req_mod(req
, SEND_CANCELED
);
1501 req
->pre_send_jif
= jiffies
;
1503 /* Even read requests may close a write epoch,
1504 * if there was any yet. */
1505 maybe_send_barrier(connection
, req
->epoch
);
1507 err
= drbd_send_drequest(peer_device
, P_DATA_REQUEST
, req
->i
.sector
, req
->i
.size
,
1508 (unsigned long)req
);
1510 req_mod(req
, err
? SEND_FAILED
: HANDED_OVER_TO_NETWORK
);
1512 if (do_send_unplug
&& !err
)
1513 pd_send_unplug_remote(peer_device
);
1518 int w_restart_disk_io(struct drbd_work
*w
, int cancel
)
1520 struct drbd_request
*req
= container_of(w
, struct drbd_request
, w
);
1521 struct drbd_device
*device
= req
->device
;
1523 if (bio_data_dir(req
->master_bio
) == WRITE
&& req
->rq_state
& RQ_IN_ACT_LOG
)
1524 drbd_al_begin_io(device
, &req
->i
);
1526 drbd_req_make_private_bio(req
, req
->master_bio
);
1527 bio_set_dev(req
->private_bio
, device
->ldev
->backing_bdev
);
1528 submit_bio_noacct(req
->private_bio
);
1533 static int _drbd_may_sync_now(struct drbd_device
*device
)
1535 struct drbd_device
*odev
= device
;
1539 if (!odev
->ldev
|| odev
->state
.disk
== D_DISKLESS
)
1542 resync_after
= rcu_dereference(odev
->ldev
->disk_conf
)->resync_after
;
1544 if (resync_after
== -1)
1546 odev
= minor_to_device(resync_after
);
1549 if ((odev
->state
.conn
>= C_SYNC_SOURCE
&&
1550 odev
->state
.conn
<= C_PAUSED_SYNC_T
) ||
1551 odev
->state
.aftr_isp
|| odev
->state
.peer_isp
||
1552 odev
->state
.user_isp
)
1558 * drbd_pause_after() - Pause resync on all devices that may not resync now
1559 * @device: DRBD device.
1561 * Called from process context only (admin command and after_state_ch).
1563 static bool drbd_pause_after(struct drbd_device
*device
)
1565 bool changed
= false;
1566 struct drbd_device
*odev
;
1570 idr_for_each_entry(&drbd_devices
, odev
, i
) {
1571 if (odev
->state
.conn
== C_STANDALONE
&& odev
->state
.disk
== D_DISKLESS
)
1573 if (!_drbd_may_sync_now(odev
) &&
1574 _drbd_set_state(_NS(odev
, aftr_isp
, 1),
1575 CS_HARD
, NULL
) != SS_NOTHING_TO_DO
)
1584 * drbd_resume_next() - Resume resync on all devices that may resync now
1585 * @device: DRBD device.
1587 * Called from process context only (admin command and worker).
1589 static bool drbd_resume_next(struct drbd_device
*device
)
1591 bool changed
= false;
1592 struct drbd_device
*odev
;
1596 idr_for_each_entry(&drbd_devices
, odev
, i
) {
1597 if (odev
->state
.conn
== C_STANDALONE
&& odev
->state
.disk
== D_DISKLESS
)
1599 if (odev
->state
.aftr_isp
) {
1600 if (_drbd_may_sync_now(odev
) &&
1601 _drbd_set_state(_NS(odev
, aftr_isp
, 0),
1602 CS_HARD
, NULL
) != SS_NOTHING_TO_DO
)
1610 void resume_next_sg(struct drbd_device
*device
)
1612 lock_all_resources();
1613 drbd_resume_next(device
);
1614 unlock_all_resources();
1617 void suspend_other_sg(struct drbd_device
*device
)
1619 lock_all_resources();
1620 drbd_pause_after(device
);
1621 unlock_all_resources();
1624 /* caller must lock_all_resources() */
1625 enum drbd_ret_code
drbd_resync_after_valid(struct drbd_device
*device
, int o_minor
)
1627 struct drbd_device
*odev
;
1632 if (o_minor
< -1 || o_minor
> MINORMASK
)
1633 return ERR_RESYNC_AFTER
;
1635 /* check for loops */
1636 odev
= minor_to_device(o_minor
);
1639 return ERR_RESYNC_AFTER_CYCLE
;
1641 /* You are free to depend on diskless, non-existing,
1642 * or not yet/no longer existing minors.
1643 * We only reject dependency loops.
1644 * We cannot follow the dependency chain beyond a detached or
1647 if (!odev
|| !odev
->ldev
|| odev
->state
.disk
== D_DISKLESS
)
1651 resync_after
= rcu_dereference(odev
->ldev
->disk_conf
)->resync_after
;
1653 /* dependency chain ends here, no cycles. */
1654 if (resync_after
== -1)
1657 /* follow the dependency chain */
1658 odev
= minor_to_device(resync_after
);
1662 /* caller must lock_all_resources() */
1663 void drbd_resync_after_changed(struct drbd_device
*device
)
1668 changed
= drbd_pause_after(device
);
1669 changed
|= drbd_resume_next(device
);
1673 void drbd_rs_controller_reset(struct drbd_device
*device
)
1675 struct gendisk
*disk
= device
->ldev
->backing_bdev
->bd_disk
;
1676 struct fifo_buffer
*plan
;
1678 atomic_set(&device
->rs_sect_in
, 0);
1679 atomic_set(&device
->rs_sect_ev
, 0);
1680 device
->rs_in_flight
= 0;
1681 device
->rs_last_events
=
1682 (int)part_stat_read_accum(disk
->part0
, sectors
);
1684 /* Updating the RCU protected object in place is necessary since
1685 this function gets called from atomic context.
1686 It is valid since all other updates also lead to an completely
1689 plan
= rcu_dereference(device
->rs_plan_s
);
1695 void start_resync_timer_fn(struct timer_list
*t
)
1697 struct drbd_device
*device
= from_timer(device
, t
, start_resync_timer
);
1698 drbd_device_post_work(device
, RS_START
);
1701 static void do_start_resync(struct drbd_device
*device
)
1703 if (atomic_read(&device
->unacked_cnt
) || atomic_read(&device
->rs_pending_cnt
)) {
1704 drbd_warn(device
, "postponing start_resync ...\n");
1705 device
->start_resync_timer
.expires
= jiffies
+ HZ
/10;
1706 add_timer(&device
->start_resync_timer
);
1710 drbd_start_resync(device
, C_SYNC_SOURCE
);
1711 clear_bit(AHEAD_TO_SYNC_SOURCE
, &device
->flags
);
1714 static bool use_checksum_based_resync(struct drbd_connection
*connection
, struct drbd_device
*device
)
1716 bool csums_after_crash_only
;
1718 csums_after_crash_only
= rcu_dereference(connection
->net_conf
)->csums_after_crash_only
;
1720 return connection
->agreed_pro_version
>= 89 && /* supported? */
1721 connection
->csums_tfm
&& /* configured? */
1722 (csums_after_crash_only
== false /* use for each resync? */
1723 || test_bit(CRASHED_PRIMARY
, &device
->flags
)); /* or only after Primary crash? */
1727 * drbd_start_resync() - Start the resync process
1728 * @device: DRBD device.
1729 * @side: Either C_SYNC_SOURCE or C_SYNC_TARGET
1731 * This function might bring you directly into one of the
1732 * C_PAUSED_SYNC_* states.
1734 void drbd_start_resync(struct drbd_device
*device
, enum drbd_conns side
)
1736 struct drbd_peer_device
*peer_device
= first_peer_device(device
);
1737 struct drbd_connection
*connection
= peer_device
? peer_device
->connection
: NULL
;
1738 union drbd_state ns
;
1741 if (device
->state
.conn
>= C_SYNC_SOURCE
&& device
->state
.conn
< C_AHEAD
) {
1742 drbd_err(device
, "Resync already running!\n");
1747 drbd_err(device
, "No connection to peer, aborting!\n");
1751 if (!test_bit(B_RS_H_DONE
, &device
->flags
)) {
1752 if (side
== C_SYNC_TARGET
) {
1753 /* Since application IO was locked out during C_WF_BITMAP_T and
1754 C_WF_SYNC_UUID we are still unmodified. Before going to C_SYNC_TARGET
1755 we check that we might make the data inconsistent. */
1756 r
= drbd_khelper(device
, "before-resync-target");
1757 r
= (r
>> 8) & 0xff;
1759 drbd_info(device
, "before-resync-target handler returned %d, "
1760 "dropping connection.\n", r
);
1761 conn_request_state(connection
, NS(conn
, C_DISCONNECTING
), CS_HARD
);
1764 } else /* C_SYNC_SOURCE */ {
1765 r
= drbd_khelper(device
, "before-resync-source");
1766 r
= (r
>> 8) & 0xff;
1769 drbd_info(device
, "before-resync-source handler returned %d, "
1770 "ignoring. Old userland tools?", r
);
1772 drbd_info(device
, "before-resync-source handler returned %d, "
1773 "dropping connection.\n", r
);
1774 conn_request_state(connection
,
1775 NS(conn
, C_DISCONNECTING
), CS_HARD
);
1782 if (current
== connection
->worker
.task
) {
1783 /* The worker should not sleep waiting for state_mutex,
1784 that can take long */
1785 if (!mutex_trylock(device
->state_mutex
)) {
1786 set_bit(B_RS_H_DONE
, &device
->flags
);
1787 device
->start_resync_timer
.expires
= jiffies
+ HZ
/5;
1788 add_timer(&device
->start_resync_timer
);
1792 mutex_lock(device
->state_mutex
);
1795 lock_all_resources();
1796 clear_bit(B_RS_H_DONE
, &device
->flags
);
1797 /* Did some connection breakage or IO error race with us? */
1798 if (device
->state
.conn
< C_CONNECTED
1799 || !get_ldev_if_state(device
, D_NEGOTIATING
)) {
1800 unlock_all_resources();
1804 ns
= drbd_read_state(device
);
1806 ns
.aftr_isp
= !_drbd_may_sync_now(device
);
1810 if (side
== C_SYNC_TARGET
)
1811 ns
.disk
= D_INCONSISTENT
;
1812 else /* side == C_SYNC_SOURCE */
1813 ns
.pdsk
= D_INCONSISTENT
;
1815 r
= _drbd_set_state(device
, ns
, CS_VERBOSE
, NULL
);
1816 ns
= drbd_read_state(device
);
1818 if (ns
.conn
< C_CONNECTED
)
1819 r
= SS_UNKNOWN_ERROR
;
1821 if (r
== SS_SUCCESS
) {
1822 unsigned long tw
= drbd_bm_total_weight(device
);
1823 unsigned long now
= jiffies
;
1826 device
->rs_failed
= 0;
1827 device
->rs_paused
= 0;
1828 device
->rs_same_csum
= 0;
1829 device
->rs_last_sect_ev
= 0;
1830 device
->rs_total
= tw
;
1831 device
->rs_start
= now
;
1832 for (i
= 0; i
< DRBD_SYNC_MARKS
; i
++) {
1833 device
->rs_mark_left
[i
] = tw
;
1834 device
->rs_mark_time
[i
] = now
;
1836 drbd_pause_after(device
);
1837 /* Forget potentially stale cached per resync extent bit-counts.
1838 * Open coded drbd_rs_cancel_all(device), we already have IRQs
1839 * disabled, and know the disk state is ok. */
1840 spin_lock(&device
->al_lock
);
1841 lc_reset(device
->resync
);
1842 device
->resync_locked
= 0;
1843 device
->resync_wenr
= LC_FREE
;
1844 spin_unlock(&device
->al_lock
);
1846 unlock_all_resources();
1848 if (r
== SS_SUCCESS
) {
1849 wake_up(&device
->al_wait
); /* for lc_reset() above */
1850 /* reset rs_last_bcast when a resync or verify is started,
1851 * to deal with potential jiffies wrap. */
1852 device
->rs_last_bcast
= jiffies
- HZ
;
1854 drbd_info(device
, "Began resync as %s (will sync %lu KB [%lu bits set]).\n",
1855 drbd_conn_str(ns
.conn
),
1856 (unsigned long) device
->rs_total
<< (BM_BLOCK_SHIFT
-10),
1857 (unsigned long) device
->rs_total
);
1858 if (side
== C_SYNC_TARGET
) {
1859 device
->bm_resync_fo
= 0;
1860 device
->use_csums
= use_checksum_based_resync(connection
, device
);
1862 device
->use_csums
= false;
1865 /* Since protocol 96, we must serialize drbd_gen_and_send_sync_uuid
1866 * with w_send_oos, or the sync target will get confused as to
1867 * how much bits to resync. We cannot do that always, because for an
1868 * empty resync and protocol < 95, we need to do it here, as we call
1869 * drbd_resync_finished from here in that case.
1870 * We drbd_gen_and_send_sync_uuid here for protocol < 96,
1871 * and from after_state_ch otherwise. */
1872 if (side
== C_SYNC_SOURCE
&& connection
->agreed_pro_version
< 96)
1873 drbd_gen_and_send_sync_uuid(peer_device
);
1875 if (connection
->agreed_pro_version
< 95 && device
->rs_total
== 0) {
1876 /* This still has a race (about when exactly the peers
1877 * detect connection loss) that can lead to a full sync
1878 * on next handshake. In 8.3.9 we fixed this with explicit
1879 * resync-finished notifications, but the fix
1880 * introduces a protocol change. Sleeping for some
1881 * time longer than the ping interval + timeout on the
1882 * SyncSource, to give the SyncTarget the chance to
1883 * detect connection loss, then waiting for a ping
1884 * response (implicit in drbd_resync_finished) reduces
1885 * the race considerably, but does not solve it. */
1886 if (side
== C_SYNC_SOURCE
) {
1887 struct net_conf
*nc
;
1891 nc
= rcu_dereference(connection
->net_conf
);
1892 timeo
= nc
->ping_int
* HZ
+ nc
->ping_timeo
* HZ
/ 9;
1894 schedule_timeout_interruptible(timeo
);
1896 drbd_resync_finished(device
);
1899 drbd_rs_controller_reset(device
);
1900 /* ns.conn may already be != device->state.conn,
1901 * we may have been paused in between, or become paused until
1902 * the timer triggers.
1903 * No matter, that is handled in resync_timer_fn() */
1904 if (ns
.conn
== C_SYNC_TARGET
)
1905 mod_timer(&device
->resync_timer
, jiffies
);
1907 drbd_md_sync(device
);
1911 mutex_unlock(device
->state_mutex
);
1914 static void update_on_disk_bitmap(struct drbd_device
*device
, bool resync_done
)
1916 struct sib_info sib
= { .sib_reason
= SIB_SYNC_PROGRESS
, };
1917 device
->rs_last_bcast
= jiffies
;
1919 if (!get_ldev(device
))
1922 drbd_bm_write_lazy(device
, 0);
1923 if (resync_done
&& is_sync_state(device
->state
.conn
))
1924 drbd_resync_finished(device
);
1926 drbd_bcast_event(device
, &sib
);
1927 /* update timestamp, in case it took a while to write out stuff */
1928 device
->rs_last_bcast
= jiffies
;
1932 static void drbd_ldev_destroy(struct drbd_device
*device
)
1934 lc_destroy(device
->resync
);
1935 device
->resync
= NULL
;
1936 lc_destroy(device
->act_log
);
1937 device
->act_log
= NULL
;
1940 drbd_backing_dev_free(device
, device
->ldev
);
1941 device
->ldev
= NULL
;
1944 clear_bit(GOING_DISKLESS
, &device
->flags
);
1945 wake_up(&device
->misc_wait
);
1948 static void go_diskless(struct drbd_device
*device
)
1950 D_ASSERT(device
, device
->state
.disk
== D_FAILED
);
1951 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
1952 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
1953 * the protected members anymore, though, so once put_ldev reaches zero
1954 * again, it will be safe to free them. */
1956 /* Try to write changed bitmap pages, read errors may have just
1957 * set some bits outside the area covered by the activity log.
1959 * If we have an IO error during the bitmap writeout,
1960 * we will want a full sync next time, just in case.
1961 * (Do we want a specific meta data flag for this?)
1963 * If that does not make it to stable storage either,
1964 * we cannot do anything about that anymore.
1966 * We still need to check if both bitmap and ldev are present, we may
1967 * end up here after a failed attach, before ldev was even assigned.
1969 if (device
->bitmap
&& device
->ldev
) {
1970 /* An interrupted resync or similar is allowed to recounts bits
1972 * Any modifications would not be expected anymore, though.
1974 if (drbd_bitmap_io_from_worker(device
, drbd_bm_write
,
1975 "detach", BM_LOCKED_TEST_ALLOWED
)) {
1976 if (test_bit(WAS_READ_ERROR
, &device
->flags
)) {
1977 drbd_md_set_flag(device
, MDF_FULL_SYNC
);
1978 drbd_md_sync(device
);
1983 drbd_force_state(device
, NS(disk
, D_DISKLESS
));
1986 static int do_md_sync(struct drbd_device
*device
)
1988 drbd_warn(device
, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
1989 drbd_md_sync(device
);
1993 /* only called from drbd_worker thread, no locking */
1994 void __update_timing_details(
1995 struct drbd_thread_timing_details
*tdp
,
1996 unsigned int *cb_nr
,
1998 const char *fn
, const unsigned int line
)
2000 unsigned int i
= *cb_nr
% DRBD_THREAD_DETAILS_HIST
;
2001 struct drbd_thread_timing_details
*td
= tdp
+ i
;
2003 td
->start_jif
= jiffies
;
2009 i
= (i
+1) % DRBD_THREAD_DETAILS_HIST
;
2011 memset(td
, 0, sizeof(*td
));
2016 static void do_device_work(struct drbd_device
*device
, const unsigned long todo
)
2018 if (test_bit(MD_SYNC
, &todo
))
2020 if (test_bit(RS_DONE
, &todo
) ||
2021 test_bit(RS_PROGRESS
, &todo
))
2022 update_on_disk_bitmap(device
, test_bit(RS_DONE
, &todo
));
2023 if (test_bit(GO_DISKLESS
, &todo
))
2024 go_diskless(device
);
2025 if (test_bit(DESTROY_DISK
, &todo
))
2026 drbd_ldev_destroy(device
);
2027 if (test_bit(RS_START
, &todo
))
2028 do_start_resync(device
);
2031 #define DRBD_DEVICE_WORK_MASK \
2032 ((1UL << GO_DISKLESS) \
2033 |(1UL << DESTROY_DISK) \
2035 |(1UL << RS_START) \
2036 |(1UL << RS_PROGRESS) \
2040 static unsigned long get_work_bits(unsigned long *flags
)
2042 unsigned long old
, new;
2045 new = old
& ~DRBD_DEVICE_WORK_MASK
;
2046 } while (cmpxchg(flags
, old
, new) != old
);
2047 return old
& DRBD_DEVICE_WORK_MASK
;
2050 static void do_unqueued_work(struct drbd_connection
*connection
)
2052 struct drbd_peer_device
*peer_device
;
2056 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
2057 struct drbd_device
*device
= peer_device
->device
;
2058 unsigned long todo
= get_work_bits(&device
->flags
);
2062 kref_get(&device
->kref
);
2064 do_device_work(device
, todo
);
2065 kref_put(&device
->kref
, drbd_destroy_device
);
2071 static bool dequeue_work_batch(struct drbd_work_queue
*queue
, struct list_head
*work_list
)
2073 spin_lock_irq(&queue
->q_lock
);
2074 list_splice_tail_init(&queue
->q
, work_list
);
2075 spin_unlock_irq(&queue
->q_lock
);
2076 return !list_empty(work_list
);
2079 static void wait_for_work(struct drbd_connection
*connection
, struct list_head
*work_list
)
2082 struct net_conf
*nc
;
2085 dequeue_work_batch(&connection
->sender_work
, work_list
);
2086 if (!list_empty(work_list
))
2089 /* Still nothing to do?
2090 * Maybe we still need to close the current epoch,
2091 * even if no new requests are queued yet.
2093 * Also, poke TCP, just in case.
2094 * Then wait for new work (or signal). */
2096 nc
= rcu_dereference(connection
->net_conf
);
2097 uncork
= nc
? nc
->tcp_cork
: 0;
2100 mutex_lock(&connection
->data
.mutex
);
2101 if (connection
->data
.socket
)
2102 tcp_sock_set_cork(connection
->data
.socket
->sk
, false);
2103 mutex_unlock(&connection
->data
.mutex
);
2108 prepare_to_wait(&connection
->sender_work
.q_wait
, &wait
, TASK_INTERRUPTIBLE
);
2109 spin_lock_irq(&connection
->resource
->req_lock
);
2110 spin_lock(&connection
->sender_work
.q_lock
); /* FIXME get rid of this one? */
2111 if (!list_empty(&connection
->sender_work
.q
))
2112 list_splice_tail_init(&connection
->sender_work
.q
, work_list
);
2113 spin_unlock(&connection
->sender_work
.q_lock
); /* FIXME get rid of this one? */
2114 if (!list_empty(work_list
) || signal_pending(current
)) {
2115 spin_unlock_irq(&connection
->resource
->req_lock
);
2119 /* We found nothing new to do, no to-be-communicated request,
2120 * no other work item. We may still need to close the last
2121 * epoch. Next incoming request epoch will be connection ->
2122 * current transfer log epoch number. If that is different
2123 * from the epoch of the last request we communicated, it is
2124 * safe to send the epoch separating barrier now.
2127 atomic_read(&connection
->current_tle_nr
) !=
2128 connection
->send
.current_epoch_nr
;
2129 spin_unlock_irq(&connection
->resource
->req_lock
);
2132 maybe_send_barrier(connection
,
2133 connection
->send
.current_epoch_nr
+ 1);
2135 if (test_bit(DEVICE_WORK_PENDING
, &connection
->flags
))
2138 /* drbd_send() may have called flush_signals() */
2139 if (get_t_state(&connection
->worker
) != RUNNING
)
2143 /* may be woken up for other things but new work, too,
2144 * e.g. if the current epoch got closed.
2145 * In which case we send the barrier above. */
2147 finish_wait(&connection
->sender_work
.q_wait
, &wait
);
2149 /* someone may have changed the config while we have been waiting above. */
2151 nc
= rcu_dereference(connection
->net_conf
);
2152 cork
= nc
? nc
->tcp_cork
: 0;
2154 mutex_lock(&connection
->data
.mutex
);
2155 if (connection
->data
.socket
) {
2157 tcp_sock_set_cork(connection
->data
.socket
->sk
, true);
2159 tcp_sock_set_cork(connection
->data
.socket
->sk
, false);
2161 mutex_unlock(&connection
->data
.mutex
);
2164 int drbd_worker(struct drbd_thread
*thi
)
2166 struct drbd_connection
*connection
= thi
->connection
;
2167 struct drbd_work
*w
= NULL
;
2168 struct drbd_peer_device
*peer_device
;
2169 LIST_HEAD(work_list
);
2172 while (get_t_state(thi
) == RUNNING
) {
2173 drbd_thread_current_set_cpu(thi
);
2175 if (list_empty(&work_list
)) {
2176 update_worker_timing_details(connection
, wait_for_work
);
2177 wait_for_work(connection
, &work_list
);
2180 if (test_and_clear_bit(DEVICE_WORK_PENDING
, &connection
->flags
)) {
2181 update_worker_timing_details(connection
, do_unqueued_work
);
2182 do_unqueued_work(connection
);
2185 if (signal_pending(current
)) {
2186 flush_signals(current
);
2187 if (get_t_state(thi
) == RUNNING
) {
2188 drbd_warn(connection
, "Worker got an unexpected signal\n");
2194 if (get_t_state(thi
) != RUNNING
)
2197 if (!list_empty(&work_list
)) {
2198 w
= list_first_entry(&work_list
, struct drbd_work
, list
);
2199 list_del_init(&w
->list
);
2200 update_worker_timing_details(connection
, w
->cb
);
2201 if (w
->cb(w
, connection
->cstate
< C_WF_REPORT_PARAMS
) == 0)
2203 if (connection
->cstate
>= C_WF_REPORT_PARAMS
)
2204 conn_request_state(connection
, NS(conn
, C_NETWORK_FAILURE
), CS_HARD
);
2209 if (test_and_clear_bit(DEVICE_WORK_PENDING
, &connection
->flags
)) {
2210 update_worker_timing_details(connection
, do_unqueued_work
);
2211 do_unqueued_work(connection
);
2213 if (!list_empty(&work_list
)) {
2214 w
= list_first_entry(&work_list
, struct drbd_work
, list
);
2215 list_del_init(&w
->list
);
2216 update_worker_timing_details(connection
, w
->cb
);
2219 dequeue_work_batch(&connection
->sender_work
, &work_list
);
2220 } while (!list_empty(&work_list
) || test_bit(DEVICE_WORK_PENDING
, &connection
->flags
));
2223 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
2224 struct drbd_device
*device
= peer_device
->device
;
2225 D_ASSERT(device
, device
->state
.disk
== D_DISKLESS
&& device
->state
.conn
== C_STANDALONE
);
2226 kref_get(&device
->kref
);
2228 drbd_device_cleanup(device
);
2229 kref_put(&device
->kref
, drbd_destroy_device
);