From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MllY6-0006Kd-Uz for qemu-devel@nongnu.org; Thu, 10 Sep 2009 11:27:03 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MllXu-0006Dv-3c for qemu-devel@nongnu.org; Thu, 10 Sep 2009 11:26:55 -0400 Received: from [199.232.76.173] (port=40186 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MllXt-0006D2-Ba for qemu-devel@nongnu.org; Thu, 10 Sep 2009 11:26:49 -0400 Received: from mail10.svc.cra.dublin.eircom.net ([159.134.118.26]:33006) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MllXq-00007i-Lk for qemu-devel@nongnu.org; Thu, 10 Sep 2009 11:26:46 -0400 From: Mark McLoughlin Date: Thu, 10 Sep 2009 16:18:57 +0100 Message-Id: <1252595941-15196-16-git-send-email-markmc@redhat.com> In-Reply-To: <1252595941-15196-1-git-send-email-markmc@redhat.com> References: <1252595941-15196-1-git-send-email-markmc@redhat.com> Subject: [Qemu-devel] [PATCH 15/19] 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 54483b4..14271ff 100644 --- a/net.c +++ b/net.c @@ -3005,38 +3005,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")) { @@ -3051,20 +3020,17 @@ int net_client_init(Monitor *mon, const char *device, const char *p) } else { slirp_guestfwd(TAILQ_FIRST(&slirp_stacks), mon, p, 1); } - ret = 0; - } else -#endif - { - config_error(mon, "Unknown network device: %s\n", device); - ret = -1; - goto out; - } - if (ret < 0) { - config_error(mon, "Could not initialize device '%s'\n", device); + return 0; } -out: - qemu_free(name); - return ret; +#endif + + 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); } void net_client_uninit(NICInfo *nd) -- 1.6.2.5