All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v3 0/5] Support for datapath switching during live migration
@ 2019-01-07 22:29 ` Venu Busireddy
  0 siblings, 0 replies; 57+ messages in thread
From: Venu Busireddy @ 2019-01-07 22:29 UTC (permalink / raw)
  To: venu.busireddy, Michael S. Tsirkin, Marcel Apfelbaum
  Cc: virtio-dev, qemu-devel

Implement the infrastructure to support datapath switching during live
migration involving SR-IOV devices.

1. This patch is based off on the current VIRTIO_NET_F_STANDBY feature
   bit and MAC address device pairing.

2. This set of events will be consumed by userspace management software
   to orchestrate all the hot plug and datapath switching activities.
   This scheme has the least QEMU modifications while allowing userspace
   software to build its own intelligence to control the whole process
   of SR-IOV live migration.

3. While the hidden device model (viz. coupled device model) is still
   being explored for automatic hot plugging (QEMU) and automatic datapath
   switching (host-kernel), this series provides a supplemental set
   of interfaces if management software wants to drive the SR-IOV live
   migration on its own. It should not conflict with the hidden device
   model but just offers simplicity of implementation.


Si-Wei Liu (2):
  vfio-pci: Add FAILOVER_PRIMARY_CHANGED event to shorten downtime during failover
  pci: query command extension to check the bus master enabling status of the failover-primary device

Sridhar Samudrala (1):
  virtio_net: Add VIRTIO_NET_F_STANDBY feature bit.

Venu Busireddy (2):
  virtio_net: Add support for "Data Path Switching" during Live Migration.
  virtio_net: Add a query command for FAILOVER_STANDBY_CHANGED event.

---
Changes in v3:
  Fix issues with coding style in patch 3/5.

Changes in v2:
  Added a query command for FAILOVER_STANDBY_CHANGED event.
  Added a query command for FAILOVER_PRIMARY_CHANGED event.

 hmp.c                          |   5 +++
 hw/acpi/pcihp.c                |  27 +++++++++++
 hw/net/virtio-net.c            |  42 +++++++++++++++++
 hw/pci/pci.c                   |   5 +++
 hw/vfio/pci.c                  |  60 +++++++++++++++++++++++++
 hw/vfio/pci.h                  |   1 +
 include/hw/pci/pci.h           |   1 +
 include/hw/virtio/virtio-net.h |   1 +
 include/net/net.h              |   2 +
 net/net.c                      |  61 +++++++++++++++++++++++++
 qapi/misc.json                 |   5 ++-
 qapi/net.json                  | 100 +++++++++++++++++++++++++++++++++++++++++
 12 files changed, 309 insertions(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 57+ messages in thread

end of thread, other threads:[~2019-01-14 11:11 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-07 22:29 [Qemu-devel] [PATCH v3 0/5] Support for datapath switching during live migration Venu Busireddy
2019-01-07 22:29 ` [virtio-dev] " Venu Busireddy
2019-01-07 22:29 ` [Qemu-devel] [PATCH v3 1/5] virtio_net: Add VIRTIO_NET_F_STANDBY feature bit Venu Busireddy
2019-01-07 22:29   ` [virtio-dev] " Venu Busireddy
2019-01-08 16:56   ` [Qemu-devel] " Dongli Zhang
2019-01-08 17:25     ` Venu Busireddy
2019-01-08 17:25       ` [virtio-dev] " Venu Busireddy
2019-01-09  0:14       ` Dongli Zhang
2019-01-09  0:18         ` Samudrala, Sridhar
2019-01-09  0:18           ` [virtio-dev] " Samudrala, Sridhar
2019-01-09  0:39           ` Dongli Zhang
2019-01-09  4:17             ` Michael S. Tsirkin
2019-01-09  4:17               ` [virtio-dev] " Michael S. Tsirkin
2019-01-07 22:29 ` [Qemu-devel] [PATCH v3 2/5] virtio_net: Add support for "Data Path Switching" during Live Migration Venu Busireddy
2019-01-07 22:29   ` [virtio-dev] " Venu Busireddy
2019-01-09 13:39   ` [Qemu-devel] " Cornelia Huck
2019-01-09 13:39     ` Cornelia Huck
2019-01-09 15:56   ` [Qemu-devel] " Michael S. Tsirkin
2019-01-09 15:56     ` [virtio-dev] " Michael S. Tsirkin
2019-01-11  2:09     ` [Qemu-devel] " si-wei liu
2019-01-11  2:09       ` [virtio-dev] " si-wei liu
2019-01-11  3:20       ` Michael S. Tsirkin
2019-01-11  3:20         ` [virtio-dev] " Michael S. Tsirkin
2019-01-11  7:09         ` [Qemu-devel] [virtio-dev] " si-wei liu
2019-01-11  7:09           ` [virtio-dev] Re: [Qemu-devel] " si-wei liu
2019-01-14 11:10           ` [Qemu-devel] [virtio-dev] " Roman Kagan
2019-01-07 22:29 ` [Qemu-devel] [PATCH v3 3/5] virtio_net: Add a query command for FAILOVER_STANDBY_CHANGED event Venu Busireddy
2019-01-07 22:29   ` [virtio-dev] " Venu Busireddy
2019-01-08  0:10   ` [Qemu-devel] " Michael S. Tsirkin
2019-01-08  0:10     ` [virtio-dev] " Michael S. Tsirkin
2019-01-07 22:29 ` [Qemu-devel] [PATCH v3 4/5] vfio-pci: Add FAILOVER_PRIMARY_CHANGED event to shorten downtime during failover Venu Busireddy
2019-01-07 22:29   ` [virtio-dev] " Venu Busireddy
2019-01-07 23:17   ` [Qemu-devel] " Alex Williamson
2019-01-07 23:22     ` Michael S. Tsirkin
2019-01-07 23:22       ` [virtio-dev] " Michael S. Tsirkin
2019-01-07 23:41       ` Alex Williamson
2019-01-08  0:12         ` Michael S. Tsirkin
2019-01-08  0:12           ` [virtio-dev] " Michael S. Tsirkin
2019-01-08  0:24           ` Alex Williamson
2019-01-08  0:43             ` Michael S. Tsirkin
2019-01-08  0:43               ` [virtio-dev] " Michael S. Tsirkin
2019-01-08  1:13         ` si-wei liu
2019-01-08  1:13           ` [virtio-dev] " si-wei liu
2019-01-07 22:29 ` [Qemu-devel] [PATCH v3 5/5] pci: query command extension to check the bus master enabling status of the failover-primary device Venu Busireddy
2019-01-07 22:29   ` [virtio-dev] " Venu Busireddy
2019-01-07 23:32 ` [Qemu-devel] [PATCH v3 0/5] Support for datapath switching during live migration Michael S. Tsirkin
2019-01-07 23:32   ` [virtio-dev] " Michael S. Tsirkin
2019-01-08  1:45   ` [Qemu-devel] " si-wei liu
2019-01-08  1:45     ` si-wei liu
2019-01-08  2:25     ` [Qemu-devel] " Michael S. Tsirkin
2019-01-08  2:25       ` Michael S. Tsirkin
2019-01-09  4:55       ` [Qemu-devel] " si-wei liu
2019-01-09  4:55         ` si-wei liu
2019-01-09 13:39         ` [Qemu-devel] " Michael S. Tsirkin
2019-01-09 13:39           ` Michael S. Tsirkin
2019-01-11  6:57           ` [Qemu-devel] " si-wei liu
2019-01-11  6:57             ` si-wei liu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.