mirror of https://gitee.com/openkylin/linux.git
drbd: fix conn_reconfig_start without conn_reconfig_done in drbd_adm_attach
If drbd_adm_attach failed early, it left the CONFIG_PENDING bit on, blocking any further conn_reconfig_start on that 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
e4f78edee1
commit
40cbf085f5
|
@ -1041,7 +1041,7 @@ int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info)
|
|||
if (!adm_ctx.reply_skb)
|
||||
return retcode;
|
||||
if (retcode != NO_ERROR)
|
||||
goto fail;
|
||||
goto finish;
|
||||
|
||||
mdev = adm_ctx.mdev;
|
||||
conn_reconfig_start(mdev->tconn);
|
||||
|
@ -1400,8 +1400,8 @@ int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info)
|
|||
force_diskless:
|
||||
drbd_force_state(mdev, NS(disk, D_FAILED));
|
||||
drbd_md_sync(mdev);
|
||||
conn_reconfig_done(mdev->tconn);
|
||||
fail:
|
||||
conn_reconfig_done(mdev->tconn);
|
||||
if (nbc) {
|
||||
if (nbc->backing_bdev)
|
||||
blkdev_put(nbc->backing_bdev,
|
||||
|
@ -1413,6 +1413,7 @@ int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info)
|
|||
}
|
||||
lc_destroy(resync_lru);
|
||||
|
||||
finish:
|
||||
drbd_adm_finish(info, retcode);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue