]> Git Repo - qemu.git/commitdiff
net: synchronize net_host_device_remove with host_net_remove_completion
authorPaolo Bonzini <[email protected]>
Tue, 23 Dec 2014 16:53:20 +0000 (17:53 +0100)
committerStefan Hajnoczi <[email protected]>
Thu, 12 Mar 2015 19:59:39 +0000 (19:59 +0000)
Using net_host_check_device is unnecessary.  qemu_del_net_client asserts
for the non-peer case that it can only process NIC type NetClientStates,
and that assertion is valid for the peered case as well, so move it and
use the same check in net_host_device_remove.  host_net_remove_completion
is already checking the type.

Signed-off-by: Paolo Bonzini <[email protected]>
Reviewed-by: Jason Wang <[email protected]>
Message-id: 1419353600[email protected]
Signed-off-by: Stefan Hajnoczi <[email protected]>
net/net.c

index 11fb769dff7084177e3db57e8a5fc4d995611a1a..0be084dfb4662cfb143751a46d9907daa761890d 100644 (file)
--- a/net/net.c
+++ b/net/net.c
@@ -324,6 +324,8 @@ void qemu_del_net_client(NetClientState *nc)
     NetClientState *ncs[MAX_QUEUE_NUM];
     int queues, i;
 
+    assert(nc->info->type != NET_CLIENT_OPTIONS_KIND_NIC);
+
     /* If the NetClientState belongs to a multiqueue backend, we will change all
      * other NetClientStates also.
      */
@@ -355,8 +357,6 @@ void qemu_del_net_client(NetClientState *nc)
         return;
     }
 
-    assert(nc->info->type != NET_CLIENT_OPTIONS_KIND_NIC);
-
     for (i = 0; i < queues; i++) {
         qemu_cleanup_net_client(ncs[i]);
         qemu_free_net_client(ncs[i]);
@@ -991,7 +991,7 @@ void hmp_host_net_remove(Monitor *mon, const QDict *qdict)
                      device, vlan_id);
         return;
     }
-    if (!net_host_check_device(nc->model)) {
+    if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
         error_report("invalid host network device '%s'", device);
         return;
     }
This page took 0.032141 seconds and 4 git commands to generate.