]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
qemu: remove redundant code that adds "template" netdev name
authorLaine Stump <laine@redhat.com>
Tue, 15 Dec 2020 19:35:35 +0000 (14:35 -0500)
committerLaine Stump <laine@redhat.com>
Thu, 17 Dec 2020 02:31:57 +0000 (21:31 -0500)
The lower level function virNetDevGenerateName() now understands that
a blank ifname should be replaced with a generated name based on a
template that it knows about itself - there is no need for the higher
level functions to stuff a template name ("vnet%d") into ifname.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
src/qemu/qemu_interface.c

index 197c0aa239e3e382eedb9f495346f20174aee8ba..be2f53945c2aaa3f7a06413830ad0a6e86a07161 100644 (file)
@@ -455,14 +455,10 @@ qemuInterfaceEthernetConnect(virDomainDefPtr def,
                 goto cleanup;
         }
     } else {
-        if (!net->ifname ||
-            STRPREFIX(net->ifname, VIR_NET_GENERATED_VNET_PREFIX) ||
-            strchr(net->ifname, '%')) {
-            VIR_FREE(net->ifname);
-            net->ifname = g_strdup(VIR_NET_GENERATED_VNET_PREFIX "%d");
-            /* avoid exposing vnet%d in getXMLDesc or error outputs */
+
+        if (!net->ifname)
             template_ifname = true;
-        }
+
         if (virNetDevTapCreate(&net->ifname, tunpath, tapfd, tapfdSize,
                                tap_create_flags) < 0) {
             goto cleanup;
@@ -559,14 +555,8 @@ qemuInterfaceBridgeConnect(virDomainDefPtr def,
         goto cleanup;
     }
 
-    if (!net->ifname ||
-        STRPREFIX(net->ifname, VIR_NET_GENERATED_VNET_PREFIX) ||
-        strchr(net->ifname, '%')) {
-        VIR_FREE(net->ifname);
-        net->ifname = g_strdup(VIR_NET_GENERATED_VNET_PREFIX "%d");
-        /* avoid exposing vnet%d in getXMLDesc or error outputs */
+    if (!net->ifname)
         template_ifname = true;
-    }
 
     if (qemuInterfaceIsVnetCompatModel(net))
         tap_create_flags |= VIR_NETDEV_TAP_CREATE_VNET_HDR;