4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
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>.
10 Thanks to Carter Burden, Bart Grantham and Gennadiy Nerubayev
11 from Logicworks, Inc. for making SDP replication support possible.
13 drbd is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2, or (at your option)
18 drbd is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with drbd; see the file COPYING. If not, write to
25 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include <linux/drbd_limits.h>
30 #include "drbd_protocol.h"
33 struct after_state_chg_work
{
35 struct drbd_device
*device
;
38 enum chg_state_flags flags
;
39 struct completion
*done
;
42 enum sanitize_state_warnings
{
44 ABORTED_ONLINE_VERIFY
,
46 CONNECTION_LOST_NEGOTIATING
,
47 IMPLICITLY_UPGRADED_DISK
,
48 IMPLICITLY_UPGRADED_PDSK
,
51 static int w_after_state_ch(struct drbd_work
*w
, int unused
);
52 static void after_state_ch(struct drbd_device
*device
, union drbd_state os
,
53 union drbd_state ns
, enum chg_state_flags flags
);
54 static enum drbd_state_rv
is_valid_state(struct drbd_device
*, union drbd_state
);
55 static enum drbd_state_rv
is_valid_soft_transition(union drbd_state
, union drbd_state
, struct drbd_connection
*);
56 static enum drbd_state_rv
is_valid_transition(union drbd_state os
, union drbd_state ns
);
57 static union drbd_state
sanitize_state(struct drbd_device
*device
, union drbd_state os
,
58 union drbd_state ns
, enum sanitize_state_warnings
*warn
);
60 static inline bool is_susp(union drbd_state s
)
62 return s
.susp
|| s
.susp_nod
|| s
.susp_fen
;
65 bool conn_all_vols_unconf(struct drbd_connection
*connection
)
67 struct drbd_peer_device
*peer_device
;
72 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
73 struct drbd_device
*device
= peer_device
->device
;
74 if (device
->state
.disk
!= D_DISKLESS
||
75 device
->state
.conn
!= C_STANDALONE
||
76 device
->state
.role
!= R_SECONDARY
) {
86 /* Unfortunately the states where not correctly ordered, when
87 they where defined. therefore can not use max_t() here. */
88 static enum drbd_role
max_role(enum drbd_role role1
, enum drbd_role role2
)
90 if (role1
== R_PRIMARY
|| role2
== R_PRIMARY
)
92 if (role1
== R_SECONDARY
|| role2
== R_SECONDARY
)
96 static enum drbd_role
min_role(enum drbd_role role1
, enum drbd_role role2
)
98 if (role1
== R_UNKNOWN
|| role2
== R_UNKNOWN
)
100 if (role1
== R_SECONDARY
|| role2
== R_SECONDARY
)
105 enum drbd_role
conn_highest_role(struct drbd_connection
*connection
)
107 enum drbd_role role
= R_UNKNOWN
;
108 struct drbd_peer_device
*peer_device
;
112 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
113 struct drbd_device
*device
= peer_device
->device
;
114 role
= max_role(role
, device
->state
.role
);
121 enum drbd_role
conn_highest_peer(struct drbd_connection
*connection
)
123 enum drbd_role peer
= R_UNKNOWN
;
124 struct drbd_peer_device
*peer_device
;
128 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
129 struct drbd_device
*device
= peer_device
->device
;
130 peer
= max_role(peer
, device
->state
.peer
);
137 enum drbd_disk_state
conn_highest_disk(struct drbd_connection
*connection
)
139 enum drbd_disk_state disk_state
= D_DISKLESS
;
140 struct drbd_peer_device
*peer_device
;
144 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
145 struct drbd_device
*device
= peer_device
->device
;
146 disk_state
= max_t(enum drbd_disk_state
, disk_state
, device
->state
.disk
);
153 enum drbd_disk_state
conn_lowest_disk(struct drbd_connection
*connection
)
155 enum drbd_disk_state disk_state
= D_MASK
;
156 struct drbd_peer_device
*peer_device
;
160 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
161 struct drbd_device
*device
= peer_device
->device
;
162 disk_state
= min_t(enum drbd_disk_state
, disk_state
, device
->state
.disk
);
169 enum drbd_disk_state
conn_highest_pdsk(struct drbd_connection
*connection
)
171 enum drbd_disk_state disk_state
= D_DISKLESS
;
172 struct drbd_peer_device
*peer_device
;
176 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
177 struct drbd_device
*device
= peer_device
->device
;
178 disk_state
= max_t(enum drbd_disk_state
, disk_state
, device
->state
.pdsk
);
185 enum drbd_conns
conn_lowest_conn(struct drbd_connection
*connection
)
187 enum drbd_conns conn
= C_MASK
;
188 struct drbd_peer_device
*peer_device
;
192 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
193 struct drbd_device
*device
= peer_device
->device
;
194 conn
= min_t(enum drbd_conns
, conn
, device
->state
.conn
);
201 static bool no_peer_wf_report_params(struct drbd_connection
*connection
)
203 struct drbd_peer_device
*peer_device
;
208 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
)
209 if (peer_device
->device
->state
.conn
== C_WF_REPORT_PARAMS
) {
218 static void wake_up_all_devices(struct drbd_connection
*connection
)
220 struct drbd_peer_device
*peer_device
;
224 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
)
225 wake_up(&peer_device
->device
->state_wait
);
232 * cl_wide_st_chg() - true if the state change is a cluster wide one
233 * @device: DRBD device.
234 * @os: old (current) state.
235 * @ns: new (wanted) state.
237 static int cl_wide_st_chg(struct drbd_device
*device
,
238 union drbd_state os
, union drbd_state ns
)
240 return (os
.conn
>= C_CONNECTED
&& ns
.conn
>= C_CONNECTED
&&
241 ((os
.role
!= R_PRIMARY
&& ns
.role
== R_PRIMARY
) ||
242 (os
.conn
!= C_STARTING_SYNC_T
&& ns
.conn
== C_STARTING_SYNC_T
) ||
243 (os
.conn
!= C_STARTING_SYNC_S
&& ns
.conn
== C_STARTING_SYNC_S
) ||
244 (os
.disk
!= D_FAILED
&& ns
.disk
== D_FAILED
))) ||
245 (os
.conn
>= C_CONNECTED
&& ns
.conn
== C_DISCONNECTING
) ||
246 (os
.conn
== C_CONNECTED
&& ns
.conn
== C_VERIFY_S
) ||
247 (os
.conn
== C_CONNECTED
&& ns
.conn
== C_WF_REPORT_PARAMS
);
250 static union drbd_state
251 apply_mask_val(union drbd_state os
, union drbd_state mask
, union drbd_state val
)
254 ns
.i
= (os
.i
& ~mask
.i
) | val
.i
;
259 drbd_change_state(struct drbd_device
*device
, enum chg_state_flags f
,
260 union drbd_state mask
, union drbd_state val
)
264 enum drbd_state_rv rv
;
266 spin_lock_irqsave(&device
->resource
->req_lock
, flags
);
267 ns
= apply_mask_val(drbd_read_state(device
), mask
, val
);
268 rv
= _drbd_set_state(device
, ns
, f
, NULL
);
269 spin_unlock_irqrestore(&device
->resource
->req_lock
, flags
);
275 * drbd_force_state() - Impose a change which happens outside our control on our state
276 * @device: DRBD device.
277 * @mask: mask of state bits to change.
278 * @val: value of new state bits.
280 void drbd_force_state(struct drbd_device
*device
,
281 union drbd_state mask
, union drbd_state val
)
283 drbd_change_state(device
, CS_HARD
, mask
, val
);
286 static enum drbd_state_rv
287 _req_st_cond(struct drbd_device
*device
, union drbd_state mask
,
288 union drbd_state val
)
290 union drbd_state os
, ns
;
292 enum drbd_state_rv rv
;
294 if (test_and_clear_bit(CL_ST_CHG_SUCCESS
, &device
->flags
))
295 return SS_CW_SUCCESS
;
297 if (test_and_clear_bit(CL_ST_CHG_FAIL
, &device
->flags
))
298 return SS_CW_FAILED_BY_PEER
;
300 spin_lock_irqsave(&device
->resource
->req_lock
, flags
);
301 os
= drbd_read_state(device
);
302 ns
= sanitize_state(device
, os
, apply_mask_val(os
, mask
, val
), NULL
);
303 rv
= is_valid_transition(os
, ns
);
304 if (rv
>= SS_SUCCESS
)
305 rv
= SS_UNKNOWN_ERROR
; /* cont waiting, otherwise fail. */
307 if (!cl_wide_st_chg(device
, os
, ns
))
309 if (rv
== SS_UNKNOWN_ERROR
) {
310 rv
= is_valid_state(device
, ns
);
311 if (rv
>= SS_SUCCESS
) {
312 rv
= is_valid_soft_transition(os
, ns
, first_peer_device(device
)->connection
);
313 if (rv
>= SS_SUCCESS
)
314 rv
= SS_UNKNOWN_ERROR
; /* cont waiting, otherwise fail. */
317 spin_unlock_irqrestore(&device
->resource
->req_lock
, flags
);
323 * drbd_req_state() - Perform an eventually cluster wide state change
324 * @device: DRBD device.
325 * @mask: mask of state bits to change.
326 * @val: value of new state bits.
329 * Should not be called directly, use drbd_request_state() or
330 * _drbd_request_state().
332 static enum drbd_state_rv
333 drbd_req_state(struct drbd_device
*device
, union drbd_state mask
,
334 union drbd_state val
, enum chg_state_flags f
)
336 struct completion done
;
338 union drbd_state os
, ns
;
339 enum drbd_state_rv rv
;
341 init_completion(&done
);
343 if (f
& CS_SERIALIZE
)
344 mutex_lock(device
->state_mutex
);
346 spin_lock_irqsave(&device
->resource
->req_lock
, flags
);
347 os
= drbd_read_state(device
);
348 ns
= sanitize_state(device
, os
, apply_mask_val(os
, mask
, val
), NULL
);
349 rv
= is_valid_transition(os
, ns
);
350 if (rv
< SS_SUCCESS
) {
351 spin_unlock_irqrestore(&device
->resource
->req_lock
, flags
);
355 if (cl_wide_st_chg(device
, os
, ns
)) {
356 rv
= is_valid_state(device
, ns
);
357 if (rv
== SS_SUCCESS
)
358 rv
= is_valid_soft_transition(os
, ns
, first_peer_device(device
)->connection
);
359 spin_unlock_irqrestore(&device
->resource
->req_lock
, flags
);
361 if (rv
< SS_SUCCESS
) {
363 print_st_err(device
, os
, ns
, rv
);
367 if (drbd_send_state_req(first_peer_device(device
), mask
, val
)) {
368 rv
= SS_CW_FAILED_BY_PEER
;
370 print_st_err(device
, os
, ns
, rv
);
374 wait_event(device
->state_wait
,
375 (rv
= _req_st_cond(device
, mask
, val
)));
377 if (rv
< SS_SUCCESS
) {
379 print_st_err(device
, os
, ns
, rv
);
382 spin_lock_irqsave(&device
->resource
->req_lock
, flags
);
383 ns
= apply_mask_val(drbd_read_state(device
), mask
, val
);
384 rv
= _drbd_set_state(device
, ns
, f
, &done
);
386 rv
= _drbd_set_state(device
, ns
, f
, &done
);
389 spin_unlock_irqrestore(&device
->resource
->req_lock
, flags
);
391 if (f
& CS_WAIT_COMPLETE
&& rv
== SS_SUCCESS
) {
392 D_ASSERT(device
, current
!= first_peer_device(device
)->connection
->worker
.task
);
393 wait_for_completion(&done
);
397 if (f
& CS_SERIALIZE
)
398 mutex_unlock(device
->state_mutex
);
404 * _drbd_request_state() - Request a state change (with flags)
405 * @device: DRBD device.
406 * @mask: mask of state bits to change.
407 * @val: value of new state bits.
410 * Cousin of drbd_request_state(), useful with the CS_WAIT_COMPLETE
411 * flag, or when logging of failed state change requests is not desired.
414 _drbd_request_state(struct drbd_device
*device
, union drbd_state mask
,
415 union drbd_state val
, enum chg_state_flags f
)
417 enum drbd_state_rv rv
;
419 wait_event(device
->state_wait
,
420 (rv
= drbd_req_state(device
, mask
, val
, f
)) != SS_IN_TRANSIENT_STATE
);
426 _drbd_request_state_holding_state_mutex(struct drbd_device
*device
, union drbd_state mask
,
427 union drbd_state val
, enum chg_state_flags f
)
429 enum drbd_state_rv rv
;
431 BUG_ON(f
& CS_SERIALIZE
);
433 wait_event_cmd(device
->state_wait
,
434 (rv
= drbd_req_state(device
, mask
, val
, f
)) != SS_IN_TRANSIENT_STATE
,
435 mutex_unlock(device
->state_mutex
),
436 mutex_lock(device
->state_mutex
));
441 static void print_st(struct drbd_device
*device
, const char *name
, union drbd_state ns
)
443 drbd_err(device
, " %s = { cs:%s ro:%s/%s ds:%s/%s %c%c%c%c%c%c }\n",
445 drbd_conn_str(ns
.conn
),
446 drbd_role_str(ns
.role
),
447 drbd_role_str(ns
.peer
),
448 drbd_disk_str(ns
.disk
),
449 drbd_disk_str(ns
.pdsk
),
450 is_susp(ns
) ? 's' : 'r',
451 ns
.aftr_isp
? 'a' : '-',
452 ns
.peer_isp
? 'p' : '-',
453 ns
.user_isp
? 'u' : '-',
454 ns
.susp_fen
? 'F' : '-',
455 ns
.susp_nod
? 'N' : '-'
459 void print_st_err(struct drbd_device
*device
, union drbd_state os
,
460 union drbd_state ns
, enum drbd_state_rv err
)
462 if (err
== SS_IN_TRANSIENT_STATE
)
464 drbd_err(device
, "State change failed: %s\n", drbd_set_st_err_str(err
));
465 print_st(device
, " state", os
);
466 print_st(device
, "wanted", ns
);
469 static long print_state_change(char *pb
, union drbd_state os
, union drbd_state ns
,
470 enum chg_state_flags flags
)
476 if (ns
.role
!= os
.role
&& flags
& CS_DC_ROLE
)
477 pbp
+= sprintf(pbp
, "role( %s -> %s ) ",
478 drbd_role_str(os
.role
),
479 drbd_role_str(ns
.role
));
480 if (ns
.peer
!= os
.peer
&& flags
& CS_DC_PEER
)
481 pbp
+= sprintf(pbp
, "peer( %s -> %s ) ",
482 drbd_role_str(os
.peer
),
483 drbd_role_str(ns
.peer
));
484 if (ns
.conn
!= os
.conn
&& flags
& CS_DC_CONN
)
485 pbp
+= sprintf(pbp
, "conn( %s -> %s ) ",
486 drbd_conn_str(os
.conn
),
487 drbd_conn_str(ns
.conn
));
488 if (ns
.disk
!= os
.disk
&& flags
& CS_DC_DISK
)
489 pbp
+= sprintf(pbp
, "disk( %s -> %s ) ",
490 drbd_disk_str(os
.disk
),
491 drbd_disk_str(ns
.disk
));
492 if (ns
.pdsk
!= os
.pdsk
&& flags
& CS_DC_PDSK
)
493 pbp
+= sprintf(pbp
, "pdsk( %s -> %s ) ",
494 drbd_disk_str(os
.pdsk
),
495 drbd_disk_str(ns
.pdsk
));
500 static void drbd_pr_state_change(struct drbd_device
*device
, union drbd_state os
, union drbd_state ns
,
501 enum chg_state_flags flags
)
506 pbp
+= print_state_change(pbp
, os
, ns
, flags
^ CS_DC_MASK
);
508 if (ns
.aftr_isp
!= os
.aftr_isp
)
509 pbp
+= sprintf(pbp
, "aftr_isp( %d -> %d ) ",
512 if (ns
.peer_isp
!= os
.peer_isp
)
513 pbp
+= sprintf(pbp
, "peer_isp( %d -> %d ) ",
516 if (ns
.user_isp
!= os
.user_isp
)
517 pbp
+= sprintf(pbp
, "user_isp( %d -> %d ) ",
522 drbd_info(device
, "%s\n", pb
);
525 static void conn_pr_state_change(struct drbd_connection
*connection
, union drbd_state os
, union drbd_state ns
,
526 enum chg_state_flags flags
)
531 pbp
+= print_state_change(pbp
, os
, ns
, flags
);
533 if (is_susp(ns
) != is_susp(os
) && flags
& CS_DC_SUSP
)
534 pbp
+= sprintf(pbp
, "susp( %d -> %d ) ",
539 drbd_info(connection
, "%s\n", pb
);
544 * is_valid_state() - Returns an SS_ error code if ns is not valid
545 * @device: DRBD device.
546 * @ns: State to consider.
548 static enum drbd_state_rv
549 is_valid_state(struct drbd_device
*device
, union drbd_state ns
)
551 /* See drbd_state_sw_errors in drbd_strings.c */
553 enum drbd_fencing_p fp
;
554 enum drbd_state_rv rv
= SS_SUCCESS
;
559 if (get_ldev(device
)) {
560 fp
= rcu_dereference(device
->ldev
->disk_conf
)->fencing
;
564 nc
= rcu_dereference(first_peer_device(device
)->connection
->net_conf
);
566 if (!nc
->two_primaries
&& ns
.role
== R_PRIMARY
) {
567 if (ns
.peer
== R_PRIMARY
)
568 rv
= SS_TWO_PRIMARIES
;
569 else if (conn_highest_peer(first_peer_device(device
)->connection
) == R_PRIMARY
)
570 rv
= SS_O_VOL_PEER_PRI
;
575 /* already found a reason to abort */;
576 else if (ns
.role
== R_SECONDARY
&& device
->open_cnt
)
577 rv
= SS_DEVICE_IN_USE
;
579 else if (ns
.role
== R_PRIMARY
&& ns
.conn
< C_CONNECTED
&& ns
.disk
< D_UP_TO_DATE
)
580 rv
= SS_NO_UP_TO_DATE_DISK
;
582 else if (fp
>= FP_RESOURCE
&&
583 ns
.role
== R_PRIMARY
&& ns
.conn
< C_CONNECTED
&& ns
.pdsk
>= D_UNKNOWN
)
586 else if (ns
.role
== R_PRIMARY
&& ns
.disk
<= D_INCONSISTENT
&& ns
.pdsk
<= D_INCONSISTENT
)
587 rv
= SS_NO_UP_TO_DATE_DISK
;
589 else if (ns
.conn
> C_CONNECTED
&& ns
.disk
< D_INCONSISTENT
)
590 rv
= SS_NO_LOCAL_DISK
;
592 else if (ns
.conn
> C_CONNECTED
&& ns
.pdsk
< D_INCONSISTENT
)
593 rv
= SS_NO_REMOTE_DISK
;
595 else if (ns
.conn
> C_CONNECTED
&& ns
.disk
< D_UP_TO_DATE
&& ns
.pdsk
< D_UP_TO_DATE
)
596 rv
= SS_NO_UP_TO_DATE_DISK
;
598 else if ((ns
.conn
== C_CONNECTED
||
599 ns
.conn
== C_WF_BITMAP_S
||
600 ns
.conn
== C_SYNC_SOURCE
||
601 ns
.conn
== C_PAUSED_SYNC_S
) &&
602 ns
.disk
== D_OUTDATED
)
603 rv
= SS_CONNECTED_OUTDATES
;
605 else if ((ns
.conn
== C_VERIFY_S
|| ns
.conn
== C_VERIFY_T
) &&
606 (nc
->verify_alg
[0] == 0))
607 rv
= SS_NO_VERIFY_ALG
;
609 else if ((ns
.conn
== C_VERIFY_S
|| ns
.conn
== C_VERIFY_T
) &&
610 first_peer_device(device
)->connection
->agreed_pro_version
< 88)
611 rv
= SS_NOT_SUPPORTED
;
613 else if (ns
.role
== R_PRIMARY
&& ns
.disk
< D_UP_TO_DATE
&& ns
.pdsk
< D_UP_TO_DATE
)
614 rv
= SS_NO_UP_TO_DATE_DISK
;
616 else if ((ns
.conn
== C_STARTING_SYNC_S
|| ns
.conn
== C_STARTING_SYNC_T
) &&
617 ns
.pdsk
== D_UNKNOWN
)
618 rv
= SS_NEED_CONNECTION
;
620 else if (ns
.conn
>= C_CONNECTED
&& ns
.pdsk
== D_UNKNOWN
)
621 rv
= SS_CONNECTED_OUTDATES
;
629 * is_valid_soft_transition() - Returns an SS_ error code if the state transition is not possible
630 * This function limits state transitions that may be declined by DRBD. I.e.
631 * user requests (aka soft transitions).
632 * @device: DRBD device.
636 static enum drbd_state_rv
637 is_valid_soft_transition(union drbd_state os
, union drbd_state ns
, struct drbd_connection
*connection
)
639 enum drbd_state_rv rv
= SS_SUCCESS
;
641 if ((ns
.conn
== C_STARTING_SYNC_T
|| ns
.conn
== C_STARTING_SYNC_S
) &&
642 os
.conn
> C_CONNECTED
)
643 rv
= SS_RESYNC_RUNNING
;
645 if (ns
.conn
== C_DISCONNECTING
&& os
.conn
== C_STANDALONE
)
646 rv
= SS_ALREADY_STANDALONE
;
648 if (ns
.disk
> D_ATTACHING
&& os
.disk
== D_DISKLESS
)
651 if (ns
.conn
== C_WF_CONNECTION
&& os
.conn
< C_UNCONNECTED
)
652 rv
= SS_NO_NET_CONFIG
;
654 if (ns
.disk
== D_OUTDATED
&& os
.disk
< D_OUTDATED
&& os
.disk
!= D_ATTACHING
)
655 rv
= SS_LOWER_THAN_OUTDATED
;
657 if (ns
.conn
== C_DISCONNECTING
&& os
.conn
== C_UNCONNECTED
)
658 rv
= SS_IN_TRANSIENT_STATE
;
660 /* While establishing a connection only allow cstate to change.
661 Delay/refuse role changes, detach attach etc... (they do not touch cstate) */
662 if (test_bit(STATE_SENT
, &connection
->flags
) &&
663 !((ns
.conn
== C_WF_REPORT_PARAMS
&& os
.conn
== C_WF_CONNECTION
) ||
664 (ns
.conn
>= C_CONNECTED
&& os
.conn
== C_WF_REPORT_PARAMS
)))
665 rv
= SS_IN_TRANSIENT_STATE
;
667 if ((ns
.conn
== C_VERIFY_S
|| ns
.conn
== C_VERIFY_T
) && os
.conn
< C_CONNECTED
)
668 rv
= SS_NEED_CONNECTION
;
670 if ((ns
.conn
== C_VERIFY_S
|| ns
.conn
== C_VERIFY_T
) &&
671 ns
.conn
!= os
.conn
&& os
.conn
> C_CONNECTED
)
672 rv
= SS_RESYNC_RUNNING
;
674 if ((ns
.conn
== C_STARTING_SYNC_S
|| ns
.conn
== C_STARTING_SYNC_T
) &&
675 os
.conn
< C_CONNECTED
)
676 rv
= SS_NEED_CONNECTION
;
678 if ((ns
.conn
== C_SYNC_TARGET
|| ns
.conn
== C_SYNC_SOURCE
)
679 && os
.conn
< C_WF_REPORT_PARAMS
)
680 rv
= SS_NEED_CONNECTION
; /* No NetworkFailure -> SyncTarget etc... */
682 if (ns
.conn
== C_DISCONNECTING
&& ns
.pdsk
== D_OUTDATED
&&
683 os
.conn
< C_CONNECTED
&& os
.pdsk
> D_OUTDATED
)
684 rv
= SS_OUTDATE_WO_CONN
;
689 static enum drbd_state_rv
690 is_valid_conn_transition(enum drbd_conns oc
, enum drbd_conns nc
)
692 /* no change -> nothing to do, at least for the connection part */
694 return SS_NOTHING_TO_DO
;
696 /* disconnect of an unconfigured connection does not make sense */
697 if (oc
== C_STANDALONE
&& nc
== C_DISCONNECTING
)
698 return SS_ALREADY_STANDALONE
;
700 /* from C_STANDALONE, we start with C_UNCONNECTED */
701 if (oc
== C_STANDALONE
&& nc
!= C_UNCONNECTED
)
702 return SS_NEED_CONNECTION
;
704 /* When establishing a connection we need to go through WF_REPORT_PARAMS!
705 Necessary to do the right thing upon invalidate-remote on a disconnected resource */
706 if (oc
< C_WF_REPORT_PARAMS
&& nc
>= C_CONNECTED
)
707 return SS_NEED_CONNECTION
;
709 /* After a network error only C_UNCONNECTED or C_DISCONNECTING may follow. */
710 if (oc
>= C_TIMEOUT
&& oc
<= C_TEAR_DOWN
&& nc
!= C_UNCONNECTED
&& nc
!= C_DISCONNECTING
)
711 return SS_IN_TRANSIENT_STATE
;
713 /* After C_DISCONNECTING only C_STANDALONE may follow */
714 if (oc
== C_DISCONNECTING
&& nc
!= C_STANDALONE
)
715 return SS_IN_TRANSIENT_STATE
;
722 * is_valid_transition() - Returns an SS_ error code if the state transition is not possible
723 * This limits hard state transitions. Hard state transitions are facts there are
724 * imposed on DRBD by the environment. E.g. disk broke or network broke down.
725 * But those hard state transitions are still not allowed to do everything.
729 static enum drbd_state_rv
730 is_valid_transition(union drbd_state os
, union drbd_state ns
)
732 enum drbd_state_rv rv
;
734 rv
= is_valid_conn_transition(os
.conn
, ns
.conn
);
736 /* we cannot fail (again) if we already detached */
737 if (ns
.disk
== D_FAILED
&& os
.disk
== D_DISKLESS
)
743 static void print_sanitize_warnings(struct drbd_device
*device
, enum sanitize_state_warnings warn
)
745 static const char *msg_table
[] = {
747 [ABORTED_ONLINE_VERIFY
] = "Online-verify aborted.",
748 [ABORTED_RESYNC
] = "Resync aborted.",
749 [CONNECTION_LOST_NEGOTIATING
] = "Connection lost while negotiating, no data!",
750 [IMPLICITLY_UPGRADED_DISK
] = "Implicitly upgraded disk",
751 [IMPLICITLY_UPGRADED_PDSK
] = "Implicitly upgraded pdsk",
754 if (warn
!= NO_WARNING
)
755 drbd_warn(device
, "%s\n", msg_table
[warn
]);
759 * sanitize_state() - Resolves implicitly necessary additional changes to a state transition
760 * @device: DRBD device.
765 * When we loose connection, we have to set the state of the peers disk (pdsk)
766 * to D_UNKNOWN. This rule and many more along those lines are in this function.
768 static union drbd_state
sanitize_state(struct drbd_device
*device
, union drbd_state os
,
769 union drbd_state ns
, enum sanitize_state_warnings
*warn
)
771 enum drbd_fencing_p fp
;
772 enum drbd_disk_state disk_min
, disk_max
, pdsk_min
, pdsk_max
;
778 if (get_ldev(device
)) {
780 fp
= rcu_dereference(device
->ldev
->disk_conf
)->fencing
;
785 /* Implications from connection to peer and peer_isp */
786 if (ns
.conn
< C_CONNECTED
) {
789 if (ns
.pdsk
> D_UNKNOWN
|| ns
.pdsk
< D_INCONSISTENT
)
793 /* Clear the aftr_isp when becoming unconfigured */
794 if (ns
.conn
== C_STANDALONE
&& ns
.disk
== D_DISKLESS
&& ns
.role
== R_SECONDARY
)
797 /* An implication of the disk states onto the connection state */
798 /* Abort resync if a disk fails/detaches */
799 if (ns
.conn
> C_CONNECTED
&& (ns
.disk
<= D_FAILED
|| ns
.pdsk
<= D_FAILED
)) {
801 *warn
= ns
.conn
== C_VERIFY_S
|| ns
.conn
== C_VERIFY_T
?
802 ABORTED_ONLINE_VERIFY
: ABORTED_RESYNC
;
803 ns
.conn
= C_CONNECTED
;
806 /* Connection breaks down before we finished "Negotiating" */
807 if (ns
.conn
< C_CONNECTED
&& ns
.disk
== D_NEGOTIATING
&&
808 get_ldev_if_state(device
, D_NEGOTIATING
)) {
809 if (device
->ed_uuid
== device
->ldev
->md
.uuid
[UI_CURRENT
]) {
810 ns
.disk
= device
->new_state_tmp
.disk
;
811 ns
.pdsk
= device
->new_state_tmp
.pdsk
;
814 *warn
= CONNECTION_LOST_NEGOTIATING
;
815 ns
.disk
= D_DISKLESS
;
821 /* D_CONSISTENT and D_OUTDATED vanish when we get connected */
822 if (ns
.conn
>= C_CONNECTED
&& ns
.conn
< C_AHEAD
) {
823 if (ns
.disk
== D_CONSISTENT
|| ns
.disk
== D_OUTDATED
)
824 ns
.disk
= D_UP_TO_DATE
;
825 if (ns
.pdsk
== D_CONSISTENT
|| ns
.pdsk
== D_OUTDATED
)
826 ns
.pdsk
= D_UP_TO_DATE
;
829 /* Implications of the connection stat on the disk states */
830 disk_min
= D_DISKLESS
;
831 disk_max
= D_UP_TO_DATE
;
832 pdsk_min
= D_INCONSISTENT
;
833 pdsk_max
= D_UNKNOWN
;
834 switch ((enum drbd_conns
)ns
.conn
) {
836 case C_PAUSED_SYNC_T
:
837 case C_STARTING_SYNC_T
:
840 disk_min
= D_INCONSISTENT
;
841 disk_max
= D_OUTDATED
;
842 pdsk_min
= D_UP_TO_DATE
;
843 pdsk_max
= D_UP_TO_DATE
;
847 disk_min
= D_UP_TO_DATE
;
848 disk_max
= D_UP_TO_DATE
;
849 pdsk_min
= D_UP_TO_DATE
;
850 pdsk_max
= D_UP_TO_DATE
;
853 disk_min
= D_DISKLESS
;
854 disk_max
= D_UP_TO_DATE
;
855 pdsk_min
= D_DISKLESS
;
856 pdsk_max
= D_UP_TO_DATE
;
859 case C_PAUSED_SYNC_S
:
860 case C_STARTING_SYNC_S
:
862 disk_min
= D_UP_TO_DATE
;
863 disk_max
= D_UP_TO_DATE
;
864 pdsk_min
= D_INCONSISTENT
;
865 pdsk_max
= D_CONSISTENT
; /* D_OUTDATED would be nice. But explicit outdate necessary*/
868 disk_min
= D_INCONSISTENT
;
869 disk_max
= D_INCONSISTENT
;
870 pdsk_min
= D_UP_TO_DATE
;
871 pdsk_max
= D_UP_TO_DATE
;
874 disk_min
= D_UP_TO_DATE
;
875 disk_max
= D_UP_TO_DATE
;
876 pdsk_min
= D_INCONSISTENT
;
877 pdsk_max
= D_INCONSISTENT
;
880 case C_DISCONNECTING
:
884 case C_NETWORK_FAILURE
:
885 case C_PROTOCOL_ERROR
:
887 case C_WF_CONNECTION
:
888 case C_WF_REPORT_PARAMS
:
892 if (ns
.disk
> disk_max
)
895 if (ns
.disk
< disk_min
) {
897 *warn
= IMPLICITLY_UPGRADED_DISK
;
900 if (ns
.pdsk
> pdsk_max
)
903 if (ns
.pdsk
< pdsk_min
) {
905 *warn
= IMPLICITLY_UPGRADED_PDSK
;
909 if (fp
== FP_STONITH
&&
910 (ns
.role
== R_PRIMARY
&& ns
.conn
< C_CONNECTED
&& ns
.pdsk
> D_OUTDATED
) &&
911 !(os
.role
== R_PRIMARY
&& os
.conn
< C_CONNECTED
&& os
.pdsk
> D_OUTDATED
))
912 ns
.susp_fen
= 1; /* Suspend IO while fence-peer handler runs (peer lost) */
914 if (device
->resource
->res_opts
.on_no_data
== OND_SUSPEND_IO
&&
915 (ns
.role
== R_PRIMARY
&& ns
.disk
< D_UP_TO_DATE
&& ns
.pdsk
< D_UP_TO_DATE
) &&
916 !(os
.role
== R_PRIMARY
&& os
.disk
< D_UP_TO_DATE
&& os
.pdsk
< D_UP_TO_DATE
))
917 ns
.susp_nod
= 1; /* Suspend IO while no data available (no accessible data available) */
919 if (ns
.aftr_isp
|| ns
.peer_isp
|| ns
.user_isp
) {
920 if (ns
.conn
== C_SYNC_SOURCE
)
921 ns
.conn
= C_PAUSED_SYNC_S
;
922 if (ns
.conn
== C_SYNC_TARGET
)
923 ns
.conn
= C_PAUSED_SYNC_T
;
925 if (ns
.conn
== C_PAUSED_SYNC_S
)
926 ns
.conn
= C_SYNC_SOURCE
;
927 if (ns
.conn
== C_PAUSED_SYNC_T
)
928 ns
.conn
= C_SYNC_TARGET
;
934 void drbd_resume_al(struct drbd_device
*device
)
936 if (test_and_clear_bit(AL_SUSPENDED
, &device
->flags
))
937 drbd_info(device
, "Resumed AL updates\n");
940 /* helper for __drbd_set_state */
941 static void set_ov_position(struct drbd_device
*device
, enum drbd_conns cs
)
943 if (first_peer_device(device
)->connection
->agreed_pro_version
< 90)
944 device
->ov_start_sector
= 0;
945 device
->rs_total
= drbd_bm_bits(device
);
946 device
->ov_position
= 0;
947 if (cs
== C_VERIFY_T
) {
948 /* starting online verify from an arbitrary position
949 * does not fit well into the existing protocol.
950 * on C_VERIFY_T, we initialize ov_left and friends
951 * implicitly in receive_DataRequest once the
952 * first P_OV_REQUEST is received */
953 device
->ov_start_sector
= ~(sector_t
)0;
955 unsigned long bit
= BM_SECT_TO_BIT(device
->ov_start_sector
);
956 if (bit
>= device
->rs_total
) {
957 device
->ov_start_sector
=
958 BM_BIT_TO_SECT(device
->rs_total
- 1);
959 device
->rs_total
= 1;
961 device
->rs_total
-= bit
;
962 device
->ov_position
= device
->ov_start_sector
;
964 device
->ov_left
= device
->rs_total
;
968 * __drbd_set_state() - Set a new DRBD state
969 * @device: DRBD device.
972 * @done: Optional completion, that will get completed after the after_state_ch() finished
974 * Caller needs to hold req_lock, and global_state_lock. Do not call directly.
977 __drbd_set_state(struct drbd_device
*device
, union drbd_state ns
,
978 enum chg_state_flags flags
, struct completion
*done
)
980 struct drbd_peer_device
*peer_device
= first_peer_device(device
);
981 struct drbd_connection
*connection
= peer_device
? peer_device
->connection
: NULL
;
983 enum drbd_state_rv rv
= SS_SUCCESS
;
984 enum sanitize_state_warnings ssw
;
985 struct after_state_chg_work
*ascw
;
987 os
= drbd_read_state(device
);
989 ns
= sanitize_state(device
, os
, ns
, &ssw
);
991 return SS_NOTHING_TO_DO
;
993 rv
= is_valid_transition(os
, ns
);
997 if (!(flags
& CS_HARD
)) {
998 /* pre-state-change checks ; only look at ns */
999 /* See drbd_state_sw_errors in drbd_strings.c */
1001 rv
= is_valid_state(device
, ns
);
1002 if (rv
< SS_SUCCESS
) {
1003 /* If the old state was illegal as well, then let
1006 if (is_valid_state(device
, os
) == rv
)
1007 rv
= is_valid_soft_transition(os
, ns
, connection
);
1009 rv
= is_valid_soft_transition(os
, ns
, connection
);
1012 if (rv
< SS_SUCCESS
) {
1013 if (flags
& CS_VERBOSE
)
1014 print_st_err(device
, os
, ns
, rv
);
1018 print_sanitize_warnings(device
, ssw
);
1020 drbd_pr_state_change(device
, os
, ns
, flags
);
1022 /* Display changes to the susp* flags that where caused by the call to
1023 sanitize_state(). Only display it here if we where not called from
1024 _conn_request_state() */
1025 if (!(flags
& CS_DC_SUSP
))
1026 conn_pr_state_change(connection
, os
, ns
,
1027 (flags
& ~CS_DC_MASK
) | CS_DC_SUSP
);
1029 /* if we are going -> D_FAILED or D_DISKLESS, grab one extra reference
1030 * on the ldev here, to be sure the transition -> D_DISKLESS resp.
1031 * drbd_ldev_destroy() won't happen before our corresponding
1032 * after_state_ch works run, where we put_ldev again. */
1033 if ((os
.disk
!= D_FAILED
&& ns
.disk
== D_FAILED
) ||
1034 (os
.disk
!= D_DISKLESS
&& ns
.disk
== D_DISKLESS
))
1035 atomic_inc(&device
->local_cnt
);
1037 if (!is_sync_state(os
.conn
) && is_sync_state(ns
.conn
))
1038 clear_bit(RS_DONE
, &device
->flags
);
1040 /* changes to local_cnt and device flags should be visible before
1041 * changes to state, which again should be visible before anything else
1042 * depending on that change happens. */
1044 device
->state
.i
= ns
.i
;
1045 device
->resource
->susp
= ns
.susp
;
1046 device
->resource
->susp_nod
= ns
.susp_nod
;
1047 device
->resource
->susp_fen
= ns
.susp_fen
;
1050 /* put replicated vs not-replicated requests in seperate epochs */
1051 if (drbd_should_do_remote((union drbd_dev_state
)os
.i
) !=
1052 drbd_should_do_remote((union drbd_dev_state
)ns
.i
))
1053 start_new_tl_epoch(connection
);
1055 if (os
.disk
== D_ATTACHING
&& ns
.disk
>= D_NEGOTIATING
)
1056 drbd_print_uuids(device
, "attached to UUIDs");
1058 /* Wake up role changes, that were delayed because of connection establishing */
1059 if (os
.conn
== C_WF_REPORT_PARAMS
&& ns
.conn
!= C_WF_REPORT_PARAMS
&&
1060 no_peer_wf_report_params(connection
)) {
1061 clear_bit(STATE_SENT
, &connection
->flags
);
1062 wake_up_all_devices(connection
);
1065 wake_up(&device
->misc_wait
);
1066 wake_up(&device
->state_wait
);
1067 wake_up(&connection
->ping_wait
);
1069 /* Aborted verify run, or we reached the stop sector.
1070 * Log the last position, unless end-of-device. */
1071 if ((os
.conn
== C_VERIFY_S
|| os
.conn
== C_VERIFY_T
) &&
1072 ns
.conn
<= C_CONNECTED
) {
1073 device
->ov_start_sector
=
1074 BM_BIT_TO_SECT(drbd_bm_bits(device
) - device
->ov_left
);
1075 if (device
->ov_left
)
1076 drbd_info(device
, "Online Verify reached sector %llu\n",
1077 (unsigned long long)device
->ov_start_sector
);
1080 if ((os
.conn
== C_PAUSED_SYNC_T
|| os
.conn
== C_PAUSED_SYNC_S
) &&
1081 (ns
.conn
== C_SYNC_TARGET
|| ns
.conn
== C_SYNC_SOURCE
)) {
1082 drbd_info(device
, "Syncer continues.\n");
1083 device
->rs_paused
+= (long)jiffies
1084 -(long)device
->rs_mark_time
[device
->rs_last_mark
];
1085 if (ns
.conn
== C_SYNC_TARGET
)
1086 mod_timer(&device
->resync_timer
, jiffies
);
1089 if ((os
.conn
== C_SYNC_TARGET
|| os
.conn
== C_SYNC_SOURCE
) &&
1090 (ns
.conn
== C_PAUSED_SYNC_T
|| ns
.conn
== C_PAUSED_SYNC_S
)) {
1091 drbd_info(device
, "Resync suspended\n");
1092 device
->rs_mark_time
[device
->rs_last_mark
] = jiffies
;
1095 if (os
.conn
== C_CONNECTED
&&
1096 (ns
.conn
== C_VERIFY_S
|| ns
.conn
== C_VERIFY_T
)) {
1097 unsigned long now
= jiffies
;
1100 set_ov_position(device
, ns
.conn
);
1101 device
->rs_start
= now
;
1102 device
->rs_last_sect_ev
= 0;
1103 device
->ov_last_oos_size
= 0;
1104 device
->ov_last_oos_start
= 0;
1106 for (i
= 0; i
< DRBD_SYNC_MARKS
; i
++) {
1107 device
->rs_mark_left
[i
] = device
->ov_left
;
1108 device
->rs_mark_time
[i
] = now
;
1111 drbd_rs_controller_reset(device
);
1113 if (ns
.conn
== C_VERIFY_S
) {
1114 drbd_info(device
, "Starting Online Verify from sector %llu\n",
1115 (unsigned long long)device
->ov_position
);
1116 mod_timer(&device
->resync_timer
, jiffies
);
1120 if (get_ldev(device
)) {
1121 u32 mdf
= device
->ldev
->md
.flags
& ~(MDF_CONSISTENT
|MDF_PRIMARY_IND
|
1122 MDF_CONNECTED_IND
|MDF_WAS_UP_TO_DATE
|
1123 MDF_PEER_OUT_DATED
|MDF_CRASHED_PRIMARY
);
1125 mdf
&= ~MDF_AL_CLEAN
;
1126 if (test_bit(CRASHED_PRIMARY
, &device
->flags
))
1127 mdf
|= MDF_CRASHED_PRIMARY
;
1128 if (device
->state
.role
== R_PRIMARY
||
1129 (device
->state
.pdsk
< D_INCONSISTENT
&& device
->state
.peer
== R_PRIMARY
))
1130 mdf
|= MDF_PRIMARY_IND
;
1131 if (device
->state
.conn
> C_WF_REPORT_PARAMS
)
1132 mdf
|= MDF_CONNECTED_IND
;
1133 if (device
->state
.disk
> D_INCONSISTENT
)
1134 mdf
|= MDF_CONSISTENT
;
1135 if (device
->state
.disk
> D_OUTDATED
)
1136 mdf
|= MDF_WAS_UP_TO_DATE
;
1137 if (device
->state
.pdsk
<= D_OUTDATED
&& device
->state
.pdsk
>= D_INCONSISTENT
)
1138 mdf
|= MDF_PEER_OUT_DATED
;
1139 if (mdf
!= device
->ldev
->md
.flags
) {
1140 device
->ldev
->md
.flags
= mdf
;
1141 drbd_md_mark_dirty(device
);
1143 if (os
.disk
< D_CONSISTENT
&& ns
.disk
>= D_CONSISTENT
)
1144 drbd_set_ed_uuid(device
, device
->ldev
->md
.uuid
[UI_CURRENT
]);
1148 /* Peer was forced D_UP_TO_DATE & R_PRIMARY, consider to resync */
1149 if (os
.disk
== D_INCONSISTENT
&& os
.pdsk
== D_INCONSISTENT
&&
1150 os
.peer
== R_SECONDARY
&& ns
.peer
== R_PRIMARY
)
1151 set_bit(CONSIDER_RESYNC
, &device
->flags
);
1153 /* Receiver should clean up itself */
1154 if (os
.conn
!= C_DISCONNECTING
&& ns
.conn
== C_DISCONNECTING
)
1155 drbd_thread_stop_nowait(&connection
->receiver
);
1157 /* Now the receiver finished cleaning up itself, it should die */
1158 if (os
.conn
!= C_STANDALONE
&& ns
.conn
== C_STANDALONE
)
1159 drbd_thread_stop_nowait(&connection
->receiver
);
1161 /* Upon network failure, we need to restart the receiver. */
1162 if (os
.conn
> C_WF_CONNECTION
&&
1163 ns
.conn
<= C_TEAR_DOWN
&& ns
.conn
>= C_TIMEOUT
)
1164 drbd_thread_restart_nowait(&connection
->receiver
);
1166 /* Resume AL writing if we get a connection */
1167 if (os
.conn
< C_CONNECTED
&& ns
.conn
>= C_CONNECTED
) {
1168 drbd_resume_al(device
);
1169 connection
->connect_cnt
++;
1172 /* remember last attach time so request_timer_fn() won't
1173 * kill newly established sessions while we are still trying to thaw
1174 * previously frozen IO */
1175 if ((os
.disk
== D_ATTACHING
|| os
.disk
== D_NEGOTIATING
) &&
1176 ns
.disk
> D_NEGOTIATING
)
1177 device
->last_reattach_jif
= jiffies
;
1179 ascw
= kmalloc(sizeof(*ascw
), GFP_ATOMIC
);
1183 ascw
->flags
= flags
;
1184 ascw
->w
.cb
= w_after_state_ch
;
1185 ascw
->device
= device
;
1187 drbd_queue_work(&connection
->sender_work
,
1190 drbd_err(device
, "Could not kmalloc an ascw\n");
1196 static int w_after_state_ch(struct drbd_work
*w
, int unused
)
1198 struct after_state_chg_work
*ascw
=
1199 container_of(w
, struct after_state_chg_work
, w
);
1200 struct drbd_device
*device
= ascw
->device
;
1202 after_state_ch(device
, ascw
->os
, ascw
->ns
, ascw
->flags
);
1203 if (ascw
->flags
& CS_WAIT_COMPLETE
)
1204 complete(ascw
->done
);
1210 static void abw_start_sync(struct drbd_device
*device
, int rv
)
1213 drbd_err(device
, "Writing the bitmap failed not starting resync.\n");
1214 _drbd_request_state(device
, NS(conn
, C_CONNECTED
), CS_VERBOSE
);
1218 switch (device
->state
.conn
) {
1219 case C_STARTING_SYNC_T
:
1220 _drbd_request_state(device
, NS(conn
, C_WF_SYNC_UUID
), CS_VERBOSE
);
1222 case C_STARTING_SYNC_S
:
1223 drbd_start_resync(device
, C_SYNC_SOURCE
);
1228 int drbd_bitmap_io_from_worker(struct drbd_device
*device
,
1229 int (*io_fn
)(struct drbd_device
*),
1230 char *why
, enum bm_flag flags
)
1234 D_ASSERT(device
, current
== first_peer_device(device
)->connection
->worker
.task
);
1236 /* open coded non-blocking drbd_suspend_io(device); */
1237 set_bit(SUSPEND_IO
, &device
->flags
);
1239 drbd_bm_lock(device
, why
, flags
);
1241 drbd_bm_unlock(device
);
1243 drbd_resume_io(device
);
1249 * after_state_ch() - Perform after state change actions that may sleep
1250 * @device: DRBD device.
1255 static void after_state_ch(struct drbd_device
*device
, union drbd_state os
,
1256 union drbd_state ns
, enum chg_state_flags flags
)
1258 struct drbd_resource
*resource
= device
->resource
;
1259 struct drbd_peer_device
*peer_device
= first_peer_device(device
);
1260 struct drbd_connection
*connection
= peer_device
? peer_device
->connection
: NULL
;
1261 struct sib_info sib
;
1263 sib
.sib_reason
= SIB_STATE_CHANGE
;
1267 if ((os
.disk
!= D_UP_TO_DATE
|| os
.pdsk
!= D_UP_TO_DATE
)
1268 && (ns
.disk
== D_UP_TO_DATE
&& ns
.pdsk
== D_UP_TO_DATE
)) {
1269 clear_bit(CRASHED_PRIMARY
, &device
->flags
);
1271 device
->p_uuid
[UI_FLAGS
] &= ~((u64
)2);
1274 /* Inform userspace about the change... */
1275 drbd_bcast_event(device
, &sib
);
1277 if (!(os
.role
== R_PRIMARY
&& os
.disk
< D_UP_TO_DATE
&& os
.pdsk
< D_UP_TO_DATE
) &&
1278 (ns
.role
== R_PRIMARY
&& ns
.disk
< D_UP_TO_DATE
&& ns
.pdsk
< D_UP_TO_DATE
))
1279 drbd_khelper(device
, "pri-on-incon-degr");
1281 /* Here we have the actions that are performed after a
1282 state change. This function might sleep */
1285 enum drbd_req_event what
= NOTHING
;
1287 spin_lock_irq(&device
->resource
->req_lock
);
1288 if (os
.conn
< C_CONNECTED
&& conn_lowest_conn(connection
) >= C_CONNECTED
)
1291 if ((os
.disk
== D_ATTACHING
|| os
.disk
== D_NEGOTIATING
) &&
1292 conn_lowest_disk(connection
) > D_NEGOTIATING
)
1293 what
= RESTART_FROZEN_DISK_IO
;
1295 if (resource
->susp_nod
&& what
!= NOTHING
) {
1296 _tl_restart(connection
, what
);
1297 _conn_request_state(connection
,
1298 (union drbd_state
) { { .susp_nod
= 1 } },
1299 (union drbd_state
) { { .susp_nod
= 0 } },
1302 spin_unlock_irq(&device
->resource
->req_lock
);
1306 spin_lock_irq(&device
->resource
->req_lock
);
1307 if (resource
->susp_fen
&& conn_lowest_conn(connection
) >= C_CONNECTED
) {
1308 /* case2: The connection was established again: */
1309 struct drbd_peer_device
*peer_device
;
1313 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
)
1314 clear_bit(NEW_CUR_UUID
, &peer_device
->device
->flags
);
1316 _tl_restart(connection
, RESEND
);
1317 _conn_request_state(connection
,
1318 (union drbd_state
) { { .susp_fen
= 1 } },
1319 (union drbd_state
) { { .susp_fen
= 0 } },
1322 spin_unlock_irq(&device
->resource
->req_lock
);
1325 /* Became sync source. With protocol >= 96, we still need to send out
1326 * the sync uuid now. Need to do that before any drbd_send_state, or
1327 * the other side may go "paused sync" before receiving the sync uuids,
1328 * which is unexpected. */
1329 if ((os
.conn
!= C_SYNC_SOURCE
&& os
.conn
!= C_PAUSED_SYNC_S
) &&
1330 (ns
.conn
== C_SYNC_SOURCE
|| ns
.conn
== C_PAUSED_SYNC_S
) &&
1331 connection
->agreed_pro_version
>= 96 && get_ldev(device
)) {
1332 drbd_gen_and_send_sync_uuid(peer_device
);
1336 /* Do not change the order of the if above and the two below... */
1337 if (os
.pdsk
== D_DISKLESS
&&
1338 ns
.pdsk
> D_DISKLESS
&& ns
.pdsk
!= D_UNKNOWN
) { /* attach on the peer */
1339 /* we probably will start a resync soon.
1340 * make sure those things are properly reset. */
1341 device
->rs_total
= 0;
1342 device
->rs_failed
= 0;
1343 atomic_set(&device
->rs_pending_cnt
, 0);
1344 drbd_rs_cancel_all(device
);
1346 drbd_send_uuids(peer_device
);
1347 drbd_send_state(peer_device
, ns
);
1349 /* No point in queuing send_bitmap if we don't have a connection
1350 * anymore, so check also the _current_ state, not only the new state
1351 * at the time this work was queued. */
1352 if (os
.conn
!= C_WF_BITMAP_S
&& ns
.conn
== C_WF_BITMAP_S
&&
1353 device
->state
.conn
== C_WF_BITMAP_S
)
1354 drbd_queue_bitmap_io(device
, &drbd_send_bitmap
, NULL
,
1355 "send_bitmap (WFBitMapS)",
1356 BM_LOCKED_TEST_ALLOWED
);
1358 /* Lost contact to peer's copy of the data */
1359 if ((os
.pdsk
>= D_INCONSISTENT
&&
1360 os
.pdsk
!= D_UNKNOWN
&&
1361 os
.pdsk
!= D_OUTDATED
)
1362 && (ns
.pdsk
< D_INCONSISTENT
||
1363 ns
.pdsk
== D_UNKNOWN
||
1364 ns
.pdsk
== D_OUTDATED
)) {
1365 if (get_ldev(device
)) {
1366 if ((ns
.role
== R_PRIMARY
|| ns
.peer
== R_PRIMARY
) &&
1367 device
->ldev
->md
.uuid
[UI_BITMAP
] == 0 && ns
.disk
>= D_UP_TO_DATE
) {
1368 if (drbd_suspended(device
)) {
1369 set_bit(NEW_CUR_UUID
, &device
->flags
);
1371 drbd_uuid_new_current(device
);
1372 drbd_send_uuids(peer_device
);
1379 if (ns
.pdsk
< D_INCONSISTENT
&& get_ldev(device
)) {
1380 if (os
.peer
== R_SECONDARY
&& ns
.peer
== R_PRIMARY
&&
1381 device
->ldev
->md
.uuid
[UI_BITMAP
] == 0 && ns
.disk
>= D_UP_TO_DATE
) {
1382 drbd_uuid_new_current(device
);
1383 drbd_send_uuids(peer_device
);
1385 /* D_DISKLESS Peer becomes secondary */
1386 if (os
.peer
== R_PRIMARY
&& ns
.peer
== R_SECONDARY
)
1387 /* We may still be Primary ourselves.
1388 * No harm done if the bitmap still changes,
1389 * redirtied pages will follow later. */
1390 drbd_bitmap_io_from_worker(device
, &drbd_bm_write
,
1391 "demote diskless peer", BM_LOCKED_SET_ALLOWED
);
1395 /* Write out all changed bits on demote.
1396 * Though, no need to da that just yet
1397 * if there is a resync going on still */
1398 if (os
.role
== R_PRIMARY
&& ns
.role
== R_SECONDARY
&&
1399 device
->state
.conn
<= C_CONNECTED
&& get_ldev(device
)) {
1400 /* No changes to the bitmap expected this time, so assert that,
1401 * even though no harm was done if it did change. */
1402 drbd_bitmap_io_from_worker(device
, &drbd_bm_write
,
1403 "demote", BM_LOCKED_TEST_ALLOWED
);
1407 /* Last part of the attaching process ... */
1408 if (ns
.conn
>= C_CONNECTED
&&
1409 os
.disk
== D_ATTACHING
&& ns
.disk
== D_NEGOTIATING
) {
1410 drbd_send_sizes(peer_device
, 0, 0); /* to start sync... */
1411 drbd_send_uuids(peer_device
);
1412 drbd_send_state(peer_device
, ns
);
1415 /* We want to pause/continue resync, tell peer. */
1416 if (ns
.conn
>= C_CONNECTED
&&
1417 ((os
.aftr_isp
!= ns
.aftr_isp
) ||
1418 (os
.user_isp
!= ns
.user_isp
)))
1419 drbd_send_state(peer_device
, ns
);
1421 /* In case one of the isp bits got set, suspend other devices. */
1422 if ((!os
.aftr_isp
&& !os
.peer_isp
&& !os
.user_isp
) &&
1423 (ns
.aftr_isp
|| ns
.peer_isp
|| ns
.user_isp
))
1424 suspend_other_sg(device
);
1426 /* Make sure the peer gets informed about eventual state
1427 changes (ISP bits) while we were in WFReportParams. */
1428 if (os
.conn
== C_WF_REPORT_PARAMS
&& ns
.conn
>= C_CONNECTED
)
1429 drbd_send_state(peer_device
, ns
);
1431 if (os
.conn
!= C_AHEAD
&& ns
.conn
== C_AHEAD
)
1432 drbd_send_state(peer_device
, ns
);
1434 /* We are in the progress to start a full sync... */
1435 if ((os
.conn
!= C_STARTING_SYNC_T
&& ns
.conn
== C_STARTING_SYNC_T
) ||
1436 (os
.conn
!= C_STARTING_SYNC_S
&& ns
.conn
== C_STARTING_SYNC_S
))
1437 /* no other bitmap changes expected during this phase */
1438 drbd_queue_bitmap_io(device
,
1439 &drbd_bmio_set_n_write
, &abw_start_sync
,
1440 "set_n_write from StartingSync", BM_LOCKED_TEST_ALLOWED
);
1442 /* first half of local IO error, failure to attach,
1443 * or administrative detach */
1444 if (os
.disk
!= D_FAILED
&& ns
.disk
== D_FAILED
) {
1445 enum drbd_io_error_p eh
= EP_PASS_ON
;
1446 int was_io_error
= 0;
1447 /* corresponding get_ldev was in __drbd_set_state, to serialize
1448 * our cleanup here with the transition to D_DISKLESS.
1449 * But is is still not save to dreference ldev here, since
1450 * we might come from an failed Attach before ldev was set. */
1453 eh
= rcu_dereference(device
->ldev
->disk_conf
)->on_io_error
;
1456 was_io_error
= test_and_clear_bit(WAS_IO_ERROR
, &device
->flags
);
1458 if (was_io_error
&& eh
== EP_CALL_HELPER
)
1459 drbd_khelper(device
, "local-io-error");
1461 /* Immediately allow completion of all application IO,
1462 * that waits for completion from the local disk,
1463 * if this was a force-detach due to disk_timeout
1464 * or administrator request (drbdsetup detach --force).
1465 * Do NOT abort otherwise.
1466 * Aborting local requests may cause serious problems,
1467 * if requests are completed to upper layers already,
1468 * and then later the already submitted local bio completes.
1469 * This can cause DMA into former bio pages that meanwhile
1470 * have been re-used for other things.
1471 * So aborting local requests may cause crashes,
1472 * or even worse, silent data corruption.
1474 if (test_and_clear_bit(FORCE_DETACH
, &device
->flags
))
1475 tl_abort_disk_io(device
);
1477 /* current state still has to be D_FAILED,
1478 * there is only one way out: to D_DISKLESS,
1479 * and that may only happen after our put_ldev below. */
1480 if (device
->state
.disk
!= D_FAILED
)
1482 "ASSERT FAILED: disk is %s during detach\n",
1483 drbd_disk_str(device
->state
.disk
));
1485 if (ns
.conn
>= C_CONNECTED
)
1486 drbd_send_state(peer_device
, ns
);
1488 drbd_rs_cancel_all(device
);
1490 /* In case we want to get something to stable storage still,
1491 * this may be the last chance.
1492 * Following put_ldev may transition to D_DISKLESS. */
1493 drbd_md_sync(device
);
1498 /* second half of local IO error, failure to attach,
1499 * or administrative detach,
1500 * after local_cnt references have reached zero again */
1501 if (os
.disk
!= D_DISKLESS
&& ns
.disk
== D_DISKLESS
) {
1502 /* We must still be diskless,
1503 * re-attach has to be serialized with this! */
1504 if (device
->state
.disk
!= D_DISKLESS
)
1506 "ASSERT FAILED: disk is %s while going diskless\n",
1507 drbd_disk_str(device
->state
.disk
));
1509 if (ns
.conn
>= C_CONNECTED
)
1510 drbd_send_state(peer_device
, ns
);
1511 /* corresponding get_ldev in __drbd_set_state
1512 * this may finally trigger drbd_ldev_destroy. */
1516 /* Notify peer that I had a local IO error, and did not detached.. */
1517 if (os
.disk
== D_UP_TO_DATE
&& ns
.disk
== D_INCONSISTENT
&& ns
.conn
>= C_CONNECTED
)
1518 drbd_send_state(peer_device
, ns
);
1520 /* Disks got bigger while they were detached */
1521 if (ns
.disk
> D_NEGOTIATING
&& ns
.pdsk
> D_NEGOTIATING
&&
1522 test_and_clear_bit(RESYNC_AFTER_NEG
, &device
->flags
)) {
1523 if (ns
.conn
== C_CONNECTED
)
1524 resync_after_online_grow(device
);
1527 /* A resync finished or aborted, wake paused devices... */
1528 if ((os
.conn
> C_CONNECTED
&& ns
.conn
<= C_CONNECTED
) ||
1529 (os
.peer_isp
&& !ns
.peer_isp
) ||
1530 (os
.user_isp
&& !ns
.user_isp
))
1531 resume_next_sg(device
);
1533 /* sync target done with resync. Explicitly notify peer, even though
1534 * it should (at least for non-empty resyncs) already know itself. */
1535 if (os
.disk
< D_UP_TO_DATE
&& os
.conn
>= C_SYNC_SOURCE
&& ns
.conn
== C_CONNECTED
)
1536 drbd_send_state(peer_device
, ns
);
1538 /* Verify finished, or reached stop sector. Peer did not know about
1539 * the stop sector, and we may even have changed the stop sector during
1540 * verify to interrupt/stop early. Send the new state. */
1541 if (os
.conn
== C_VERIFY_S
&& ns
.conn
== C_CONNECTED
1542 && verify_can_do_stop_sector(device
))
1543 drbd_send_state(peer_device
, ns
);
1545 /* This triggers bitmap writeout of potentially still unwritten pages
1546 * if the resync finished cleanly, or aborted because of peer disk
1547 * failure, or because of connection loss.
1548 * For resync aborted because of local disk failure, we cannot do
1549 * any bitmap writeout anymore.
1550 * No harm done if some bits change during this phase.
1552 if (os
.conn
> C_CONNECTED
&& ns
.conn
<= C_CONNECTED
&& get_ldev(device
)) {
1553 drbd_queue_bitmap_io(device
, &drbd_bm_write_copy_pages
, NULL
,
1554 "write from resync_finished", BM_LOCKED_CHANGE_ALLOWED
);
1558 if (ns
.disk
== D_DISKLESS
&&
1559 ns
.conn
== C_STANDALONE
&&
1560 ns
.role
== R_SECONDARY
) {
1561 if (os
.aftr_isp
!= ns
.aftr_isp
)
1562 resume_next_sg(device
);
1565 drbd_md_sync(device
);
1568 struct after_conn_state_chg_work
{
1571 union drbd_state ns_min
;
1572 union drbd_state ns_max
; /* new, max state, over all devices */
1573 enum chg_state_flags flags
;
1574 struct drbd_connection
*connection
;
1577 static int w_after_conn_state_ch(struct drbd_work
*w
, int unused
)
1579 struct after_conn_state_chg_work
*acscw
=
1580 container_of(w
, struct after_conn_state_chg_work
, w
);
1581 struct drbd_connection
*connection
= acscw
->connection
;
1582 enum drbd_conns oc
= acscw
->oc
;
1583 union drbd_state ns_max
= acscw
->ns_max
;
1584 struct drbd_peer_device
*peer_device
;
1589 /* Upon network configuration, we need to start the receiver */
1590 if (oc
== C_STANDALONE
&& ns_max
.conn
== C_UNCONNECTED
)
1591 drbd_thread_start(&connection
->receiver
);
1593 if (oc
== C_DISCONNECTING
&& ns_max
.conn
== C_STANDALONE
) {
1594 struct net_conf
*old_conf
;
1596 mutex_lock(&connection
->resource
->conf_update
);
1597 old_conf
= connection
->net_conf
;
1598 connection
->my_addr_len
= 0;
1599 connection
->peer_addr_len
= 0;
1600 RCU_INIT_POINTER(connection
->net_conf
, NULL
);
1601 conn_free_crypto(connection
);
1602 mutex_unlock(&connection
->resource
->conf_update
);
1608 if (ns_max
.susp_fen
) {
1609 /* case1: The outdate peer handler is successful: */
1610 if (ns_max
.pdsk
<= D_OUTDATED
) {
1612 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
1613 struct drbd_device
*device
= peer_device
->device
;
1614 if (test_bit(NEW_CUR_UUID
, &device
->flags
)) {
1615 drbd_uuid_new_current(device
);
1616 clear_bit(NEW_CUR_UUID
, &device
->flags
);
1620 spin_lock_irq(&connection
->resource
->req_lock
);
1621 _tl_restart(connection
, CONNECTION_LOST_WHILE_PENDING
);
1622 _conn_request_state(connection
,
1623 (union drbd_state
) { { .susp_fen
= 1 } },
1624 (union drbd_state
) { { .susp_fen
= 0 } },
1626 spin_unlock_irq(&connection
->resource
->req_lock
);
1629 kref_put(&connection
->kref
, drbd_destroy_connection
);
1631 conn_md_sync(connection
);
1636 static void conn_old_common_state(struct drbd_connection
*connection
, union drbd_state
*pcs
, enum chg_state_flags
*pf
)
1638 enum chg_state_flags flags
= ~0;
1639 struct drbd_peer_device
*peer_device
;
1640 int vnr
, first_vol
= 1;
1641 union drbd_dev_state os
, cs
= {
1642 { .role
= R_SECONDARY
,
1644 .conn
= connection
->cstate
,
1650 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
1651 struct drbd_device
*device
= peer_device
->device
;
1660 if (cs
.role
!= os
.role
)
1661 flags
&= ~CS_DC_ROLE
;
1663 if (cs
.peer
!= os
.peer
)
1664 flags
&= ~CS_DC_PEER
;
1666 if (cs
.conn
!= os
.conn
)
1667 flags
&= ~CS_DC_CONN
;
1669 if (cs
.disk
!= os
.disk
)
1670 flags
&= ~CS_DC_DISK
;
1672 if (cs
.pdsk
!= os
.pdsk
)
1673 flags
&= ~CS_DC_PDSK
;
1682 static enum drbd_state_rv
1683 conn_is_valid_transition(struct drbd_connection
*connection
, union drbd_state mask
, union drbd_state val
,
1684 enum chg_state_flags flags
)
1686 enum drbd_state_rv rv
= SS_SUCCESS
;
1687 union drbd_state ns
, os
;
1688 struct drbd_peer_device
*peer_device
;
1692 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
1693 struct drbd_device
*device
= peer_device
->device
;
1694 os
= drbd_read_state(device
);
1695 ns
= sanitize_state(device
, os
, apply_mask_val(os
, mask
, val
), NULL
);
1697 if (flags
& CS_IGN_OUTD_FAIL
&& ns
.disk
== D_OUTDATED
&& os
.disk
< D_OUTDATED
)
1703 rv
= is_valid_transition(os
, ns
);
1705 if (rv
>= SS_SUCCESS
&& !(flags
& CS_HARD
)) {
1706 rv
= is_valid_state(device
, ns
);
1707 if (rv
< SS_SUCCESS
) {
1708 if (is_valid_state(device
, os
) == rv
)
1709 rv
= is_valid_soft_transition(os
, ns
, connection
);
1711 rv
= is_valid_soft_transition(os
, ns
, connection
);
1714 if (rv
< SS_SUCCESS
) {
1715 if (flags
& CS_VERBOSE
)
1716 print_st_err(device
, os
, ns
, rv
);
1726 conn_set_state(struct drbd_connection
*connection
, union drbd_state mask
, union drbd_state val
,
1727 union drbd_state
*pns_min
, union drbd_state
*pns_max
, enum chg_state_flags flags
)
1729 union drbd_state ns
, os
, ns_max
= { };
1730 union drbd_state ns_min
= {
1737 struct drbd_peer_device
*peer_device
;
1738 enum drbd_state_rv rv
;
1739 int vnr
, number_of_volumes
= 0;
1741 if (mask
.conn
== C_MASK
) {
1742 /* remember last connect time so request_timer_fn() won't
1743 * kill newly established sessions while we are still trying to thaw
1744 * previously frozen IO */
1745 if (connection
->cstate
!= C_WF_REPORT_PARAMS
&& val
.conn
== C_WF_REPORT_PARAMS
)
1746 connection
->last_reconnect_jif
= jiffies
;
1748 connection
->cstate
= val
.conn
;
1752 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
1753 struct drbd_device
*device
= peer_device
->device
;
1754 number_of_volumes
++;
1755 os
= drbd_read_state(device
);
1756 ns
= apply_mask_val(os
, mask
, val
);
1757 ns
= sanitize_state(device
, os
, ns
, NULL
);
1759 if (flags
& CS_IGN_OUTD_FAIL
&& ns
.disk
== D_OUTDATED
&& os
.disk
< D_OUTDATED
)
1762 rv
= __drbd_set_state(device
, ns
, flags
, NULL
);
1763 if (rv
< SS_SUCCESS
)
1766 ns
.i
= device
->state
.i
;
1767 ns_max
.role
= max_role(ns
.role
, ns_max
.role
);
1768 ns_max
.peer
= max_role(ns
.peer
, ns_max
.peer
);
1769 ns_max
.conn
= max_t(enum drbd_conns
, ns
.conn
, ns_max
.conn
);
1770 ns_max
.disk
= max_t(enum drbd_disk_state
, ns
.disk
, ns_max
.disk
);
1771 ns_max
.pdsk
= max_t(enum drbd_disk_state
, ns
.pdsk
, ns_max
.pdsk
);
1773 ns_min
.role
= min_role(ns
.role
, ns_min
.role
);
1774 ns_min
.peer
= min_role(ns
.peer
, ns_min
.peer
);
1775 ns_min
.conn
= min_t(enum drbd_conns
, ns
.conn
, ns_min
.conn
);
1776 ns_min
.disk
= min_t(enum drbd_disk_state
, ns
.disk
, ns_min
.disk
);
1777 ns_min
.pdsk
= min_t(enum drbd_disk_state
, ns
.pdsk
, ns_min
.pdsk
);
1781 if (number_of_volumes
== 0) {
1782 ns_min
= ns_max
= (union drbd_state
) { {
1783 .role
= R_SECONDARY
,
1791 ns_min
.susp
= ns_max
.susp
= connection
->resource
->susp
;
1792 ns_min
.susp_nod
= ns_max
.susp_nod
= connection
->resource
->susp_nod
;
1793 ns_min
.susp_fen
= ns_max
.susp_fen
= connection
->resource
->susp_fen
;
1799 static enum drbd_state_rv
1800 _conn_rq_cond(struct drbd_connection
*connection
, union drbd_state mask
, union drbd_state val
)
1802 enum drbd_state_rv err
, rv
= SS_UNKNOWN_ERROR
; /* continue waiting */;
1804 if (test_and_clear_bit(CONN_WD_ST_CHG_OKAY
, &connection
->flags
))
1807 if (test_and_clear_bit(CONN_WD_ST_CHG_FAIL
, &connection
->flags
))
1808 rv
= SS_CW_FAILED_BY_PEER
;
1810 err
= conn_is_valid_transition(connection
, mask
, val
, 0);
1811 if (err
== SS_SUCCESS
&& connection
->cstate
== C_WF_REPORT_PARAMS
)
1818 _conn_request_state(struct drbd_connection
*connection
, union drbd_state mask
, union drbd_state val
,
1819 enum chg_state_flags flags
)
1821 enum drbd_state_rv rv
= SS_SUCCESS
;
1822 struct after_conn_state_chg_work
*acscw
;
1823 enum drbd_conns oc
= connection
->cstate
;
1824 union drbd_state ns_max
, ns_min
, os
;
1825 bool have_mutex
= false;
1828 rv
= is_valid_conn_transition(oc
, val
.conn
);
1829 if (rv
< SS_SUCCESS
)
1833 rv
= conn_is_valid_transition(connection
, mask
, val
, flags
);
1834 if (rv
< SS_SUCCESS
)
1837 if (oc
== C_WF_REPORT_PARAMS
&& val
.conn
== C_DISCONNECTING
&&
1838 !(flags
& (CS_LOCAL_ONLY
| CS_HARD
))) {
1840 /* This will be a cluster-wide state change.
1841 * Need to give up the spinlock, grab the mutex,
1842 * then send the state change request, ... */
1843 spin_unlock_irq(&connection
->resource
->req_lock
);
1844 mutex_lock(&connection
->cstate_mutex
);
1847 set_bit(CONN_WD_ST_CHG_REQ
, &connection
->flags
);
1848 if (conn_send_state_req(connection
, mask
, val
)) {
1849 /* sending failed. */
1850 clear_bit(CONN_WD_ST_CHG_REQ
, &connection
->flags
);
1851 rv
= SS_CW_FAILED_BY_PEER
;
1852 /* need to re-aquire the spin lock, though */
1853 goto abort_unlocked
;
1856 if (val
.conn
== C_DISCONNECTING
)
1857 set_bit(DISCONNECT_SENT
, &connection
->flags
);
1859 /* ... and re-aquire the spinlock.
1860 * If _conn_rq_cond() returned >= SS_SUCCESS, we must call
1861 * conn_set_state() within the same spinlock. */
1862 spin_lock_irq(&connection
->resource
->req_lock
);
1863 wait_event_lock_irq(connection
->ping_wait
,
1864 (rv
= _conn_rq_cond(connection
, mask
, val
)),
1865 connection
->resource
->req_lock
);
1866 clear_bit(CONN_WD_ST_CHG_REQ
, &connection
->flags
);
1867 if (rv
< SS_SUCCESS
)
1871 conn_old_common_state(connection
, &os
, &flags
);
1872 flags
|= CS_DC_SUSP
;
1873 conn_set_state(connection
, mask
, val
, &ns_min
, &ns_max
, flags
);
1874 conn_pr_state_change(connection
, os
, ns_max
, flags
);
1876 acscw
= kmalloc(sizeof(*acscw
), GFP_ATOMIC
);
1878 acscw
->oc
= os
.conn
;
1879 acscw
->ns_min
= ns_min
;
1880 acscw
->ns_max
= ns_max
;
1881 acscw
->flags
= flags
;
1882 acscw
->w
.cb
= w_after_conn_state_ch
;
1883 kref_get(&connection
->kref
);
1884 acscw
->connection
= connection
;
1885 drbd_queue_work(&connection
->sender_work
, &acscw
->w
);
1887 drbd_err(connection
, "Could not kmalloc an acscw\n");
1892 /* mutex_unlock() "... must not be used in interrupt context.",
1893 * so give up the spinlock, then re-aquire it */
1894 spin_unlock_irq(&connection
->resource
->req_lock
);
1896 mutex_unlock(&connection
->cstate_mutex
);
1897 spin_lock_irq(&connection
->resource
->req_lock
);
1899 if (rv
< SS_SUCCESS
&& flags
& CS_VERBOSE
) {
1900 drbd_err(connection
, "State change failed: %s\n", drbd_set_st_err_str(rv
));
1901 drbd_err(connection
, " mask = 0x%x val = 0x%x\n", mask
.i
, val
.i
);
1902 drbd_err(connection
, " old_conn:%s wanted_conn:%s\n", drbd_conn_str(oc
), drbd_conn_str(val
.conn
));
1908 conn_request_state(struct drbd_connection
*connection
, union drbd_state mask
, union drbd_state val
,
1909 enum chg_state_flags flags
)
1911 enum drbd_state_rv rv
;
1913 spin_lock_irq(&connection
->resource
->req_lock
);
1914 rv
= _conn_request_state(connection
, mask
, val
, flags
);
1915 spin_unlock_irq(&connection
->resource
->req_lock
);