forked from Minki/linux
drbd: New minors have to intherit the connection state form their connection
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
parent
082a3439a2
commit
2325eb661f
@ -1595,6 +1595,7 @@ extern void _drbd_wait_ee_list_empty(struct drbd_conf *mdev,
|
||||
extern void drbd_set_recv_tcq(struct drbd_conf *mdev, int tcq_enabled);
|
||||
extern void _drbd_clear_done_ee(struct drbd_conf *mdev, struct list_head *to_be_freed);
|
||||
extern void conn_flush_workqueue(struct drbd_tconn *tconn);
|
||||
extern int drbd_connected(int vnr, void *p, void *data);
|
||||
static inline void drbd_flush_workqueue(struct drbd_conf *mdev)
|
||||
{
|
||||
conn_flush_workqueue(mdev->tconn);
|
||||
|
@ -2410,6 +2410,11 @@ enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor,
|
||||
}
|
||||
add_disk(disk);
|
||||
|
||||
/* inherit the connection state */
|
||||
mdev->state.conn = tconn->cstate;
|
||||
if (mdev->state.conn == C_WF_REPORT_PARAMS)
|
||||
drbd_connected(vnr, mdev, tconn);
|
||||
|
||||
return NO_ERROR;
|
||||
|
||||
out_idr_remove_vol:
|
||||
|
@ -744,8 +744,9 @@ static int drbd_socket_okay(struct socket **sock)
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
static int drbd_connected(int vnr, void *p, void *data)
|
||||
/* Gets called if a connection is established, or if a new minor gets created
|
||||
in a connection */
|
||||
int drbd_connected(int vnr, void *p, void *data)
|
||||
{
|
||||
struct drbd_conf *mdev = (struct drbd_conf *)p;
|
||||
int ok = 1;
|
||||
|
@ -432,8 +432,8 @@ is_valid_soft_transition(union drbd_state os, union drbd_state ns)
|
||||
if (ns.conn == C_DISCONNECTING && os.conn == C_UNCONNECTED)
|
||||
rv = SS_IN_TRANSIENT_STATE;
|
||||
|
||||
if (ns.conn == os.conn && ns.conn == C_WF_REPORT_PARAMS)
|
||||
rv = SS_IN_TRANSIENT_STATE;
|
||||
/* if (ns.conn == os.conn && ns.conn == C_WF_REPORT_PARAMS)
|
||||
rv = SS_IN_TRANSIENT_STATE; */
|
||||
|
||||
if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) && os.conn < C_CONNECTED)
|
||||
rv = SS_NEED_CONNECTION;
|
||||
|
Loading…
Reference in New Issue
Block a user