qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [RFC v2 PATCH 0/4] Support sending gratuitous by guest


From: Jason Wang
Subject: [Qemu-devel] [RFC v2 PATCH 0/4] Support sending gratuitous by guest
Date: Sat, 22 Oct 2011 13:38:27 +0800
User-agent: StGit/0.15

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]