diff options
author | Amos Kong <akong@redhat.com> | 2013-10-17 16:38:34 +0800 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-10-18 13:28:09 +0200 |
commit | 655d3b63b036b70714adbdae685055f1bda0f8f1 (patch) | |
tree | ecc63ae5853998a6f03b0120b9376e74aa05a7fa /hw/net/e1000.c | |
parent | 1680d485777ecf436d724631ea8722cc0c66990e (diff) |
net: update nic info during device reset
macaddr is reset during device reset, but nic info
isn't updated, this problem exists in e1000 & rtl8139
Signed-off-by: Amos Kong <akong@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw/net/e1000.c')
-rw-r--r-- | hw/net/e1000.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/net/e1000.c b/hw/net/e1000.c index 151d25e0b7..9a1c46e8ca 100644 --- a/hw/net/e1000.c +++ b/hw/net/e1000.c @@ -401,6 +401,7 @@ static void e1000_reset(void *opaque) d->mac_reg[RA] |= macaddr[i] << (8 * i); d->mac_reg[RA + 1] |= (i < 2) ? macaddr[i + 4] << (8 * i) : 0; } + qemu_format_nic_info_str(qemu_get_queue(d->nic), macaddr); } static void |