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 connections may be lost or stalled 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 the best method to address it 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 method and then implement a virtio-net specific function to let guest send the gratitous packet. Changes from v2: - Conditionally send the notification interrupt to guest (only for migration, cont, loadvm). - Remove the unused patch of function export. - Typos and other comments from Stefan Hajnoczi. - Disable guest announce for compat machine types. --- Jason Wang (4): announce self after vm start net: model specific announcing support virtio-net: notify guest to annouce itself virtio-net: compat guest announce support. gdbstub.c | 2 +- hw/pc_piix.c | 16 ++++++++++++++++ hw/virtio-net.c | 18 +++++++++++++++++- hw/virtio-net.h | 3 +++ migration.c | 4 ++-- monitor.c | 4 ++-- net.h | 2 ++ savevm.c | 10 ++++++---- sysemu.h | 2 +- vl.c | 7 +++++-- 10 files changed, 55 insertions(+), 13 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