提交 14f26b00 编写于 作者: J Juan Quintela 提交者: Anthony Liguori

Fix incoming migration

commit b04c4134
broke incoming migration.  After talking with Gleb, code was intended
to be the way is in this fix.  This fixes migration here.
Signed-off-by: NJuan Quintela <quintela@redhat.com>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 ef2fad65
......@@ -126,6 +126,8 @@ static int announce_self_create(uint8_t *buf,
static void qemu_announce_self_once(void *opaque)
{
int i, len;
VLANState *vlan;
VLANClientState *vc;
uint8_t buf[60];
static int count = SELF_ANNOUNCE_ROUNDS;
QEMUTimer *timer = *(QEMUTimer **)opaque;
......@@ -134,7 +136,10 @@ static void qemu_announce_self_once(void *opaque)
if (!nd_table[i].used)
continue;
len = announce_self_create(buf, nd_table[i].macaddr);
qemu_send_packet_raw(nd_table[i].vc, buf, len);
vlan = nd_table[i].vlan;
QTAILQ_FOREACH(vc, &vlan->clients, next) {
qemu_send_packet_raw(vc, buf, len);
}
}
if (--count) {
/* delay 50ms, 150ms, 250ms, ... */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册