From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MqP2r-0003nO-Nk for qemu-devel@nongnu.org; Wed, 23 Sep 2009 06:25:57 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MqP2i-0003hh-Vu for qemu-devel@nongnu.org; Wed, 23 Sep 2009 06:25:53 -0400 Received: from [199.232.76.173] (port=37817 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MqP2i-0003hJ-AU for qemu-devel@nongnu.org; Wed, 23 Sep 2009 06:25:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42174) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MqP2h-0001Vz-5R for qemu-devel@nongnu.org; Wed, 23 Sep 2009 06:25:47 -0400 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8NAPkFj020474 for ; Wed, 23 Sep 2009 06:25:46 -0400 From: Mark McLoughlin Date: Wed, 23 Sep 2009 11:24:19 +0100 Message-Id: <1253701463-3134-21-git-send-email-markmc@redhat.com> In-Reply-To: <1253701463-3134-1-git-send-email-markmc@redhat.com> References: <1253701463-3134-1-git-send-email-markmc@redhat.com> Subject: [Qemu-devel] [PATCH 20/24] Clean up legacy code in net_client_init() List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Mark McLoughlin Now that we've ported everything over to QemuOpts, we can kill off all the cruft in net_client_init(). Note, the 'channel' type requires special handling as it uses a format that QemuOpts can't parse Signed-off-by: Mark McLoughlin --- net.c | 56 +++++++++++--------------------------------------------- 1 files changed, 11 insertions(+), 45 deletions(-) diff --git a/net.c b/net.c index 1ba9a3d..8da5eba 100644 --- a/net.c +++ b/net.c @@ -3026,39 +3026,7 @@ static int net_client_init_from_opts(Monitor *mon, QemuOpts *opts) int net_client_init(Monitor *mon, const char *device, const char *p) { - char buf[1024]; - int vlan_id, ret; - VLANState *vlan; - char *name = NULL; - - if (!strcmp(device, "none") || - !strcmp(device, "nic") || - !strcmp(device, "user") || - !strcmp(device, "tap") || - !strcmp(device, "socket") || - !strcmp(device, "vde") || - !strcmp(device, "dump")) { - QemuOpts *opts; - - opts = qemu_opts_parse(&qemu_net_opts, p, NULL); - if (!opts) { - return -1; - } - - qemu_opt_set(opts, "type", device); - - return net_client_init_from_opts(mon, opts); - } - - vlan_id = 0; - if (get_param_value(buf, sizeof(buf), "vlan", p)) { - vlan_id = strtol(buf, NULL, 0); - } - vlan = qemu_find_vlan(vlan_id, 1); - - if (get_param_value(buf, sizeof(buf), "name", p)) { - name = qemu_strdup(buf); - } + QemuOpts *opts; #ifdef CONFIG_SLIRP if (!strcmp(device, "channel")) { @@ -3073,20 +3041,18 @@ int net_client_init(Monitor *mon, const char *device, const char *p) } else { slirp_guestfwd(QTAILQ_FIRST(&slirp_stacks), mon, p, 1); } - ret = 0; - } else -#endif - { - config_error(mon, "Unknown network device: %s\n", device); - ret = -1; - goto out; + return 0; } - if (ret < 0) { - config_error(mon, "Could not initialize device '%s'\n", device); +#endif + + opts = qemu_opts_parse(&qemu_net_opts, p, NULL); + if (!opts) { + return -1; } -out: - qemu_free(name); - return ret; + + qemu_opt_set(opts, "type", device); + + return net_client_init_from_opts(mon, opts); } void net_client_uninit(NICInfo *nd) -- 1.6.2.5