Skip to content

Commit

Permalink
net: fix qemu_announce_self()
Browse files Browse the repository at this point in the history
Now that we have a way to iterate NICs.

Signed-off-by: Mark McLoughlin <[email protected]>
Signed-off-by: Anthony Liguori <[email protected]>
  • Loading branch information
markmc authored and Anthony Liguori committed Dec 3, 2009
1 parent 57f9ef1 commit f401ca2
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions savevm.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,24 +120,24 @@ static int announce_self_create(uint8_t *buf,
return 60; /* len (FCS will be added by hardware) */
}

static void qemu_announce_self_once(void *opaque)
static void qemu_announce_self_iter(NICState *nic, void *opaque)
{
int i, len;
VLANState *vlan;
VLANClientState *vc;
uint8_t buf[60];
int len;

len = announce_self_create(buf, nic->conf->macaddr.a);

qemu_send_packet_raw(&nic->nc, buf, len);
}


static void qemu_announce_self_once(void *opaque)
{
static int count = SELF_ANNOUNCE_ROUNDS;
QEMUTimer *timer = *(QEMUTimer **)opaque;

for (i = 0; i < MAX_NICS; i++) {
if (!nd_table[i].used)
continue;
len = announce_self_create(buf, nd_table[i].macaddr);
vlan = nd_table[i].vlan;
QTAILQ_FOREACH(vc, &vlan->clients, next) {
qemu_send_packet_raw(vc, buf, len);
}
}
qemu_foreach_nic(qemu_announce_self_iter, NULL);

if (--count) {
/* delay 50ms, 150ms, 250ms, ... */
qemu_mod_timer(timer, qemu_get_clock(rt_clock) +
Expand Down

0 comments on commit f401ca2

Please sign in to comment.