mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 22:25:25 +00:00
virDomainActualNetDefContentsFormat: Format class_id more frequently
After a360912179
the formatting of virDomainActualNetDefPtr was
changed a bit. However, during the function rewrite, iface's class_id
is not formatted as frequently as it could be. In fact, after rewrite
it's formatted only for iface of type VIR_DOMAIN_NET_TYPE_DIRECT where
it makes no sense and is unused. While where needed (_TYPE_NETWORK) is
not formatted at all. This makes the daemon forget it upon daemon
restart resulting in bad behaviour.
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
77d92e2e77
commit
b68a56bcfe
@ -18608,8 +18608,7 @@ virDomainActualNetDefContentsFormat(virBufferPtr buf,
|
||||
|
||||
virBufferAddLit(buf, "/>\n");
|
||||
}
|
||||
if (actualType == VIR_DOMAIN_NET_TYPE_DIRECT &&
|
||||
def->data.network.actual && def->data.network.actual->class_id) {
|
||||
if (def->data.network.actual && def->data.network.actual->class_id) {
|
||||
virBufferAsprintf(buf, "<class id='%u'/>\n",
|
||||
def->data.network.actual->class_id);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user