drbd: report net config even for resources without a single volume
Currently it is legal (though unusual) to create and connect a resource, before adding in all necessary volumes. We should include the network configuration details, even if we don't have a single volume (yet). Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
Родитель
e0e1665381
Коммит
367d675da8
|
@ -2731,14 +2731,18 @@ next_tconn:
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (!mdev) {
|
if (!mdev) {
|
||||||
/* this is a tconn without a single volume */
|
/* This is a tconn without a single volume.
|
||||||
|
* Suprisingly enough, it may have a network
|
||||||
|
* configuration. */
|
||||||
|
struct net_conf *nc;
|
||||||
dh->minor = -1U;
|
dh->minor = -1U;
|
||||||
dh->ret_code = NO_ERROR;
|
dh->ret_code = NO_ERROR;
|
||||||
if (nla_put_drbd_cfg_context(skb, tconn, VOLUME_UNSPECIFIED))
|
if (nla_put_drbd_cfg_context(skb, tconn, VOLUME_UNSPECIFIED))
|
||||||
genlmsg_cancel(skb, dh);
|
goto cancel;
|
||||||
else
|
nc = rcu_dereference(tconn->net_conf);
|
||||||
genlmsg_end(skb, dh);
|
if (nc && net_conf_to_skb(skb, nc, 1) != 0)
|
||||||
goto out;
|
goto cancel;
|
||||||
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
D_ASSERT(mdev->vnr == volume);
|
D_ASSERT(mdev->vnr == volume);
|
||||||
|
@ -2748,9 +2752,11 @@ next_tconn:
|
||||||
dh->ret_code = NO_ERROR;
|
dh->ret_code = NO_ERROR;
|
||||||
|
|
||||||
if (nla_put_status_info(skb, mdev, NULL)) {
|
if (nla_put_status_info(skb, mdev, NULL)) {
|
||||||
|
cancel:
|
||||||
genlmsg_cancel(skb, dh);
|
genlmsg_cancel(skb, dh);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
done:
|
||||||
genlmsg_end(skb, dh);
|
genlmsg_end(skb, dh);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче