[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH] net: fix default MAC assignment for hotplugged NICs
From: |
Marcelo Tosatti |
Subject: |
[Qemu-devel] [PATCH] net: fix default MAC assignment for hotplugged NICs |
Date: |
Thu, 28 Jul 2011 12:12:16 -0300 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
The index for assignment of default MAC address is duplicated:
qemu_macaddr_default_if_unset has its own variable and net_init_nic uses
the nic table index.
This leads to assignment of same MAC addresses to NICs initialized via
command line and hotplugged ones.
Fix by not assigning default MAC address in net_init_nic, leaving
that job to qemu_macaddr_default_if_unset.
Signed-off-by: Marcelo Tosatti <address@hidden>
Reported-by: Amos Kong <address@hidden>
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=712046
diff --git a/net.c b/net.c
index 66123ad..f34400c 100644
--- a/net.c
+++ b/net.c
@@ -776,13 +776,6 @@ static int net_init_nic(QemuOpts *opts,
nd->devaddr = qemu_strdup(qemu_opt_get(opts, "addr"));
}
- nd->macaddr[0] = 0x52;
- nd->macaddr[1] = 0x54;
- nd->macaddr[2] = 0x00;
- nd->macaddr[3] = 0x12;
- nd->macaddr[4] = 0x34;
- nd->macaddr[5] = 0x56 + idx;
-
if (qemu_opt_get(opts, "macaddr") &&
net_parse_macaddr(nd->macaddr, qemu_opt_get(opts, "macaddr")) < 0) {
error_report("invalid syntax for ethernet address");
- [Qemu-devel] [PATCH] net: fix default MAC assignment for hotplugged NICs,
Marcelo Tosatti <=