summaryrefslogtreecommitdiffstats
path: root/hw/eepro100.c
diff options
context:
space:
mode:
authoraliguori2009-01-07 18:48:51 +0100
committeraliguori2009-01-07 18:48:51 +0100
commit7a9f6e4a8db958caf10332f160ed04f175932d55 (patch)
tree086d6b882f8abf13ade582900b68fc3e560806f7 /hw/eepro100.c
parentadd missing MAC address to info_str for some NICs (Mark McLoughlin) (diff)
downloadqemu-7a9f6e4a8db958caf10332f160ed04f175932d55.tar.gz
qemu-7a9f6e4a8db958caf10332f160ed04f175932d55.tar.xz
qemu-7a9f6e4a8db958caf10332f160ed04f175932d55.zip
Add a -net name=foo parameter (Mark McLoughlin)
Allow the user to supply a vlan client name on the command line. This is probably only useful for management tools so that they can use their own names rather than parsing the output of 'info network'. Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6220 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/eepro100.c')
-rw-r--r--hw/eepro100.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/eepro100.c b/hw/eepro100.c
index 86a4e6e511..5eca10530f 100644
--- a/hw/eepro100.c
+++ b/hw/eepro100.c
@@ -1776,7 +1776,7 @@ static void nic_init(PCIBus * bus, NICInfo * nd,
nic_reset(s);
- s->vc = qemu_new_vlan_client(nd->vlan, nd->model,
+ s->vc = qemu_new_vlan_client(nd->vlan, nd->model, nd->name,
nic_receive, nic_can_receive, s);
qemu_format_nic_info_str(s->vc, s->macaddr);