diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-10-06 12:17:14 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-06 14:36:13 -0500 |
commit | 13cf8f2129677189c03009bc05995d461a93da6a (patch) | |
tree | 872d45cbdca3501eb4fe1b9383916efbf05ab600 /vl.c | |
parent | 7f1c9d20eab92090650f0356d45fcdf5c190a22a (diff) |
Port usb net to QemuOpts
We need net_client_init_from_opts() exported for this
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -2595,12 +2595,23 @@ static int usb_device_add(const char *devname, int is_hotplug) dev = usb_baum_init(); #endif } else if (strstart(devname, "net:", &p)) { - int nic = nb_nics; + QemuOpts *opts; + int idx; - if (net_client_init(NULL, "nic", p) < 0) + opts = qemu_opts_parse(&qemu_net_opts, p, NULL); + if (!opts) { return -1; - nd_table[nic].model = qemu_strdup("usb"); - dev = usb_net_init(&nd_table[nic]); + } + + qemu_opt_set(opts, "type", "nic"); + qemu_opt_set(opts, "model", "usb"); + + idx = net_client_init_from_opts(NULL, opts); + if (idx == -1) { + return -1; + } + + dev = usb_net_init(&nd_table[idx]); } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) { dev = usb_bt_init(devname[2] ? hci_init(p) : bt_new_hci(qemu_find_bt_vlan(0))); |