We only track primary mac address in qemu and send rarp packets after migration to notify the switch to update its mac address table. This may not works when guest have complicated network configurations such as tagged vlan or ipv6, those connection may lost or stall after migration. One method to handle them is snooping the network traffic in qemu and recording use of mac, but this method would hurt performance and is impossible for network backend such as vhost. So in order to solve this issue, the best method is to let guest instead of qemu to send gratuitous packet. This series first add a model specific fucntion which can let nic model to implement its own announce function and then implement a virtio-net specific function to let guest send the gratitous packet. Only basic test were done. Comments are welcomed. Thanks --- Jason Wang (4): announce self after vm start net: export announce_self_create() net: model specific announcing support virtio-net: notify guest to annouce itself hw/virtio-net.c | 20 +++++++++++++++++++- hw/virtio-net.h | 2 ++ migration.c | 1 - net.c | 31 +++++++++++++++++++++++++++++++ net.h | 3 +++ savevm.c | 40 +++++----------------------------------- vl.c | 1 + 7 files changed, 61 insertions(+), 37 deletions(-) -- Jason Wang -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html