]> git.proxmox.com Git - qemu.git/commit
net: delay freeing peer host device
authorMichael S. Tsirkin <mst@redhat.com>
Mon, 20 Sep 2010 16:08:41 +0000 (18:08 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Wed, 6 Oct 2010 16:24:37 +0000 (18:24 +0200)
commita083a89d7277f3268a251ce635d9aae5559242bd
treee8c8b6dc1498a4e1922064b69473c5e2354175fe
parent358664cc6d1b5f7c36004be0179b36011b81c49d
net: delay freeing peer host device

With -netdev, virtio devices present offload
features to guest, depending on the backend used.
Thus, removing host netdev peer while guest is
active leads to guest-visible inconsistency and/or crashes.

As a solution, while guest (NIC) peer device exists,
we prevent the host peer from being deleted.
This patch does this by adding peer_deleted flag in nic state:
if host device is going away while guest device
is around, set this flag and keep a shell of
the host device around for as long as guest device exists.

The link is put down so all packets will get discarded.

At the moment, management can detect that device deletion
is delayed by doing info net. As a next step, we shall add
commands that control hotplug/unplug without
removing the device, and an event to report that
guest has responded to the hotplug event.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Alex Williamson <alex.williamson@redhat.com>
net.c
net.h