drbd: Fixed state transitions in case reading meta data failes
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
Родитель
2ffca4f3ee
Коммит
9510b2411d
|
@ -1645,7 +1645,7 @@ int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info)
|
|||
force_diskless_dec:
|
||||
put_ldev(mdev);
|
||||
force_diskless:
|
||||
drbd_force_state(mdev, NS(disk, D_FAILED));
|
||||
drbd_force_state(mdev, NS(disk, D_DISKLESS));
|
||||
drbd_md_sync(mdev);
|
||||
fail:
|
||||
conn_reconfig_done(mdev->tconn);
|
||||
|
|
|
@ -655,13 +655,6 @@ is_valid_transition(union drbd_state os, union drbd_state ns)
|
|||
if (ns.disk == D_FAILED && os.disk == D_DISKLESS)
|
||||
rv = SS_IS_DISKLESS;
|
||||
|
||||
/* if we are only D_ATTACHING yet,
|
||||
* we can (and should) go directly to D_DISKLESS. */
|
||||
if (ns.disk == D_FAILED && os.disk == D_ATTACHING) {
|
||||
printk("TODO: FIX ME\n");
|
||||
rv = SS_IS_DISKLESS;
|
||||
}
|
||||
|
||||
return rv;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче